Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slashdotdash/333828 to your computer and use it in GitHub Desktop.
Save slashdotdash/333828 to your computer and use it in GitHub Desktop.
# http://www.makemacwork.com/disable-automatic-updates.htm
for USER in `ls -1 /Users | \
sed -e '/Shared/d' -e '/Deleted Users/d' -e '/.localized/d'`; \
do \
sudo -u $USER softwareupdate --schedule off; \
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment