Created
May 23, 2013 03:10
-
-
Save jessepeterson/5632537 to your computer and use it in GitHub Desktop.
Remove iLife '11 (DVD installer)
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 | |
# Remove *all* components of iLife '11 as installed by the "DVD" installer | |
rm -rf \ | |
"/Applications/iWeb.app" \ | |
"/Library/Audio/Apple Loops/Apple/iLife Sound Effects" \ | |
"/Applications/GarageBand.app" \ | |
"/Library/Audio/Apple Loops/Apple/Apple Loops for GarageBand" \ | |
"/Applications/iDVD.app" \ | |
"/Library/Application Support/iDVD/Themes/iDVD 6" \ | |
"/Library/Application Support/iDVD/Themes/iDVD 7" \ | |
"/Library/Documentation/Applications/iDVD/iDVD Getting Started.app" \ | |
"/Applications/iMovie.app" \ | |
"/Applications/iPhoto.app" \ | |
"/Library/Application Support/iPhoto" \ | |
"/Library/Frameworks/iLifeKit.framework" \ | |
"/Library/Frameworks/iLifePageLayout.framework" \ | |
"/Library/Frameworks/iLifeSQLAccess.framework" \ | |
"/Library/Internet Plug-Ins/iPhotoPhotocast.plugin" \ | |
"/Library/Application Support/iLifeSlideshow" \ | |
"/Library/Documentation/Applications/iMovie" \ | |
"/Library/Documentation/Applications/iPhoto" \ | |
"/Library/Documentation/Applications/iWeb" \ | |
"/Library/Frameworks/iLifeFaceRecognition.framework" \ | |
"/Library/Frameworks/iLifeSlideshow.framework" \ | |
"/System/Library/CoreServices/CoreTypes.bundle/Contents/Library/iLifeSlideshowTypes.bundle" \ | |
"/private/var/tmp/.BlankFile" | |
for i in GarageBand iDVD iLife iMovie iPhoto GarageBand iWeb | |
do | |
pkgutil --pkgs | grep $i | xargs -n 1 pkgutil --forget | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!