How to Completely Disable ‘Crash Reporter’ Dialogues on a Mac

Whenever an application unexpectedly quits or freezes on macOS, the operating system instantly launches a background utility called the “Crash Reporter.” This utility intercepts the failure, generates a massive diagnostic log file, and presents a highly intrusive popup dialogue box in the centre of your screen, demanding to know if you want to “Ignore,” “Report,” or “Reopen” the application.

While this is useful for software developers actively debugging their own code, it is an incredibly annoying interruption for average users. If you are running an older, unstable application (or experimental beta software) that frequently crashes in the background, these constant dialogue boxes will rapidly clutter your screen, interrupting your typing and breaking your focus. Because there is nothing the average user can do with a hexadecimal crash log anyway, the popup serves no practical purpose. To ensure your Mac simply allows unstable apps to die silently without constantly nagging you, you must completely disable the Crash Reporter UI.

Disabling Crash Reporter Dialogues via Terminal

Apple does not provide a standard graphical toggle to hide these alerts. You must modify the operating system’s default behavior using the command line.

  1. Open the Terminal application (press Command + Space, type Terminal, and hit Enter).
  2. Paste the following command exactly as written and press Enter:
    defaults write com.apple.CrashReporter DialogType none
  3. The command will execute silently. To guarantee the changes take effect across all background services, you should restart your Mac (or log out of your user account and log back in).

How Your Mac Behaves Now

Once the change is applied, the visual behavior of app crashes fundamentally changes:

  • When an application unexpectedly quits, its window will simply vanish from the screen instantly.
  • No popup dialogue box will appear.
  • Your typing or mouse movements will not be interrupted by a sudden alert.

Note: The operating system will still silently generate and save the diagnostic crash logs to your hard drive (which you can view later in the “Console” app if necessary). This command merely suppresses the annoying visual popup, giving you a cleaner, distraction-free desktop environment even when software fails.

Get the best tech tips delivered straight to your inbox.

Join thousands of readers mastering Apple, Google, Microsoft, and Linux.