WinRM Services Configuration

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

Figure 1: Group Policy Management

If configuring manually, run the following commands on each monitored machine:

  1. Make sure WinRM is enabled. Run the following command:

winrm quickconfig
Figure 2: WinRM QuickConfig Command
  1. Enable AllowUnencrypted. Run the following command:

winrm set winrm/config/service @{AllowUnencrypted="true"}
Figure 3: AllowUncrypted Command
  1. 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.

Figure 4: Add Gateway Host Command
  1. 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"}
Figure 5: Enable Basic Authentication Command
  1. Verify if WinRM is running by opening Services.msc

Figure 6: Services Window

Last updated

#660:

Change request updated