Created
May 18, 2023 17:35
-
-
Save AbeEstrada/1ac05a0816795bf68c0e63a6c3710e48 to your computer and use it in GitHub Desktop.
Disable Google Autoupdater on macOS
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
launchctl unload -w ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
launchctl unload -w ~/Library/LaunchAgents/com.google.keystone.agent.plist | |
echo > ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
echo > ~/Library/LaunchAgents/com.google.keystone.agent.plist | |
chmod 644 ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
chmod 644 ~/Library/LaunchAgents/com.google.keystone.agent.plist | |
sudo chown root ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
sudo chown root ~/Library/LaunchAgents/com.google.keystone.agent.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://caiustheory.com/disable-google-autoupdater-on-macos/