Skip to main content
All CollectionsRemote Monitoring and Management (RMM)
Uninstall RMM using PowerShell script
Uninstall RMM using PowerShell script
S
Written by Sam
Updated over a month ago

To uninstall RMM from the device, execute the following PowerShell script:

# Stop all Gorelo-related processes
$processes = "Gorelo.Rmm.Installer", "Gorelo.Rmm.Installer.Handler", "Gorelo.RemoteManagement.Shell", "Gorelo.RemoteManagement.Agent", "TrayApp"
$processes | ForEach-Object { Stop-Process -Name $_ -Force -ErrorAction Ignore }

# Delete Gorelo services
"gorelo.rmm.installer", "gorelo.rmm.shell" | ForEach-Object {
if (Get-Service -Name $_ -ErrorAction Ignore) { sc.exe delete $_ }
}

# Remove Gorelo program folder
Remove-Item "$Env:ProgramFiles\Gorelo" -Recurse -Force -ErrorAction Ignore

# Remove Gorelo registry key
# Note: Retaining this key will allow for a repair install
Remove-Item "HKLM:\SOFTWARE\Gorelo" -Recurse -Force -ErrorAction Ignore
Did this answer your question?