Fix Avast Free Antivirus for Mac not uninstalling

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



Duration: 1:38
1 views
0


Here's how to Avast Free Antivirus 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.

U can use a shell script (BETA) on a Mac to uninstall Avast Free Antivirus:

#!/bin/bash

# Uninstall Avast Free Antivirus for Mac

echo "Uninstalling Avast Free Antivirus for Mac..."

# Stop all Avast processes
sudo launchctl unload /Library/LaunchDaemons/com.avast.daemon.plist
sudo launchctl unload /Library/LaunchAgents/com.avast.home.userinit.plist
sudo launchctl unload /Library/LaunchAgents/com.avast.home.userupdate.plist
sudo launchctl unload /Library/LaunchAgents/com.avast.home.userw.plist

# Remove Avast files
sudo rm -rf /Library/Application\ Support/Avast/
sudo rm -rf /Applications/Avast.app
sudo rm -rf /Library/LaunchDaemons/com.avast.daemon.plist
sudo rm -rf /Library/LaunchAgents/com.avast.home.userinit.plist
sudo rm -rf /Library/LaunchAgents/com.avast.home.userupdate.plist
sudo rm -rf /Library/LaunchAgents/com.avast.home.userw.plist
sudo rm -rf /Library/LaunchDaemons/com.avast.uninstall.plist
sudo rm -rf /Library/LaunchAgents/com.avast.uninstall.plist

echo "Avast Free Antivirus for Mac has been uninstalled."