Hello,
In my normal AD machine, I can create Contact using ADUC in any OU.
By using Quest AD module, I can create Contact using following cmdlet or script -
Import-Csv $Path | foreach{New-QADObject -ParentContainer "OU=Contacts,DC=first,DC=domain,DC=com" -type "Contact" -name $_.DisplayName -ObjectAttributes @{displayName=$_.DisplayName;mailNickname=$_.Alias;mail=$_.ExternalEmailAddress;proxyAddresses=$_.ExternalEmailAddress}}
But I need to create CONTACT using Inbuilt Windows PowerShell "Import-Module ActiveDirectory" - and that too without using any Quest AD module.
Please help me with cmdlet or script through which I can create contact directly (manually entering details in PowerShell) or from CSV.
Thanks,
Divyaprakash Koli
- Edited by Divyaprakash Monday, September 23, 2013 2:51 PM Grammar


