Skip to main content
All CollectionsRemote Monitoring and Management (RMM)
Remove from registry and reinstall RMM
Remove from registry and reinstall RMM
S
Written by Sam
Updated over 4 months ago

This is how to remove the device from Registry and initiate re-installation of the device.

#Stop Gorelo services
Stop-Service -Name Gorelo.Rmm.Installer;
Stop-Service -Name Gorelo.Rmm.Shell;

#Remove DeviceId from registry
Remove-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Gorelo" -Name "DeviceId" -ErrorAction SilentlyContinue;

#Start Installer service - This will create a new device
Start-Service -Name Gorelo.Rmm.Installer;

Did this answer your question?