Posted on 03-18-2020 02:40 PM
Hi,
I am looking for the terminal command to untick the options in the advanced window of the software update window.
I have "Automatically keep my Mac up to date" unticked but how do I untick the "check for updates", "download new updates when available" using a command in terminal?
Posted on 03-19-2020 08:29 PM
For unchecking "Check for updates"
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticCheckEnabled -bool false
For unchecking "Download new updates when available"
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticDownload -bool false
Posted on 03-27-2020 07:16 AM
Hi,
Thanks for the above.
When I try those commands I get this message:
2020-03-27 14:15:14.695 defaults[13402:57826] Could not write domain /Library/Preferences/com.apple.SoftwareUpdate.plist; exiting
Posted on 03-27-2020 07:21 AM
Hi,
I used this for Mojave
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticallyInstallMacOSUpdates -bool false
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticCheckEnabled -bool false
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticDownload -bool false
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist CriticalUpdateInstall -bool false
/usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist ConfigDataInstall -bool false
/usr/bin/defaults write /Library/Preferences/com.apple.commerce.plist AutoUpdate -bool false
Posted on 12-16-2021 10:24 AM
Hi
So if you disable those but have a Software Update policy, how would they interact together?