JustPaste.it

MacAppBox

MacAppBox's LaunchServices Lockout

Downloaded MacAppBox to declutter my Applications folder on my M2 MacBook Pro running macOS Sequoia 15.3 — launcher utility for grouping apps, quick workflows, and hiding unused tools. Dragged from DMG to Applications, double-clicked... and instant crash. Dock icon bounced once, process flashed in Activity Monitor for 70ms, then securityd killed it silently. No "damaged" dialog, pure stealth rejection.


Gatekeeper Gambits That Flopped

Right-click > Open triggered the override — Sequoia prompted "unidentified developer," confirmed, watched it die again. Standard escalation: System Settings > Privacy & Security, forced crash to surface "Allow Anyway." Authenticated, relaunched. Dead. xattr -cr /Applications/MacAppBox.app from Terminal? No dice. Fresh DMG mount, new copy — identical fate. Sequoia's LaunchServices cached the failure, blocking re-registration while nested scanners tripped sandbox init.

Found this page mid-debug — spelled out how Sequoia bricks launcher tools with stale quarantine deep in helper bundles.


Cache Purge + Bundle Cleanse

Console revealed LSOpenFromURLSpec failed tied to quarantine validation. Fix demanded LaunchServices reset first:

 

text
lsregister -kill -r -domain local -domain system -domain user

Waited 45 seconds for rebuild, then DMG-level purge:

 

text
xattr -dr com.apple.quarantine /Volumes/MacAppBox/MacAppBox.app

Moved to /Applications, right-click Open — final override worked. Verified: codesign --verify --deep --strict /Applications/MacAppBox.app passed "valid on disk." Apple's Gatekeeper guide debunks silent kills, notarization docs detail nested binary checks. No App Store listing (apps.apple.com search).


Launcher Liberation

Post-rescue, MacAppBox grouped 50 apps flawlessly — workflow tabs instant, unused icons hidden, external drive scanning smooth. Quick refresh: killall Dock if grouping lags.

Launcher checklist:

  • lsregister kill first.

  • Recursive xattr from DMG volume.

  • Right-click Open + codesign verify.

  • Test workflow tab switch.

Sequoia hoards launch failures like grudges. MacAppBox just needed memory wipe — now it's Dock declutter dream. Ironic launcher that wouldn't launch without launch cache surgery first.