Skip to content

Instantly share code, notes, and snippets.

@jessepeterson
Created May 23, 2013 03:10
Show Gist options
  • Save jessepeterson/5632537 to your computer and use it in GitHub Desktop.
Save jessepeterson/5632537 to your computer and use it in GitHub Desktop.
Remove iLife '11 (DVD installer)
#!/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
@hally9k
Copy link

hally9k commented Aug 17, 2015

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment