Created
June 27, 2020 10:53
-
-
Save guycalledseven/917f26d89047cd1fcc79e4b3b4c1589d to your computer and use it in GitHub Desktop.
Manual uninstall of Cisco Webex on macOS 10.15 Catalina
This file contains hidden or 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 | |
# | |
# After downloading and running official Cisco Webex uninstaller (Cisco_WebEx_App_Uninstall), there is still a lot of Cisco Webex artifacts left on the system | |
# Cisco_WebEx_App_Uninstall.dmg.zip - https://cisco.bravais.com/s/4Kd44oJMbWksbTPQtvpw | |
# | |
rm -rf "/Users/$USER//Library/Application Support/Google/Chrome/Default/IndexedDB/https_tadawul.webex.com_0.indexeddb.leveldb" | |
rm -rf "/Users/$USER//Library/Application Support/Cisco/WebEx Meetings" | |
rm -rf "/Users/$USER//Library/WebKit/com.webex.meetingmanager" | |
rm -rf "/Users/$USER//Library/Logs/WebexMeetings" | |
rm -rf "/Users/$USER//Library/Logs/webexmta" | |
rm -rf "/Users/$USER//Library/Safari/Databases/___IndexedDB/v1/https_meetingsemea17.webex.com_0" | |
rm -rf "/Users/$USER//Documents/WebEx" | |
rm "/Users/$USER/Users/$USER/Library/Receipts/com.cisco.webex.meetings.cws.plist" | |
rm "/Users/$USER//Library/Receipts/com.cisco.webex.meetings.cws.bom" | |
rm "/Users/$USER//Library/Application Support/Google/Chrome/NativeMessagingHosts/com.webex.meeting.json" | |
rm "/Users/$USER//Library/Application Support/Google/Chrome/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm/1.27.10_2/js/webext.js" | |
rm "/Users/$USER//Library/Preferences/com.cisco.webex.Cisco-WebEx-Start.plist" | |
rm "/Users/$USER//Library/Logs/webexmta/webexmta_webexapp_20200603_121832.zip" | |
rm "/Users/$USER//Library/Logs/webexmta/webexmta_webexapp_20200603_161431.zip" | |
rm "/Users/$USER//Library/Logs/webexmta/webexmta_webexapp_20200603_161513.zip" | |
rm "/Users/$USER//Library/Containers/com.microsoft.Outlook/Data/com.cisco.Cisco Webex Meetings.plist" | |
rm "/Users/$USER//Library/Containers/com.microsoft.Outlook/Data/com.cisco.webexmeetingsapp.plist" | |
rm "/Users/$USER//Library/Caches/com.cisco.webex.Cisco-WebEx-Start" |
davidimoore
commented
Jan 25, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment