Quick cheatsheet to know where to look when you need to rid off some startup item, app or service.
Applications that run on Startup
Property list (plist) items running on startup
1 | /System/Library/LaunchDaemons |
Applications that launch on User Login
You should be able to add/remove most applications from your user account. Go to System preferences -> Users and groups -> Select user -> Login Items.
By console you can check in the following folders:
1 | /System/Library/LaunchAgents/ |
Applications that run on a set schedule
Check your crontab with crontab -l
Check Kernel Extensions
In the command line:
Check Login and Logout Hooks
for Login:
1 | defaults read com.apple.loginwindow LoginHook |
for Logout:
1 | defaults read com.apple.loginwindow LogoutHook |
or see both with:
1 | /usr/libexec/PlistBuddy -c Print |
source: