Désactiver l’application ‘Microsoft AutoUpdate’ des applications Microsoft sur un Mac
J’ai été agacé par le Microsoft AutoUpdater depuis longtemps aussi. Trop souvent, il a interrompu mon travail de manière intrusive. J’ai donc décidé de le désactiver et voici comment j’ai procédé :
Ouvrez Terminal
Désactivez-le :
`# disable the service
launchctl disable gui/$(id -u)/com.microsoft.update.agent
check that the service is disabled
launchctl print-disabled gui/$(id -u) | grep microsoft
Alternativement, si vous ne souhaitez pas désactiver la mise à jour automatique mais changer l'intervalle de vérification :
`# check current config content
plutil -p /Library/LaunchAgents/com.microsoft.update.agent.plist
# backup
cp -a /Library/LaunchAgents/com.microsoft.update.agent.plist /somewhere/to/backup/
# update the interval, e.g. 43200 seconds (i.e. 12 hours)
sudo plutil -replace StartInterval -integer 43200 /Library/LaunchAgents/com.microsoft.update.agent.plist