- Powershell v3 (http://www.microsoft.com/en-us/download/details.aspx?id=34595)
- Active Directory CmdLets - Used for syncing Active Directory
- Open Powershell
- 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
-
In the examples below, you should replace anything enclosed in <> with approprate value. For example
<matter id>
would be replaced with1
if my matter id was one. -
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>
- Your BIA representive will provide you with a Company ID and Auth Token
- Download users.csv from the samples folder
- 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>
- Download users.csv from the samples folder
- 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>
- You must be on a machine that has the ActiveDirectory CmdLets installed
- 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>
- You must be on a machine that has the ActiveDirectory CmdLets installed
- 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>
Get-Custodians -Company <Company ID>
GetCustodians -Matter <Matter ID>
Copyright © 2013 Business Intelligence Associates, Inc.
All Rights Reserved