Hello BDub69,
Thank you for posting in Microsoft Community forum.
Based on the error message, it seems that there is an issue with the Kerberos authentication method. You can try the following steps to resolve the issue:
- 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.
- Ensure that the Service Principal Name (SPN) for the remote computer name and port exists.
- Ensure that the user name and password specified are valid.
- Ensure that the client and remote computers are in the same domain or there is a trust between the two domains.
To change the authentication method, you can run the following command:
**winrm set winrm/config/client/auth @{Basic="true"}**
This will enable Basic authentication. However, it is recommended to use HTTPS transport for security reasons.
You can also add the destination computer to the WinRM TrustedHosts configuration setting by running the following command:
**winrm set winrm/config/client @{TrustedHosts="RemoteComputerName"}**
Replace "RemoteComputerName" with the name of the remote computer.
I hope the information above is helpful.
If you have any question or concern, please feel free to let us know.
Best Regards,
Haijian Shan