All Collections
Remote Monitoring and Management (RMM)
Uninstall RMM using PowerShell script
Uninstall RMM using PowerShell script
S
Written by Sam
Updated over a week ago

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

$goreloProcesses = Get-Process | Where-Object { $_.Name -Like '*gorelo*'};
foreach ($process in $goreloProcesses)
{
Stop-Process -Name $process.Name -Force
}

Uninstall-Package -Name "GoreloAgent" -Force
Uninstall-Package -Name "GoreloInstaller" -Force
Remove-Item -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Gorelo" -Recurse
Remove-Item -path "C:\Program Files\Gorelo" -recurse
Remove-Item -path "C:\Windows\System32\GoreloInstaller.msi" -recurse

Did this answer your question?