How to disable and enable the Crash Reporter on MacOS
The Crash Reporter can consume quite some system resources if one process is out of bounds. Here is how you can disable it.
1 2 | launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist |
Here is how you re-enable it:
1 2 | launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist |
Comments
So empty here ... leave a comment!