Created
December 1, 2018 17:08
-
-
Save nathancrank/56e7b27bf4231a2016c704d03440201e to your computer and use it in GitHub Desktop.
Disable/Enable Crash Reporter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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