All Collections
Policies and Agent Configurations
General
How to uninstall the Pulseway agent remotely?
How to uninstall the Pulseway agent remotely?
Paul Csiki avatar
Written by Paul Csiki
Updated over a week ago

Please run this PS script as an automated task from the Pulseway WebApp, but note, that this script will not work if the Pulseway agent is installed only for one user (in order to make this script to work if the agent is installed for one user, then you will need to configure the PowerShell impersonation using that user and then this script will work):

$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"

This script will uninstall the Pulseway agent and delete the configuration for the Pulseway agent.

And finally you will need to delete these system from monitored systems (for Pro or for Team).

Or you can uninstall the Pulseway agent using the Pulseway mobile app -> Applications -> Pulseway -> tap on the name Pulseway and select option 'Uninstall'. Note, this will not delete the configuration for the Pulseway agent from the system.

Did this answer your question?