Como posso montar o ActiveDirectory no powershell com o formato X500?

0

quando tento montar o Active Directory no powershell, ele gera o erro abaixo: "" "O nome do objeto tem uma sintaxe ruim new-psprovider" "".

Ele só pode ser ignorado se você fornecer o cânone format-option.

Mas quero montá-lo no formato X500.

PS mtn:\> mount ad -PSProvider ActiveDirectory -Root $root -Server $server -Credential $cred 

OR

PS mtn:\> mount ad -PSProvider ActiveDirectory -Root $root -Server $server -Credential $cred -FormatType X500

Erro:

mount : The object name has bad syntax
At line:1 char:1
+ mount ad -PSProvider ActiveDirectory -Root $root -Server $server -Crede ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : NotSpecified: (ad:PSDriveInfo) [New-PSDrive], ADException
+ FullyQualifiedErrorId :     ADProvider:NewDrive:InvalidRoot:ADError,Microsoft.PowerShell.Commands.NewPSDriveCommand
    
por PyGuy 03.09.2014 / 08:04

1 resposta

0

Bem, a sintaxe $root está errada, afinal. Tem que estar no formato DN (DistinguishedName), com o exemplo sendo o domínio da minha empresa, intranet.lan :

DC=intranet,DC=lan
    
por 03.09.2014 / 13:42