Fix Malwarebytes 4 for Mac not uninstalling

Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=tyn9BEMWS7U



Duration: 2:18
2 views
0


Here's how to Malwarebytes 4 for Mac not uninstalling. For starters, use CleanMyMac X@ https://macpaw.audw.net/c/376211/63812/1733 so u can efficiently manage installed app & your Mac.

Here is the example shell script (beta) that can be used to uninstall Malwarebytes 4 for Mac:

#!/bin/bash

# Stop the Malwarebytes service
sudo launchctl stop com.malwarebytes.mbam.rtprotection

# Remove Malwarebytes files
sudo rm -rf /Applications/Malwarebytes\ Anti-Malware.app
sudo rm -rf /Library/Application\ Support/Malwarebytes
sudo rm -rf /Library/LaunchAgents/com.malwarebytes.HelperTool.plist
sudo rm -rf /Library/LaunchDaemons/com.malwarebytes.mbam.rtprotection.daemon.plist
sudo rm -rf /Library/LaunchDaemons/com.malwarebytes.mbam.settings.daemon.plist
sudo rm -rf /Library/LaunchDaemons/com.malwarebytes.mbam.telemetry.daemon.plist
sudo rm -rf /Library/LaunchDaemons/com.malwarebytes.mbam.frontend.agent.plist
sudo rm -rf /Library/LaunchDaemons/com.malwarebytes.mbam.frontend.helper.plist
sudo rm -rf /Library/PrivilegedHelperTools/com.malwarebytes.HelperTool

# Remove Malwarebytes drivers
sudo kextunload -b com.malwarebytes.mbam.rtprotection
sudo rm -rf /Library/Extensions/mbam.kext
sudo rm -rf /Library/StagedExtensions/Library/Extensions/mbam.kext

# Remove Malwarebytes log files
sudo rm -rf /Library/Logs/Malwarebytes

# Unload Malwarebytes launch agents and daemons
sudo launchctl unload /Library/LaunchAgents/com.malwarebytes.HelperTool.plist
sudo launchctl unload /Library/LaunchDaemons/com.malwarebytes.mbam.rtprotection.daemon.plist
sudo launchctl unload /Library/LaunchDaemons/com.malwarebytes.mbam.settings.daemon.plist
sudo launchctl unload /Library/LaunchDaemons/com.malwarebytes.mbam.telemetry.daemon.plist
sudo launchctl unload /Library/LaunchDaemons/com.malwarebytes.mbam.frontend.agent.plist
sudo launchctl unload /Library/LaunchDaemons/com.malwarebytes.mbam.frontend.helper.plist

echo "Malwarebytes 4 has been successfully uninstalled from your Mac."