I got this popup today for the first time (at least looking like that). Is Tim now taking backhanders from Microsoft to further infiltrate Apple tools?Every morning I have this popup window on macOS Catalina. Running latest version.
Not sure how to disable get rid of this annoying popup. Ive searched for an uninstall but can't find one.
View attachment 907643
The app is here /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.appEvery morning I have this popup window on macOS Catalina. Running latest version.
Not sure how to disable get rid of this annoying popup. Ive searched for an uninstall but can't find one.
sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist Disabled -bool YES
sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist RunAtLoad -bool NO
sudo chflags schg /Library/LaunchAgents/com.microsoft.update.agent.plist
defaults write com.microsoft.autoupdate2 'MAUFeedbackEnabled' -bool FALSE
defaults write com.microsoft.autoupdate2 'SendAllTelemetryEnabled' -bool FALSE
defaults write com.microsoft.autoupdate2 'StartDaemonOnAppLaunch' -bool FALSE
Thank you for this!The app is here /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
However, deleting it is useless if you still have Microsoft apps installed (Word, Edge or others) because they will require you to install it again.
Here is how I managed to stop it from launching at start-up, from Terminal
Code:sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist Disabled -bool YES sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist RunAtLoad -bool NO sudo chflags schg /Library/LaunchAgents/com.microsoft.update.agent.plist