Skip to content

Instantly share code, notes, and snippets.

@lucascantor
Created January 27, 2018 07:53
Show Gist options
  • Save lucascantor/96798533604dbb340b0085bd550f8ec8 to your computer and use it in GitHub Desktop.
Save lucascantor/96798533604dbb340b0085bd550f8ec8 to your computer and use it in GitHub Desktop.
#Enable automatic Apple software updates
#!/bin/bash
defaults write /Library/Preferences/com.apple.SoftwareUpdate AutomaticDownload -bool TRUE
defaults write /Library/Preferences/com.apple.SoftwareUpdate CriticalUpdateInstall -bool TRUE
defaults write /Library/Preferences/com.apple.SoftwareUpdate ConfigDataInstall -bool TRUE
defaults write /Library/Preferences/com.apple.commerce AutoUpdate -bool TRUE
defaults write /Library/Preferences/com.apple.commerce AutoUpdateRestartRequired -bool TRUE
schedule=$(softwareupdate --schedule on)
run_config=$(softwareupdate --background)
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment