我想远程启用其他计算机上的powershell远程处理。远程计算机需要身份验证。我试图创建一个批处理文件来安排执行Enable-Psremoting的任务,显然我无法将它放在远程计算机中。
答案 0 :(得分:7)
如果您在域中,则可以创建GPO以启用远程处理。见http://www.briantist.com/how-to/powershell-remoting-group-policy/
您还可以use psexec
to remotely execute PowerShell(请参阅底部的“whatyousay”答案),将enable-psremoting
作为要执行的脚本传递。
psexec \\[computer name] -u [admin account name] -p [admin account password] -h -d powershell.exe "enable-psremoting -force"
如果您正在为大量系统执行此操作,则GPO可能是最佳选择 - 尽管您可以围绕psexec
版本包装PowerShell脚本以循环遍历计算机列表。