How to stop an app from launching on Login?

You can stop the item from launching with launchctl disable gui/$UID/bundle-id.

If you don't know the bundle ID, you can find it by typing launchctl list. That will list all processes running under your user, with their PIDs in the first column. So, if you saw this:

$ launchctl list
-   0   com.apple.SafariHistoryServiceAgent
277 0   com.apple.Finder
-   0   com.apple.quicklook
-   0   com.apple.parentalcontrols.check
[…]
189 0   com.example.ExampleDaemon
-   0   com.apple.java.InstallOnDemand

…you could use Activity Monitor to confirm that the unwanted app's PID is 189, which makes its bundle ID com.example.ExampleDaemon. Then:

launchctl disable gui/$UID/com.example.ExampleDaemon

That's it. There is still a record of the login item on disk, just disabled. If you want to purge it, or just want to learn more, read on.


Counterintuitively (but amusingly?), the list is saved here:

/var/db/com.apple.xpc.launchd/disabled.$UID.plist

That file will look something like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>com.example.ExampleDaemon</key>
    <false/>
</dict>
</plist>

Yes, the false means that an app with that bundle id should be launched at startup. After running launchctl disable, the false will change to a true. (As far as I can tell, launchd doesn't write these files right away, so you may not see this until you reboot.) You can see the disabled items with this command:

launchctl print-disabled gui/$UID

There's also some extra info about each login item stored here, but removing it won't stop the item from launching:

/var/db/com.apple.xpc.launchd/loginitems.$UID.plist

Any changes you make while the system is running will be overwritten when you shut down/restart. So, as far as I can tell, the only way to completely remove an item from disabled.$UID.plist is to reboot in single user mode and make the edits there. Even without having run launchctl disable, removing a key/false pair from this file stops the app from launching at login. I'm not going to include instructions for editing these files in single user mode in this answer.


You should be able to stop and remove the helper from launchd from the command line. Open up Terminal.app and do

launchctl list | grep -i com.your.helper

Look once you've located the job_label in the third column, you can run

sudo launchctl stop com.your.helper
sudo launchctl remove com.your.helper

The manual for launchctl can be found here