Select Page

Required Files: None


This script will uninstall the Pulseway agent and delete the configuration for the Pulseway agent. Please note that this script will not work if the Pulseway agent is installed only for one user:


 

$result = gwmi win32_product -filter "Name LIKE 'Pulseway'" | select IdentifyingNumber;
[string] $a = $result.identifyingNumber;
msiexec.exe /X $a /qn
Remove-Item -Path "HKLM:\SOFTWARE\MMSOFT Design" -Recurse
Write-Host "Uninstallation completed successfully"