Skip to content

BIAINC/pstddc

Repository files navigation

Pre-Requisites

Required

Optional

Installation

  1. Open Powershell
  2. Install the required version
  • Latest Release Version
  Invoke-Expression (Invoke-WebRequest https://s3.amazonaws.com/pstddc/Install.ps1).Content
- CI Build - Replace <version> with the version you want to deploy
  Invoke-Expression (Invoke-WebRequest https://s3.amazonaws.com/pstddc/ci/<version>/Install.ps1).Content

IMPORTANT

  1. In the examples below, you should replace anything enclosed in <> with approprate value. For example <matter id> would be replaced with 1 if my matter id was one.

  2. Once per session, you need to set your authorization token. If you do not set the authorization token, none of the examples below will work

  Import-Module TotalDiscovery
  Connect-TDDC -AuthToken <Your Auth Token>
  1. Your BIA representive will provide you with a Company ID and Auth Token

Examples

Upload data From a CSV to your company

  1. Download users.csv from the samples folder
  2. Import the CSV and sync the custodian details on the company. If the custodian already exists, it will be updated.
  Import-CSV <downloaded_csv> | Set-Custodian -Company <Company>

Upload data From a CSV to a matter

  1. Download users.csv from the samples folder
  2. Import the CSV and sync the custodian details on the matter. If the custodian already exists, it will be updated.
  Import-CSV <downloaded_csv> | Set-Custodian -Matter <Matter>

Import data from ActiveDirectory to a matter

  1. You must be on a machine that has the ActiveDirectory CmdLets installed
  2. Find all ActiveDirectory users who are enabled and have a e-mail address field and adds them to a matter
  Get-ADUser -LDAPFilter "(&(objectCategory=person)(objectClass=user)(!userAccountControl:1.2.840.113556.1.4.803:=2)(mail=*))" -Properties OfficePhone,EmailAddress,Title,Office,Department,Description,Manager | Set-Custodian -Matter <matter>

Import data from ActiveDirectory to a company

  1. You must be on a machine that has the ActiveDirectory CmdLets installed
  2. Find all ActiveDirectory users who are enabled and have a e-mail address field and adds them to a company
  Get-ADUser -LDAPFilter "(&(objectCategory=person)(objectClass=user)(!userAccountControl:1.2.840.113556.1.4.803:=2)(mail=*))" -Properties OfficePhone,EmailAddress,Title,Office,Department,Description,Manager | Set-Custodian -Company <company>

Listing custodians in a company

  Get-Custodians -Company <Company ID>

Listing custodians in a matter

  GetCustodians -Matter <Matter ID>

Copyright Notice

Copyright © 2013 Business Intelligence Associates, Inc.
All Rights Reserved

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •