Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I check what time was the process core dump taken on windows?

I have a full memory dump of a process taken through Task Manager.

Can I determine what the time was on the machine at that moment?

like image 245
mark Avatar asked Jul 15 '15 17:07

mark


People also ask

How do I find dump logs?

Scroll down to Serial Number and tap on it five times. On the number pad that appears, enter *#9900#. Tap Run LOG_DUMP. Once log collection is complete, tap Extract LOG_DUMP.

How do I get crash dump logs?

In Control Panel, select System and Security > System. Select Advanced system settings, and then select the Advanced tab. In the Startup and Recovery area, select Settings. Make sure that Kernel memory dump or Complete memory dump is selected under Writing Debugging Information.


1 Answers

It's displayed in the Command window of WinDbg after you open the dump, as 'Debug session time'.

You can have it printed again with the .time meta-command.

like image 62
gbr Avatar answered Oct 03 '22 17:10

gbr