So today I was trying to running some cross domain PowerShell commands on Exchange but kept getting the following error:
1 |
The operation couldn't be performed because object 'user' couldn't be found on 'Server_Name.Domain' |
Which basically means the Domain Controller your referencing can only see your sub domain and nothing higher. So to resolve run this before the command:
1 |
Set-AdServerSettings -ViewEntireForest $True |
Leave a Reply