Using Quest AD cmdlets in an imported session

Posted by ASTX813 on Server Fault See other posts from Server Fault or by ASTX813
Published on 2012-12-04T23:04:11Z Indexed on 2012/12/04 23:05 UTC
Read the original article Hit count: 210

Filed under:

We are trying to use remote Powershell on our Exchange system:

$rs = New-PSSession -ConnectionUri <uri> -ConfigurationName Microsoft.Exchange -Authentication Basic -Credential <username> -AllowRedirection
Import-PSSession $rs

After these commands, we can run Exchange cmdlets and all is well. However, we're unable to run any Quest Active Directory cmdlets. Yes, Quest is installed on the remote (as well as our local machines), and yes we are able to run those commands when running Powershell locally on the server. I tried -AllowClobber, but that didn't have an effect. Is there a way to get access to QAD?

© Server Fault or respective owner

Related posts about powershell