Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot create remote powershell session after Enable-PSRemoting

Tags:

I can not remote into any machine to save my life! I have tried everything I can find. If anyone could troubleshoot or guide me, I'd appreciate it as this would be a great tool to add on my domain.

SETUP:

  1. Client machine inside domain
  2. Server machine inside or outside domain - Virtualized and utilized for WSUS Computername: wsustest
  3. CLIENT SERVER MACHINE physical- computername: epizzi-pc

STEPS:

 enable-pssremoting done! on all machines trustedhosts configured with * or client machine added Firewalls with public profile off just in case 

 Enter-PSSession -ComputerName wsustest -Credential wsustest\administrator Enter-PSSession -ComputerName epizzi-pc -Credential epizzi-pc\administrador Enter-PSSession : Connecting to remote server epizzi-pc failed with the following error message : WinRM cannot process the request. The following error with errorcode 0x80090311  occurred while using Kerberos authentication: There are currently no logon servers available to service the logon request.    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. At line:1 char:1 + Enter-PSSession -ComputerName epizzi-pc -Credential epizzi-pc\administrador + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     + CategoryInfo          : InvalidArgument: (epizzi-pc:String) [Enter-PSSession], PSRemotingTransportException     + FullyQualifiedErrorId : CreateRemoteRunspaceFailed 

 Enter-PSSession -ComputerName wsustest -UseSSL -Credential wsustest\administrator  *Enter-PSSession : Connecting to remote server wsustest failed with the following error message : WinRM cannot complete the operation. Verify that the specified computer name is  valid, that the computer is accessible over the network, and that a firewall exception for the WinRM service is enabled and allows access from this computer. By default, the WinRM  firewall exception for public profiles limits access to remote computers within the same local subnet. For more information, see the about_Remote_Troubleshooting Help topic. At line:1 char:1 + Enter-PSSession -ComputerName wsustest -UseSSL -Credential wsustest\administrato ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     + CategoryInfo          : InvalidArgument: (wsustest:String) [Enter-PSSession], PSRemotingTransportException     + FullyQualifiedErrorId : CreateRemoteRunspaceFailed* ERRORs: 
like image 459
user1056661 Avatar asked Apr 17 '13 13:04

user1056661


People also ask

How do I undo enable-PSRemoting?

To disable Windows PowerShell session endpoint configurations, run Disable-PSRemoting command from within a Windows PowerShell session. To re-enable remote access to all PowerShell version 6 and greater session endpoint configurations, use the Enable-PSRemoting cmdlet.

How do you check PSRemoting is enabled or not?

Answers. Just run Enter-PSSession -ComputerName localhost. If it enters the remote session, PS remoting is enabled.


1 Answers

I was receiving the same problem when remoting to a server and found this blog post very helpful - http://jeffgraves.me/2013/10/14/powershell-remoting/

For my specific case I did the following:

On the Local machine

  1. winrm quickconfig (although this was already configured)
  2. winrm s winrm/config/client '@{TrustedHosts="myservername.domain"}'

On the Remote machine

  1. enable-psremoting -force
  2. Set-PSSessionConfiguration -ShowSecurityDescriptorUI -Name Microsoft.PowerShell -Force
like image 96
IsolatedStorage Avatar answered Sep 29 '22 12:09

IsolatedStorage