Skip to content

Instantly share code, notes, and snippets.

@nathancrank
Created December 1, 2018 17:08
Show Gist options
  • Save nathancrank/56e7b27bf4231a2016c704d03440201e to your computer and use it in GitHub Desktop.
Save nathancrank/56e7b27bf4231a2016c704d03440201e to your computer and use it in GitHub Desktop.
Disable/Enable Crash Reporter
// Disable
launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
// Enable
launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment