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;