完全配置Enter-PSSession以在客户端和服务器上工作所需的命令是什么?

时间:2017-04-06 00:25:25

标签: windows powershell winrm windows-server-2016

我有Windows 10客户端和Windows Server 2016服务器。我想配置服务器和客户端,以便能够从客户端对服务器运行powershell命令。

配置此命令所需的最小命令集是什么?

1 个答案:

答案 0 :(得分:-1)

服务器端:

  • Enable-PSRemoting -Force
  • Restart-Service WinRM

客户端:

  • WinRM quickconfig
  • (Y,N代表第二种选择,除非你想为你的机器启用Remoting)
  • winrm s winrm/config/client '@{TrustedHosts="servercomputername"}'

然后:

  • Enter-PSSession -ComputerName servercomputername -Authentication Negotiate -Credential "servercomputername\serveraccountname"

或者

  • Enter-PSSession -ComputerName servercomputername -Authentication Negotiate -Credential "domain\domainaccount"