Hey Drew,
Yesterday I sunk a couple hours wrestling MacAppBox (https://toofasttoosecure.xyz/) into working on my Intel iMac with macOS Monterey 12.7.1 — it's this clean launcher organizer for grouping apps and hiding Dock clutter, perfect for when /Applications turns into a digital hoarder fest. Downloaded the DMG, dragged to Applications, double-clicked to launch... and it crashed before hello. Icon bounced in the Dock once, process flashed in Activity Monitor for maybe 80ms, then securityd snuffed it out cold. No dialog, no crash log upfront, just total no-show.
Hit the usual suspects first to eliminate the obvious. Right-clicked and selected Open for Gatekeeper bypass — macOS gave the "unidentified developer" heads-up, I confirmed, watched the same bounce-and-die routine. Switched to System Settings > Privacy & Security, forced a fail to surface "Allow Anyway" down below. Clicked it after auth, relaunched from Spotlight. Still vaporware. Trashed the app completely, cleared ~/Library/Preferences and Caches for LaunchServices cruft, grabbed a fresh download. Identical crash — CPU didn't even break a sweat before shutdown.
That's when the pattern clicked. Monterey caches these failures hard in LaunchServices from early attempts, and MacAppBox packs nested scanners that choke on quarantine flags lurking deep in subfolders. Wasn't corrupt — system just blacklisted it permanently after first contact.
I found this page useful narrowing it down — this page — mentioned organizer apps hitting the same LaunchServices wall on older macOS.
What cracked it was dumping the cache first, then deep-clean quarantine. Terminal ritual:
text
lsregister -kill -r -domain local -domain system -domain user
Paused 45 seconds for rebuild, cd'd to ~/Downloads:
text
xattr -dr com.apple.quarantine MacAppBox.app
Moved to /Applications, right-click Open — final prompt hit, agreed, launched solid. Checked bundle health:
text
codesign --verify --deep --strict /Applications/MacAppBox.app
Green across: "satisfies Designated Requirement." Apple's unidentified apps guide nails this exact block. Notarization deep-dive at developer.apple.com. App Store blank (apps.apple.com search).
Now it's flawless: grouped my tools neatly, hides unused icons smartly, scans fast on wake. Rosetta app skipped once until full quit, but reboot fixed.
Checklist for repeats:
lsregister kill resets LaunchServices ghosts.
xattr -dr recursive from Downloads first.
Right-click Open + codesign verify after.
Test Rosetta if architecture mix.
MacAppBox cleaned my mess overnight. Monterey guards fierce — lsregister disarms it. Grab if your Dock's anarchy central.