Jump to content

How to uninstall Pulseway when installer is not in Add/Remove programs?


Information Results Corp

Recommended Posts

  • 2 weeks later...

Try using the Pulseway installer MSI file. When you run it, you have the options of repairing or removing Pulseway. If removing outright doesn't work, trying repairing and it might bring the entry back into the Add/Remove Programs window.

I have purposely hidden Pulseway away from that window on our employee computers to avoid any "misclicks" that would uninstall Pulseway and that's the method I've been able to consistently use to uninstall it.

Link to comment
Share on other sites

  • 1 month later...

You can use this Powershell script:

try
{
	$result = Get-WmiObject win32_product -filter "Name LIKE 'Pulseway'" | Select-Object IdentifyingNumber;
	[string]$a = $result.identifyingNumber;
	msiexec.exe /X $a /qn
	Remove-Item -Path "HKLM:\SOFTWARE\MMSOFT Design" -Recurse
	Write-Host "$a Uninstallation completed successfully"
}
catch
{
	Write-Host "Uninstallation failed"
	Break
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...