Hello,
I posted some time ago asking about Powershell 2.0's remoting capabilities and Exchange 2007, and we discovered it was possible. However, I'm attempting it now and am running into issues. Basically I'm trying to run the following:
Invoke-Command {Add-PSSession ; Get-Mailbox -identity dhenshaw} -session (New-Pssession myexchange.mydomain.local)
However it generates the below error:
An Active Directory error 0x80072020 occurred while searching for domain controllers in domain Ignition.bm: An operatio ns error occurred. + CategoryInfo : NotSpecified: (0:Int32) [Get-Mailbox], ADTransientException + FullyQualifiedErrorId : 4D18720A,Microsoft.Exchange.Management.RecipientTasks.GetMailbox
The error stays even if I specify the -domaincontroller parameter of Get-Mailbox. Any ideas? This has me stumped. Thanks.
|