Ich möchte auf einem Remote Exchange Server folgende Abfrage machen.
$session = New-PSSession -Computername "exchange01" -authentication Kerberos -Credential Get-Credential
$members = Invoke-Command -Session $session -ScriptBlock {
Get-DistributionGroupMember -Identity myDistributionGroup
}
$members
Remove-PSSession $session
Wenn ich den Befehl in der Exchange Managment Shell auf dem Exchange Server eingebe funktioniert er. Bei dem Remote-Script bekomme ich als Antwort aber nur eine Fehlermeldung.
The term 'Get-DistributionGroupMember' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
+ CategoryInfo : ObjectNotFound: (Get-DistributionGroupMember:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
+ PSComputerName : exchange01