Searching in whole forest

By Robert Dyjas 3 years ago • Edit this post

Here's how to search for users in multi-domain environment.

When you want to find a user in Active Directory you usually use:

Get-ADUser -Filter {SamAccountName -eq "User1"}

However, if you are in multi-domain environment and you’re looking for the user from another domain you’ll receive the error:

Get-ADUser : Cannot find an object with identity: 'User1' under: 'DC=europe,DC=domain,DC=com'.

To resolve this issue you have to send your query to Global Catalog directly. If your Domain Controller is also Global Catalog you can do it by specyfying server with port 3268:

Get-ADUser -Filter {SamAccountName -eq "User1"} -Server "DC1:3268"

If you don’t know the name of your DC you can try to use the DC you authenticates to:

Get-ADUser -Filter {SamAccountName -eq "User1"} -Server "$((Get-ADDomainController).Name):3268"