Skip to content

Instantly share code, notes, and snippets.

@nicbet
Created December 1, 2021 13:59
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 nicbet/92eb4097357354b7321acf5190c21d4b to your computer and use it in GitHub Desktop.
Save nicbet/92eb4097357354b7321acf5190c21d4b to your computer and use it in GitHub Desktop.
Disable Microsoft AutoUpdate on MacOS
#!/bin/bash
# See https://superuser.com/a/1649000
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment