1

嗨,有人对如何让 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 模块,但那里也没有运气。

4

2 回答 2

0

可能是可怕的“双跳认证”问题。由于您已经设置了会话配置,您可以尝试添加 -RunAs 并查看它是否开始工作:

http://www.vinithmenon.com/2012/11/delegated-administration-in-windows.html

于 2013-11-06T11:49:16.897 回答
0

我找到了解决我的问题的方法。我从头开始在服务器上和我的客户端上再次启用了 CredSSP,现在它正在工作:)

于 2013-11-08T10:06:49.040 回答