Error rendering macro 'rw-search'

null

Downloads

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In order to use a Windows Services Sensor or Performance Counter Sensor , etc... you need to make sure that the Destination Host has Remote PowerShell enabled.

The easiest (and most common way) is to enable this without enabling any SSL encryption (between GL and the Destination System).
The following PowerShell commands will enable Remote PowerShell without using Encryption

 

Configuration

Open a PowerShell Console on the Destination Host and execute the following commands

    • Enable-PSRemoting –force
    • set-item -force WSMan:\localhost\Service\Auth\Basic $true
    • set-item -force WSMan:\localhost\Client\AllowUnencrypted $true
    • set-item -force WSMan:\localhost\Service\AllowUnencrypted $true

 

If you want to use Encryption, please read the following article

Using SSL for Remote PowerShell