@Knaper-Yaden when using the following command on powershell:
Enter-PSSession -ComputerName "192.168.0.20" -Credential Admin
I can successfully connect to the client after providing the right credentials.
If I use the machine name instead of the IP address (192.168.0.20) then I get the folowing error:
Enter-PSSession : Connecting to remote server desktop-oe9qaob failed with the following error message : The WinRM client cannot process the request. If the authentication scheme is different from Kerberos, or if the client
computer is not joined to a domain, then HTTPS transport must be used or the destination machine must be added to the TrustedHosts configuration setting. Use winrm.cmd to configure TrustedHosts. Note that computers in the
TrustedHosts list might not be authenticated. You can get more information about that by running the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic.
At line:1 char:1
+ Enter-PSSession -ComputerName "desktop-oe9qaob" -Credential Admin
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (desktop-oe9qaob:String) [Enter-PSSession], PSRemotingTransportException
+ FullyQualifiedErrorId : CreateRemoteRunspaceFailed
This is basically the same error that I get when trying to add the same client to the server manager on my machine.
I’d appreciate your expert advice!
Thanks a lot!