Por que não consigo navegar pelo Active Directory dentro do Powershell?

4

Eu tenho um AD: drive, que deve permitir-me navegar no diretório ativo de dentro do Powershell. Mas quando tento usá-lo, ele não me deixa navegar além da raiz. Pelo que li, os comandos fornecidos devem funcionar, mas estão falhando.

PS AD:\> ls

Name                 ObjectClass          DistinguishedName
----                 -----------          -----------------
company              domainDNS            DC=company,DC=com
Configuration        configuration        CN=Configuration,DC=company,DC=com
Schema               dMD                  CN=Schema,CN=Configuration,DC=company,DC=com
ForestDnsZones       domainDNS            DC=ForestDnsZones,DC=company,DC=com
DomainDnsZones       domainDNS            DC=DomainDnsZones,DC=company,DC=com

PS AD:\> cd schema
Set-Location : Cannot find path 'AD:\schema' because it does not exist.
At line:1 char:3
+ cd <<<<  schema
    + CategoryInfo          : ObjectNotFound: (AD:\schema:String) [Set-Location], ItemNotFoundException
    + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand

PS AD:\> cd Schema
Set-Location : Cannot find path 'AD:\Schema' because it does not exist.
(duplicate of previous error)

PS AD:\> cd company
Set-Location : Cannot find path 'AD:\company' because it does not exist.
(duplicate of previous error)

PS AD:\> ls Schema
Get-ChildItem : Cannot find path '//RootDSE/Schema' because it does not exist.
(duplicate of previous error)

PS AD:\> cd ForestDnsZones
Set-Location : Cannot find path 'AD:\ForestDnsZones' because it does not exist.
(duplicate of previous error)
    
por Myrddin Emrys 16.04.2012 / 23:22

2 respostas

7

Você precisa usar o nome distinto. Tente cd dc=company,dc=com . Observe que a conclusão da tabulação funciona bem aqui. Então, tente cd dc=comp <tab> . Deve expandir para todo o DN

    
por 16.04.2012 / 23:26
2

Isso porque você precisa usar o DistinguishedName, não o nome.

PS AD:\> cd "DC=Company,DC=Com"
    
por 16.04.2012 / 23:26