首先, 被remote运行PowerShell的windows必须已经join了domain. 其次, 该Windows的PowerShell必须开启对remote command的接受, 运行下面的命令来做到:

enable-psremoting


示例如下:

如何远程运行PowerShell命令?_linux

 

好了, 可以到另一台机器上去执行命令玩玩看啦. 运行Enter-PSSession命令来执行远程命令.

Enter-PSSession

 

示例如下:

如何远程运行PowerShell命令?_microsoft_02