I’m trying to do some powershell remoting and having issues from one host.
I have winRM configured via GPO with trustedhosts *
Checking the client settings at WSMAN:\localhost\Client are identical between the machines that work, and the machine that does not. (5000, wsman, false, null, null, *)
From all of the servers except 1 I am able to use powershell remote commands against any other host (I’ve been using Enter-PSSession to test)
I have SSL/CredSSP authentication turned on and I have tried it with CredSSP and explicit credentials, and with passthrough non-credssp auth.
I have one SCVMM server that will not connect to anything else. It is in the same VLAN and subnet as the rest of the servers, no firewalls between. Windows firewall is turned off.
I can access the SCVMM server via winRM from any other computer, but from the SCVMM server I get the following error when I try to connect to any other computer:
Enter-PSSession : Connecting to remote server hypv3 failed with the following error message : The client
cannot connect to the destination specified in the request. Verify that the service on the destination is running and
is accepting requests. Consult the logs and documentation for the WS-Management service running on the destination,
most commonly IIS or WinRM. If the destination is the WinRM service, run the following command on the destination to
analyze and configure the WinRM service: “winrm quickconfig”. For more information, see the
about_Remote_Troubleshooting Help topic.
At line:1 char:1
+ Enter-PSSession hypv3
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (hypv3:String) [Enter-PSSession], PSRemotingTransportException
+ FullyQualifiedErrorId : CreateRemoteRunspaceFailed
Running winrm qc results in:
WinRM service is already running on this machine.
WinRM is already set up for remote management on this computer.
This is server 2012 and I’m not really sure what to do next. Anyone have any tips?