Last active
July 9, 2019 22:02
-
-
Save nicksieger/d6df17821784922bc0055b919aea16e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Zoom.us full uninstall script | |
# | |
# - Download this file locally | |
# - Run `chmod 755 ./remove_zoom_us_macos.sh` | |
# - Run `./remove_zoom_us_macos.sh` | |
echo Cleaning Zoom… | |
echo Killing all Zoom processes… | |
pkill -i zoom | |
echo Cleaning Application… | |
{ | |
rm -rfv /Applications/zoom.us.app | |
rm -rfv ~/Applications/zoom.us.app | |
sudo kextunload -b zoom.us.ZoomAudioDevice | |
sudo rm -rfv /System/Library/Extensions/ZoomAudioDevice.kext | |
} &> /dev/null | |
echo Cleaning Application Cached Files… | |
{ | |
rm -rfv ~/Downloads/zoomusInstaller.pkg | |
sudo rm -rf /Applications/zoom.us.app | |
rm -rf "~/Library/Application Support/zoom.us" | |
rm -rf ~/Library/Caches/us.zoom.xos | |
rm -rf "~/Library/Internet Plug-Ins/ZoomUsPlugIn.plugin" | |
rm -rf ~/Library/Logs/zoom.us | |
rm -f ~/Library/Logs/zoominstall.log | |
rm -f ~/Library/Preferences/ZoomChat.plist | |
rm -f ~/Library/Preferences/us.zoom.xos.plist | |
rm -rf "~/Library/Saved Application State/us.zoom.xos.savedState" | |
} &> /dev/null | |
rm -rf ~/.zoomus | |
touch ~/.zoomus | |
chmod 000 ~/.zoomus | |
echo Done removing Zoom. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Remove the Zoom.us localhost webserver/launcher component and prevent Zoom from reinstalling it. | |
pkill -i zoom | |
rm -rf ~/.zoomus | |
touch ~/.zoomus | |
chmod 000 ~/.zoomus |
That line carried from the original. I agree, it's probably not necessary.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please don't
rm -rf ~/Desktop/Zoom
It could be family vacation photos for all you know