Não é possível usar o comando New-ADuser com o novo atributo criado no AD Windows Server 2012

1

Eu criei um novo atributo seguindo este guia .

Eu posso editar o atributo que criei em "Usuário e Computador do AD" no "Editor de Atributos" (como o clipe)

No entanto, não consigo criar o novo usuário com esse atributo.

O erro abaixo:

PS C:\Users\Administrator> New-ADUser bachhv2 -givenName Bach2
-employeeSex Male New-ADUser : A parameter cannot be found that matches parameter name 'employeeSex'. At line:1 char:37
+ New-ADUser bachhv2 -givenName Bach2 -employeeSex Male
+                                     ~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [New-ADUser], ParameterBindingException
    + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.ActiveDirectory.Management.Commands.NewADUser
    
por Bach Huynh 07.07.2016 / 14:49

1 resposta

2

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"}
    
por 07.07.2016 / 15:48