WinRM Services Configuration
Use Domain Group Policy to apply these settings to multiple windows machines.

If configuring manually, run the following commands on each monitored machine:
Make sure WinRM is enabled. Run the following command:
winrm quickconfig

Enable AllowUnencrypted. Run the following command:
winrm set winrm/config/service @{AllowUnencrypted="true"}

Add Gateway host to WinRM trusted hosts. Run the following command:
winrm set winrm/config/client @{TrustedHosts="<Gateway Host 1>,<Gateway Host 2>,..."}
Please make sure the failover Gateway Host (when configured) is included.

Enable Basic Authentication. (Optional)
If the monitored Windows host is a standalone computer (not part of a Domain), the Basic authentication must be enabled. Run the following command:
winrm set winrm/config/service/auth @{Basic="true"}

Verify if WinRM is running by opening Services.msc

Last updated