Bloatware, login items & agents

Mac Running Slow at Startup? 9 Bloatware Login Items to Disable First (2026)

If your Mac slow startup login items problem has been dragging out your mornings — staring at the spinning cursor for thirty seconds before you can open a browser — you are not alone. Every time you install an app, it frequently sneaks a background process into your login queue. Over months and years, that queue grows into a parade of updaters, crash reporters, sync daemons, and telemetry agents that all launch before you can do a single thing. This guide identifies the nine worst offenders, shows exactly where to find them in macOS Sequoia and Tahoe, and explains how to evict them safely.

Why Login Items Make Your Mac Start Slowly

macOS boots your user session and then, before you see a responsive desktop, fires off every process registered in your login items list. Each item competes for CPU time, disk I/O, and RAM at the exact moment the system is most resource-constrained. On an Apple Silicon Mac with fast NVMe storage the window is short but still noticeable; on older Intel machines with a spinning hard drive or even a SATA SSD, the cumulative delay can stretch well past a minute.

Login items live in several places:

  • System Settings → General → Login Items & Extensions (the official list)
  • ~/Library/LaunchAgents/ — per-user background agents
  • /Library/LaunchAgents/ — system-wide agents (installed by apps with admin rights)
  • /Library/LaunchDaemons/ — root-level daemons that start even before login

The System Settings panel only shows a subset. The LaunchAgent folders are where the real culprits hide.

The 9 Bloatware Login Items to Disable First

The entries below appear on thousands of Macs and collectively add anywhere from five to forty seconds to startup time. None of them are required for the core app to work — they exist to serve the developer, not you.

1. Adobe Creative Cloud Launcher

Adobe registers multiple agents: com.adobe.AdobeCreativeCloud.plist and com.adobe.ccxprocess.plist live in ~/Library/LaunchAgents/. The main app icon also appears in Login Items under System Settings. You can disable the System Settings entry safely; Creative Cloud itself still opens on demand.

2. Dropbox / OneDrive / Google Drive Updaters

Cloud storage apps register both a sync daemon and a separate updater daemon. The updater (com.dropbox.DropboxUpdater.plist, for example) phones home to check for updates even when Dropbox is not actively syncing. Disable the updater entry; leave the main sync agent if you need live syncing.

3. Microsoft AutoUpdate (MAU)

Found at ~/Library/LaunchAgents/com.microsoft.update.agent.plist, this agent wakes every few hours and at login to check for Office updates. You can trigger updates manually from any Office app under Help → Check for Updates and then disable this agent without losing any Office functionality.

4. Spotify Helper

Spotify installs a login item so it can pre-warm its renderer process. On Apple Silicon machines this is less painful, but on Intel it measurably delays the dock appearing. Remove it via System Settings → Login Items; Spotify opens in under two seconds when you click its icon anyway.

5. iTerm2 / Terminal SSH Agents

Third-party terminal apps sometimes register SSH key-chain helpers at ~/Library/LaunchAgents/com.googlecode.iterm2.plist. Unless you need persistent SSH agent forwarding from the moment your Mac wakes, this can be removed.

6. Docker Desktop

Docker's VM helper is one of the heaviest login items: it can allocate several gigabytes of RAM and pins a CPU core for ten or more seconds at boot. The plist lives at ~/Library/LaunchAgents/com.docker.helper.plist. Disable it and start Docker manually the few times per week you need containers.

7. Zoom / Webex / Teams Meeting Helpers

Video conferencing apps register "click-to-join" URL handlers that stay resident at login. Zoom's is visible in System Settings; Webex also writes to /Library/LaunchAgents/. Disabling these does not prevent you from joining meetings — clicking a link still launches the app, just slightly slower than an already-running process.

8. JetBrains Toolbox

JetBrains Toolbox auto-starts to keep your IDEs up to date. Its agent is registered in System Settings under Login Items with the display name "JetBrains Toolbox". Removing it means you manage IDE updates by opening Toolbox manually, which for most developers is perfectly fine.

9. Bartender / Menu Bar Extras

Third-party menu bar managers and their companion helpers are often forgotten because they feel like part of the UI. But each one is a separate login item. Audit every menu-bar icon and ask yourself which ones you genuinely use daily; remove the rest from System Settings.

How to Disable Login Items — Step-by-Step

  1. Open System Settings (the gear icon in your Dock or Apple menu).
  2. Click General in the left sidebar, then Login Items & Extensions.
  3. In the top section labelled Open at Login, select any item you want to remove and click the minus (–) button below the list.
  4. For items not listed there, open Finder, press Cmd + Shift + G, and navigate to ~/Library/LaunchAgents/.
  5. Identify the offending .plist file by its reverse-domain name (e.g. com.adobe.ccxprocess.plist).
  6. Move the file to your Desktop (do not delete it yet — keep it as a backup).
  7. Run launchctl unload ~/Library/LaunchAgents/com.example.agent.plist in Terminal before moving, or simply reboot. macOS will no longer load the agent on next login.
  8. Restart your Mac and measure the difference.

