Fix Malwarebytes 4 for Windows not uninstalling
Channel:
Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=e5dJgvM3G0M
Here's how to Fix Malwarebytes 4 for Windows not uninstalling. To effectively remove unwanted/problematic programs, run this best uninstall tool@ https://macpaw.audw.net/c/376211/154407/1733.
Here's the PowerShell script (BETA) to uninstall Malwarebytes 4 for Windows:
$mbamPath = "C:\Program Files\Malwarebytes\Anti-Malware\unins000.exe"
if(Test-Path $mbamPath) {
& $mbamPath /SILENT
}
else {
Write-Host "Malwarebytes Anti-Malware is not installed on this machine."
}