videobruce 0 Posted March 7, 2002 I look through event viewer to find error logs that come up in the O/S (not other programs) but can't find them in event viewer. Where are they???? 2k w/SP2 Share this post Link to post
kgeissler 0 Posted March 8, 2002 Dr. Watson logs are located in c:\documents and settings\All Users\Documents\DrWatson. Is that what you are talking about? Share this post Link to post
videobruce 0 Posted March 8, 2002 No, nothing to do with Dr Watson. Example: I try to open add/remove programs and get a error message that says it is going to create a log. mshta.exe error Share this post Link to post
kgeissler 0 Posted March 8, 2002 Try this link: http://www.jsiinc.com/SUBH/tip3800/rh3860.htm Share this post Link to post
videobruce 0 Posted March 9, 2002 Don't want to do that, that is the 'easy answer way out'/ 'hard to do way out'! I'm installing the O/S in my other bootable drive and will go from there. The drive I tried to image from gets this error when I ghost the drive and image it in this 2nd drive. It works ok as installed. Only when I transfer it (ghost) the problem appears. Share this post Link to post
kgeissler 0 Posted March 9, 2002 Maybe a long shot, but you could try reinstalling SP2. Share this post Link to post
insaNity 0 Posted March 21, 2002 XP's main logs are in cpanel/admin tools/even viewer however, I don't think it will help in this case. You could try re-installing/uninstalling the program. Share this post Link to post
videobruce 0 Posted March 24, 2002 As I said these are not in Event Viewer. There are more than one program that I have gotten errors from. All they say is that the program has generated errors and will be shut down and a error log was created. Share this post Link to post
insaNity 0 Posted March 24, 2002 ahh, I now know what you are talking about. You can look in control panel/system/advanced-startup & recovery-settings/system failure. They are set to %SystemRoot%\Minidump by default which is C:\WINDOWS\Minidump by default. It is most likely you are going to make nothing of this info, however. Also, this might vary a bit, as I'm using XP. Share this post Link to post
videobruce 0 Posted March 24, 2002 I can't find the 'minidump' file! 2k shows a 'minidump' file listed as the palce where the entry goes but I can't find it doing a search. Share this post Link to post
zen69x 0 Posted April 1, 2002 When a program crashes and says it's going to create an error log, it's Dr. Watson that will do this. So you should check out what kgeissler said before. Unless of course, you have some other program registered to do your debugging? Share this post Link to post
pbuckne 0 Posted April 11, 2002 Also, if you are hitting cancel, instead of OK, you probably won't get a drwatson.log file... hope this helps... Share this post Link to post
Sampson 0 Posted April 11, 2002 If the message reads "... has generated errors ... creating log file", click on Run and type: drwtsn32 . This will bring up any logs of programs that have created such a message. Click on any of those listed, presuming you have not cleared them, and it will give you the pid nnumber which is the Pid number in your Task Manager indicating which program did the nasty deed. Then, you will see your computer's info and then a whole bunch of assembly code that will eventually tell you what offending procedure caused the problem. Good luck because while you might be able to read assembly, what it is referring to is so arcane, only the engineer of the offending software might have to debug it to tell you what happened. Just to give you an example, I had a program that gave me that message. The fault was: mov byte ptr [eax+edi],0x0 ds:00000006=??. What this amounted to was that the program had called up a particular font did a checksum on it to see if it was scalable within the programs parameters and when it wasn't, the program had no routine to handle a default, croaked and left the message "...has generated ... creating log..." Share this post Link to post
andrewz 0 Posted April 20, 2002 The drwatson log file is now drwatson.dat. the stuff that's in it is pretty useless unless you have a debugger and are debugging the application that is crashing. Bring up drwatson in the Help command and it will tell you how to change an entry in the registry to keep drwatson from catching the app errors. They will be caught by the default system handler. You will still have crashes but they will be less annoying. - AndrweZ Share this post Link to post
videobruce 0 Posted April 21, 2002 Nice reply, thank you..........I will try that next time. Share this post Link to post