-
-
Save artynet/ad22415fa89db1aa6bd1f084d0fe01a7 to your computer and use it in GitHub Desktop.
Office 2011 for Mac Uninstaller
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/sh | |
# Credit to http://www.officeformachelp.com/office/install/remove-office/ | |
osascript -e 'tell application "Remote Desktop Connection" to quit' | |
osascript -e 'tell application "Microsoft Document Connection" to quit' | |
osascript -e 'tell application "Microsoft Messenger" to quit' | |
osascript -e 'tell application "Microsoft Communicator" to quit' | |
osascript -e 'tell application "Microsoft Outlook" to quit' | |
osascript -e 'tell application "Microsoft Excel" to quit' | |
osascript -e 'tell application "Microsoft PowerPoint" to quit' | |
osascript -e 'tell application "Microsoft Word" to quit' | |
osascript -e 'tell application "Microsoft Office Reminders" to quit' | |
osascript -e 'tell application "Microsoft AU Daemon" to quit' | |
osascript -e 'tell application "Microsoft Database Daemon" to quit' | |
rm -R '/Applications/Microsoft Communicator.app/' | |
rm -R '/Applications/Microsoft Messenger.app/' | |
rm -R '/Applications/Microsoft Office 2011/' | |
rm -R '/Applications/Remote Desktop Connection.app/' | |
rm -R '/Library/Application Support/Microsoft/' | |
rm -R /Library/Automator/*Excel* | |
rm -R /Library/Automator/*Office* | |
rm -R /Library/Automator/*Outlook* | |
rm -R /Library/Automator/*PowerPoint* | |
rm -R /Library/Automator/*Word* | |
rm -R '/Library/Automator/Add New Sheet to Workbooks.action' | |
rm -R '/Library/Automator/Create List from Data in Workbook.action' | |
rm -R '/Library/Automator/Create Table from Data in Workbook.action' | |
rm -R '/Library/Automator/Get Parent Presentations of Slides.action' | |
rm -R '/Library/Automator/Get Parent Workbooks.action' | |
rm -R '/Library/Automator/Set Document Settings.action' | |
rm -R '/Library/Fonts/Microsoft/' | |
rm -R /Library/Internet\ Plug-Ins/*SharePoint* | |
rm -R /Library/LaunchDaemons/*microsoft* | |
rm -R /Library/Preferences/*microsoft* | |
rm -R /Library/PrivilegedHelperTools/*microsoft* | |
OFFICERECEIPTS=$(pkgutil --pkgs=com.microsoft.office*) | |
for ARECEIPT in $OFFICERECEIPTS | |
do | |
pkgutil --forget $ARECEIPT | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment