Created
January 22, 2023 01:25
-
-
Save therealFoxster/41c75992349f68c2aa8aaad8dd0518aa to your computer and use it in GitHub Desktop.
Fix for Microsoft AutoUpdate "Updates are temporarily unavailable, please try again in a few minutes."
This file contains 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
#!/bin/bash | |
# https://answers.microsoft.com/en-us/msoffice/forum/all/microsoft-autoupdate-not-working/112beb19-3f68-49f4-a48b-00859ae900e3?page=3 | |
launchctl stop /Library/LaunchAgents/com.microsoft.update.agent.plist | |
launchctl unload -w /Library/LaunchAgents/com.microsoft.update.agent.plist | |
launchctl load -w /Library/LaunchAgents/com.microsoft.update.agent.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment