Last active
April 16, 2024 17:29
-
-
Save bwolf/16ce47a76b0fbb3f4c63d639c4f84608 to your computer and use it in GitHub Desktop.
Remove GoToMeeting on macOS
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/sh | |
# | |
# GOTOMEETING IS SO ANOYING! | |
# | |
# It installs without question, a bunch of unwanted files, especially | |
# LaunchAgents and binaries. This scripts helps got get rid of them | |
# quickly. Note that this needs to be adjusted from time to time. | |
# | |
# BEWARE: Anything citrix related is deleted also. | |
# | |
set -x | |
rm -rf "$HOME/Library/Application Support/CitrixOnline" | |
rm -rf "$HOME/Library/Application Support/GoToOpener" | |
rm -rf "$HOME/Library/Application Support/LogMeInInc" | |
rm -rf "$HOME/Library/Caches/com.logmein" | |
rm -rf "$HOME/Library/Caches/com.logmein.GoToMeeting" | |
rm -rf "$HOME/Library/Caches/com.logmein.mac.GoToOpener" | |
rm -rf "$HOME/Library/Caches/G2MUpdate" | |
rm -f "$HOME/Library/LaunchAgents/com.citrixonline.GoToMeeting.G2MUpdate.plist" | |
rm -f "$HOME/Library/LaunchAgents/com.logmein.GoToMeeting.G2MUpdate.plist" | |
rm -rf "$HOME/Library/Logs/com.logmein.GoToMeeting" | |
rm -rf "$HOME/Library/Logs/com.logmein.GoToOpener" | |
rm -f "$HOME/Library/Preferences/com.citrixonline.G2MUpdate.plist" | |
rm -f "$HOME/Library/Preferences/com.logmein.G2MUpdate.plist" | |
rm -f "$HOME/Library/Preferences/com.logmein.GoToMeeting.plist" | |
rm -f "$HOME/Library/Preferences/com.logmein.mac.GoToOpener.plist" | |
rm -f "$HOME/Library/Preferences/G2MUpdate.plist" | |
rm -rf $HOME/Applications/GoToMeeting*.app/ | |
rmdir "$HOME/Applications" # Ignore error if directory is non empty | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment