我看过很棒的文章
PowerShell 2.0 远程处理指南:第 8 部分 - 远程处理方案和故障排除
http://www.ravichaganti.com/blog/?p=1181
我有这个问题:我在域中有两台计算机,在网络中。
第一次测试确定:从域中的计算机远程连接到域中的计算机
COMPANY_DOMAIN\desmonitor 是域用户。
域 COMPANY_DOMAIN
计算机:iis01
PS C:\Users\myUser> Enter-PSSession -Computername iisw01 -Credential COMPANY_DOMAIN\desmonitor
[desiisw01]: PS C:\Users\desmonitor\Documents> 退出
第二次测试错误::使用本地管理员用户从域中的计算机远程访问域中的计算机
iis01\instalador 是机器 iis01
计算机的本地用户:iis01
PS C:\Users\myUser> Enter-PSSession -Computername iis01 -Credential iis01\instalador Enter-PSSession:连接到远程服务器失败,出现以下错误消息:WinRM 客户端无法处理请求。
在使用 COMPANY_DOMAIN\desmonitor 的终端服务器(远程桌面)的机器 ii01 中,我打开 PS 控制台并执行
PS C:\Users\desmonitor> winrm quickconfig
WinRM 已经设置为在这台机器上接收请求。
WinRM 已经设置为在这台机器上进行远程管理。
PS C:\Users\desmonitor>
然后,我再试一次,但我得到同样的错误:
PS C:\Users\myUser> Enter-PSSession -Computername iis01 -Credential iis01\instalador Enter-PSSession:连接到远程服务器失败,出现以下错误消息:WinRM 客户端无法处理请求。
使用此命令:
PS C:\Users\myUser> Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force PS C:\Users\myUser>
现在,我可以访问:
PS C:\Users\myUser> Enter-PSSession -Computername iis01 -Credential iis01\instalador [iiw01]: PS C:\Users\instalador\Documents> $Host
Name : ServerRemoteHost
Version : 1.0.0.0
InstanceId : 6905896f-e6c7-4603-82f0-20183f71b1ec
UI : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture : es-ES
CurrentUICulture : es-ES
PrivateData :
IsRunspacePushed :
Runspace :
在我公司,有很多电脑要连接到iis01。
每个计算都需要执行将远程计算机添加到本地计算机的受信任主机列表的命令??
我有几个关于它的问题¿
如何在本地计算机中获取有关 TrustedHosts (WSMan:\LocalHost\Client) 的列表?
如何知道计算机中是否启用了 WinRM 服务?
如何知道 WinRM 服务是否在计算机中运行?
我如何知道 WinRM 是否设置为在计算机中接收请求?
我如何知道 WinRM 是否设置为在这台机器上进行远程管理?