====== Completely disable macOS CrashReport ======
While you can [[blog:odborny:2015-07-31-disable_os_x_crashreporter_dialog_after_application_force-quit]], this won't prevent CrashReport process from actually starting up after application crash to gather the information and create log.
This can from seconds to dozens of minutes depending on size of the process which crashed.
===== Preventing CrashReport process from starting up =====
To disable crash reporting process, write into Terminal:
launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
To re-enable crash reporting process, write into Terminal:
launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
Note: There are several sources ([[https://ss64.com/mac/reportcrash.html|1]], [[https://gist.github.com/SteveBenner/aca9768f860078d7e400|2]], [[https://community.vuo.org/t/is-it-possible-to-disable-the-crash-report-dialog/7010/6|3]], [[https://www.reddit.com/r/MacOS/comments/xsojzh/is_there_a_terminal_command_to_disable/|4]]) which helped me to figure this out. You might want to read them too.
~~socialite~~
{{tag>os-x fresh-install CrashReport}}
===== Comments =====
~~DISQUS~~