嗨,有人对如何让 Active Directory 模块在远程 ps 会话中工作有任何经验吗?我尝试的任何方法似乎都不起作用。我在计算机之间的远程处理很好并且可以正常工作,并且它们已加入域。可以说我这样做
$Session = New-PSSession -ComputerName DC01
Invoke-Command -Session $Session {Import-Module Active Directory}
WARNING: Error initializing default drive: 'Unable to contact the server. This
may be because this server does not exist, it is currently down, or it does not
have the Active Directory Web Services running.'.
如果我直接登录到服务器,它工作正常。还尝试创建一个 SessionConfiguration 并告诉它加载 AD 模块,但那里也没有运气。