If you want to re-enable an agent later, move its plist back to ~/Library/LaunchAgents/ and run launchctl load ~/Library/LaunchAgents/com.example.agent.plist.

Login Item Impact at a Glance

The table below shows typical RAM and startup-delay footprints measured on a 2023 MacBook Pro M3 Pro running macOS Sequoia 15.5. Your numbers will vary, but the relative rankings hold across hardware generations.

Login Item Typical RAM at Login Estimated Startup Delay Safe to Disable?
Docker Desktop Helper 1.5 – 3 GB 8 – 15 s Yes — launch manually
Adobe Creative Cloud 200 – 400 MB 3 – 6 s Yes — CC still opens on click
Microsoft AutoUpdate 50 – 100 MB 2 – 4 s Yes — update from inside app
Dropbox Updater 40 – 80 MB 1 – 3 s Yes — keep sync daemon if needed
Zoom Meeting Helper 60 – 120 MB 1 – 2 s Yes — URL handler still works
JetBrains Toolbox 80 – 150 MB 1 – 2 s Yes — manage updates manually
Spotify Helper 100 – 200 MB 1 – 2 s Yes — opens fast on demand
Menu Bar Extras (each) 20 – 60 MB 0.5 – 1 s Depends — audit case by case
iTerm2 SSH Agent 10 – 30 MB 0.5 – 1 s Yes — unless you rely on it

What About LaunchDaemons? Should You Touch Them?

LaunchDaemons in /Library/LaunchDaemons/ run as root and start before your user session. They are harder to audit safely. In general, leave Apple's own daemons alone. For third-party ones — common culprits include printer drivers, VPN tools, and remote-access helpers — only disable them if you know exactly what the app is and no longer use it. A tool like Crumb can audit all of these at once and show what is safe to remove before you touch anything.

If you want to learn more about what is consuming space and background resources on your machine, the article on what is taking up space on your Mac covers the full picture beyond just login items.

Other Quick Wins After Clearing Login Items

Once you have trimmed your login queue, a few more steps compound the speed gain:

  • Clear user caches: Open Finder, press Cmd + Shift + G, go to ~/Library/Caches/, and move the contents of any folder whose parent app you no longer use to Trash. See the guide on how to clear system cache on Mac for a full walkthrough.
  • Remove unneeded kernel extensions: Check System Settings → Privacy & Security → Extensions for any extension from apps you deleted.
  • Audit startup disk space: macOS pages memory to disk; a startup volume with less than 15 GB free will slow everything down, not just login. Remove large, unused app caches and downloads.
  • Reset NVRAM on Intel Macs: Hold Option + Cmd + P + R at boot for 20 seconds if startup problems persist after cleaning up login items.

How Long Will the Improvement Last?

Unfortunately, app updates frequently re-register their login agents. Adobe Creative Cloud is a repeat offender — it will sometimes silently re-add its launcher after a major update. Build a habit of checking System Settings → Login Items every few months, especially after large app updates, to prevent the list from creeping back. Keeping a note of which items you deliberately removed makes it easy to spot re-additions at a glance.

Reclaim your disk in one click

Crumb audits your whole Mac, tells you what's safe to delete, and frees the space in seconds — private, local, and Apple-notarized.

Download Crumb for macOS

Frequently asked questions

Is it safe to disable login items on a Mac?
For the items listed in this guide — updaters, crash reporters, and helper daemons — yes, it is safe. Disabling them does not uninstall the parent app or prevent it from opening; it just stops the background process from loading automatically at login. If in doubt, move the plist to your Desktop rather than deleting it so you can restore it easily.
Where exactly are login items stored on macOS?
The main list is in System Settings → General → Login Items & Extensions. Additional background agents live in ~/Library/LaunchAgents/ (per-user) and /Library/LaunchAgents/ (system-wide). LaunchDaemons in /Library/LaunchDaemons/ run at boot as root and are a separate category.
Will disabling Dropbox or Google Drive login items stop my files from syncing?
Only if you disable the main sync daemon, not just the updater. Disable the entry labelled something like 'Dropbox Updater' and leave the main Dropbox or Google Drive entry if you want continuous background sync. The apps themselves clarify which item is the updater versus the sync engine in their names.
How much faster will my Mac start after removing these login items?
Results vary by machine and how many items you remove, but users with five or more heavyweight login items — especially Docker — routinely report shaving 15 to 30 seconds off startup time. Intel Macs with SATA SSDs tend to see the largest gains; Apple Silicon M-series Macs see modest but still noticeable improvements.
Why do login items come back after I remove them?
Some apps, particularly Adobe Creative Cloud, re-register their login agents as part of an automatic update. After any major app update, it is worth revisiting System Settings → Login Items to check whether previously removed entries have been restored without your knowledge.