mirror of
https://github.com/yardenshafir/WinDbg_Scripts
synced 2026-06-08 18:28:57 +00:00
4 lines
293 B
Plaintext
4 lines
293 B
Plaintext
dx @$tmpFile = Debugger.Utility.FileSystem.TempDirectory.OpenFile("log.txt")
|
|
dx @$txtWriter = Debugger.Utility.FileSystem.CreateTextWriter(@$tmpFile)
|
|
ba r4 nt!PsInitialSystemProcess "dx @$txtWriter.WriteLine(@$getsym(@$curstack.Frames[0].Attributes.InstructionOffset)); g"
|
|
dx @$tmpFile.Close() |