2014-02-14 48 views
0

我有一个简单的PowerShell脚本,它使用Invoke-Command通过Windows远程管理(WinRM)在远程计算机上调用PowerShell ScriptBlock。该脚本正在从Windows Server 2012系统执行,并针对Windows 8.1系统。通过Windows远程管理连接时出错

的脚本非常简单,看起来像这样:

Invoke-Command -ComputerName client03 -ScriptBlock { Get-Process; }; 

以下是错误:

[client03] Connecting to remote server client03 failed with the following error message : WinRM cannot process the 
request. The following error with errorcode 0x80090322 occurred while using Kerberos authentication: An unknown 
security error occurred. 
Possible causes are: 
    -The user name or password specified are invalid. 
    -Kerberos is used when no authentication method and no user name are specified. 
    -Kerberos accepts domain user names, but not local user names. 
    -The Service Principal Name (SPN) for the remote computer name and port does not exist. 
    -The client and remote computers are in different domains and there is no trust between the two domains. 
After checking for the above issues, try the following: 
    -Check the Event Viewer for events related to authentication. 
    -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or 
use HTTPS transport. 
Note that computers in the TrustedHosts list might not be authenticated. 
    -For more information about WinRM configuration, run the following command: winrm help config. For more 
information, see the about_Remote_Troubleshooting Help topic. 
    + CategoryInfo   : OpenError: (client03:String) [], PSRemotingTransportException 
    + FullyQualifiedErrorId : -2144108387,PSSessionStateBroken 

而且,当我尝试连接到远程计算机的管理网络共享,我看到以下错误消息:“目标帐户名称不正确

Error Message

当我尝试在本地会话中连接到计算机的管理共享时,出现错误:“指定的网络名称不再可用。

Error Message

回答

0

事实证明,在目标计算机最近被重建,并且它有一个临时计算机名称。仍然存在着对计算机的旧的DNS条目,因此使用旧连接到计算机名称导致错误“目标帐户名称不正确。

重命名的计算机,并使用其正确的名称指的是计算机后,问题就消失了,或者连接到计算机使用的IP地址是成功的。

Computer Name