Skip to content

Instantly share code, notes, and snippets.

@AshFlaw
Last active October 7, 2018 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshFlaw/2a1b3f474af94c1c6c2cb8d6cd911b56 to your computer and use it in GitHub Desktop.
Save AshFlaw/2a1b3f474af94c1c6c2cb8d6cd911b56 to your computer and use it in GitHub Desktop.
Remove the SSL reminder screen in PRTG. Useful for reverse proxy situations when the proxy is SSL but the internal termination is HTTP.
Write-Output "Stopping PRTG Core Service"
Get-Service -Name prtgcoreservice | Stop-Service
Write-Output "Disabling SSL nag message in UI"
Set-ItemProperty -path "HKLM:\SOFTWARE\Wow6432Node\Paessler\PRTG Network Monitor\Server\Webserver" -Name "showsslnagscreen" -value 0
Write-Output "Starting PRTG Core Service"
Get-Service -Name prtgcoreservice | Start-Service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment