Can not use command New-ADuser with new created attribute on AD Windows Server 2012
I can edit the attribute that I created in "AD User and Computer" in the "Attribute Editor"
But, I cannot create the new user with that attribute.
Você criou um novo atributo no AD para o vídeo YouTube , por isso use o New-ADUser com o parâmetro -OtherAttributes especificando o nome do atributo e o valor de atributo que você deseja atribuir a ele, e não o nome do atributo que você criou como parâmetro.
O problema é indicado na mensagem de erro do PowerShell para a parte que diz:
New-ADUser : A parameter cannot be found that matches parameter name employeeSex'.'
Tente este comando em vez do que você tentou quando recebeu o erro:
New-ADUser bachhv2 -givenName Bach2 -OtherAttributes @{'EmployeeSex'=Male}
Veja New-ADUser
-OtherAttributes hashtable
Specifies object attribute values for attributes that are not represented by cmdlet parameters.
Syntax:
To specify a single value:
-OtherAttributes @{'AttributeLDAPDisplayName'=value}
To specify multiple values
-OtherAttributes @{'AttributeLDAPDisplayName'=value1,value2,...}
e.g.:
-OtherAttributes @{'ItemPrice'=123; 'favColors'="red","blue"}