I tried Microsoft Edge, but It installed "Microsoft AutoUpdate" app. Its very annoying that Microsoft installs crap I didn't want on my machine.
-
https://superuser.com/questions/1544338/turn-off-microsoft-apps-microsoft-autoupdate-app-on-a-mac – pkamb Sep 21 '22 at 21:53
5 Answers
I finally managed to find the Microsoft AutoUpdate.
You need to go to /Library directory, at the root of your HD, and search "Microsoft autoupdate" on that location (which finds /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app on my system.
Then just move it to the trash.
- 8,791
- 871
-
There are quite a few places this can hide. Sometimes you need to remove office apps that will reinstall it when they run or narrow down which version you have – bmike Jan 29 '22 at 15:24
-
1
-
15You just download the new app when needed or check for updates within the top-dropdown menu as a normal user. You don't need Microsoft spying on you to keep your stuff up-to-date – Jaekov Segovia Mar 25 '22 at 20:30
-
2another way: https://osxdaily.com/2019/07/20/how-delete-microsoft-autoupdate-mac/ – Erkam KUCET Aug 11 '22 at 19:56
-
When you navigate to the directory you want. type
open .and it will display the Finder. – Yzmir Ramirez Aug 30 '22 at 18:57 -
If you are a cli person, this should suffice:
sudo rm -rf "/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app"
sudo rm -rf "/Library/LaunchDaemons/com.microsoft.autoupdate.helper.plist"
sudo rm -rf "/Library/LaunchAgents/com.microsoft.update.agent.plist"
sudo rm -rf "/Library/PrivilegedHelperTools/com.microsoft.autoupdate.helper"
- 363
-
1I usually recommend to just use
sudo rm -r /...so you get an error message if something goes wrong. – nohillside May 17 '23 at 13:04
In case you're using macOS Ventura you need to delete:
- The Microsoft AutoUpdate.app app located in
/Library/Application Support/Microsoft/MAU2.0 - The
com.microsoft.update.agent.plistagent located in/Library/LaunchAgents - The
com.microsoft.autoupdate.helper.plistdaemon located in/Library/LaunchDaemons
To delete them from Terminal, run
sudo rm -rf /Library/Application\ Support/Microsoft/MAU2.0
sudo rm /Library/LaunchAgents/com.microsoft.update.agent.plist
sudo rm /Library/LaunchDaemons/com.microsoft.autoupdate.helper.plist
- 100,768
-
Basically the same as answered by Mehmet. Only valuable addition is the linked article. – hc_dev Jul 27 '23 at 08:27
To clean uninstall it:
- Install the great free and small app AppCleaner
- Open Finder, press Cmd Shift G, and paste
/Library/Application Support/Microsoft/MAU2.0/ - You will find "Microsoft AutoUpdate.app", drag it to
AppCleaner - Click Remove
There may be some unchecked boxes I suggest to not check (because they may relate to other Microsoft apps).
For more experienced users, visit these three locations using Finder's Cmd Shift G shortcut:
/Library/LaunchAgents, dragcom.microsoft.update.agent.plistto the Trash/Library/LaunchDaemons, dragcom.microsoft.autoupdate.helper.plistto the Trash/Library/PrivilegedHelperTools, dragcom.microsoft.autoupdate.helper.plistto the Trash
- 100,768
- 64
I ended up with this. Run it as a single line in Terminal app.
Prevent AutoUpdater to be re-installed:
for F in /Library/{PrivilegedHelperTools,Launch{Agents,Daemons}}/com.microsoft.*update*.plist /Library/Application\ Support/Microsoft/MAU* ~/Library/Microsoft/*Updater; do echo 'Processing '"${F}"'..'; sudo rm -rf "${F}" && sudo mkdir "${F}" && sudo chflags uchg "${F}"; done
In case if you wish to revert that later and allow AutoUpdater:
for F in /Library/{PrivilegedHelperTools,Launch{Agents,Daemons}}/com.microsoft.*update*.plist /Library/Application\ Support/Microsoft/MAU* ~/Library/Microsoft/*Updater; do echo 'Processing '"${F}"'..'; sudo rm -rf "${F}"; done
It is removing AutoUpdater folders, creating empty ones and locking them via chflags uchg command, Microsoft apps can't handle that.
- 139


