MacAppBox
Hey Matt,
Yesterday I battled MacAppBox ( on my M3 Mac Studio running macOS Sequoia 15.3, and figured out exactly why it kept crashing on launch like clockwork. It's this neat organizer for grouping launchers and decluttering the Dock — perfect for when /Applications becomes a digital junkyard — but dragging from DMG to Applications led straight to failure mode. Icon would bounce in the Dock briefly, process would spike in Activity Monitor for 100ms or so, then securityd would kill it dead. No error popup, no fanfare, just gone every single time.
Started with the standard Gatekeeper playbook to knock out easy fixes. Right-clicked the app and chose Open to force the override dialog — macOS hit me with the "unidentified developer" warning, clicked through, watched the same bounce-and-vanish. Jumped into System Settings > Privacy & Security, tried launching again to trigger "Allow Anyway" at the bottom. Found it after the fail, authenticated, gave Spotlight a shot. Still toast. Emptied Trash completely, cleared ~/Library/Caches/com.apple.launchservices and ~/Library/Preferences for good measure, downloaded fresh from the same spot. Identical crash pattern — felt like Sequoia was gaslighting me.
That's when it sank in. LaunchServices was caching the bad state from those initial failures, refusing to re-register the app, and MacAppBox's internal scanners were tripping over quarantine attributes buried deep in the bundle structure. Not a damaged binary — just macOS holding a grudge and blocking retries.
I found this page useful while sorting my tabs — this page — flagged how Sequoia specifically hammers organizer utilities with persistent cache issues.
The winning sequence was flushing LaunchServices cache upfront, then hitting quarantine recursively. Terminal first:
text
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
Let it rebuild a full minute, cd'd to ~/Downloads (don't install yet):
text
xattr -dr com.apple.quarantine MacAppBox.app
Dragged to /Applications, right-click Open — final "are you sure?" prompt appeared, confirmed, and it fired up clean. Double-checked everything:
text
codesign --verify --deep --strict /Applications/MacAppBox.app
Perfect: "valid on disk and satisfies its Designated Requirement." Apple's got the full rundown in their unidentified developer guide — don't trust "silent death" as corruption. The notarization technicalities are at developer.apple.com. App Store search empty too (apps.apple.com here).
Running smooth as silk now: sorted my dev tools into custom grids, hides betas automatically, low footprint even scanning externals. One quirk — it balked at a Rosetta-wrapped app until I force-quit the parent process, but rescanning fixed it quick.
Here's the no-fuss checklist I'll pin somewhere:
lsregister kill dumps LaunchServices cache first.
Deep xattr -dr from ~/Downloads pre-move.
Right-click Open post-copy + codesign verify.
Reboot if mixed Rosetta/ARM grouping lags.
MacAppBox transformed Dock chaos into sanity overnight. Sequoia's paranoid but predictable once you reset the scoreboard. Give it a rip if your Applications folder's out of control.