Advertisement
Advertisement
| 06.12.2008 at 01:39AM PDT, ID: 23478648 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
New-QADUser -ParentContainer 'ou=NewUsers, ou=Users, dc=Contoso, dc=com' `
-Name $strName `
-Description $strDescription `
-sAMAccountName $sAMAccountName `
-UserPrincipalName $userPName `
-lastName $strLast `
-FirstName $strFirst `
-displayName $strDisplayName `
-userPassword 'userPassword' `
-office $strOffice `
-phone $strPhone `
-objectAttributes @{accountExpires = '123123432000000000'; `
scriptPath = 'logon.bat'; `
pwdLastSet = '0'; `
userAccountControl = '512'}
|