Skip to content

Instantly share code, notes, and snippets.

@garrettjoecox
Created September 23, 2021 15:04
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 garrettjoecox/657474660548258313fa1c249104d6a2 to your computer and use it in GitHub Desktop.
Save garrettjoecox/657474660548258313fa1c249104d6a2 to your computer and use it in GitHub Desktop.
Actually remove all startup items on MacOS
  • Remove all login items at System Preferences > Users & Groups > Login Items
  • Remove local startup items with the following:
sudo rm -rf ~/Library/LaunchAgents/*
sudo rm -rf ~/Library/LaunchDaemons/*
sudo rm -rf ~/Library/StartupItems/*
  • Remove global startup items with the following:
sudo rm -rf /Library/LaunchAgents/*
sudo rm -rf /Library/LaunchDaemons/*
sudo rm -rf /Library/StartupItems/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment