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


Click here to return to the 'How to change.' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
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 | # ]