我如何编写一个在 64 位远程 powershell 可执行文件上打开和运行 cmdlet 的 powershell 脚本。
我很难找到任何资源、示例或教程来展示如何编写连接到远程服务器的 powershell 脚本、打开 64 位 Powershell.exe 并从中运行 cmdlet。我将从 32 位机器上运行这个脚本。如果有人有任何例子或想法?
更新:
我发现我可以在远程机器上先执行一个受信任的主机命令并启用 remote-ps
Enable-PSRemoting
cd wsman:
cd localhost\client
set-item trustedhosts *
这样做之后,我尝试连接到我的服务器
Enter-PSSession servername
给出这个错误
The following error occured while using Kerberos authentication: The network path was not found.