10

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?

Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
mark
  • 59,016
  • 79
  • 296
  • 580

1 Answers1

15

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.

Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
gbr
  • 1,264
  • 8
  • 27
  • note: the time is based on the machine doing the debugging. If the dump is from another time zone you need to use the -h parameter. – GBrookman Feb 02 '21 at 11:58