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'}
|