Created
November 11, 2013 03:42
-
-
Save talkingmoose/7407448 to your computer and use it in GitHub Desktop.
Launchd Launch Agent to set Microsoft AutoUpdate preferences for Office for Mac 2011 to manually check for updates rather than automatically checking.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.talkingmoose.OfficeAutoUpdate</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/bash</string> | |
<string>-c</string> | |
<string>defaults write com.microsoft.autoupdate2 HowToCheck Manual ; defaults write com.microsoft.autoupdate2 LastUpdate -date 2001-01-01T00:00:00Z</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installation instructions:
Notes: This launchd agent runs at every login for each user and sets his Microsoft AutoUpdate preferences to check manually for Office for Mac 2011 updates. Users can still check for updates using Help > Check for Updates in any Office application.
Setting each user's preferences is necessary because user preferences in ~/Library/Preferences/com.microsoft.autoupdate2.plist can override conflicting preferences in /Library/Preferences/com.microsoft.autoupdate2.plist.