Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Change or remove the Crash Reporter dialog box' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Change or remove the Crash Reporter dialog box
Authored by: Tetonne on Jul 25, '05 11:37:48AM

How to do this if I don't want to install Developper's Tools?



[ Reply to This | # ]
10.4: Change or remove the Crash Reporter dialog box
Authored by: chancer on Aug 31, '05 11:14:11AM
The newest version of Onyx will do it. Titanium Software

[ Reply to This | # ]
How to change.
Authored by: jms1 on Aug 31, '05 02:18:18PM
To view the current setting from a command line...
$ defaults read com.apple.CrashReporter
{DialogType = basic; }
To change the setting, use one of these three commands...
$ defaults write com.apple.CrashReporter DialogType basic
$ defaults write com.apple.CrashReporter DialogType developer
$ defaults write com.apple.CrashReporter DialogType server
You can also use the Property List Editor tool (found in /Developer/Applications/Utilities) to edit the file ~/Library/Preferences/com.apple.CrashReporter.plist. Again, change the key to one of the values noted above (basic, developer, or server.)

[ Reply to This | # ]