How to redirect windbg command to a file without echoing the output on the windbg console?
问题 .logopen is not the answer, because it lets the command output to the windbg console. For example, !sosex.dumpgen 2 produces a helluva lot of output, which I do not want to see in the debugger console. Right now I am using the following: .shell -i- -ci "!dumpgen 2" cmd /c more > D:\tmp\dumpgen2.log My problem is that the more command is interactive and requires user input after outputting certain amount of data. This is a huge problem for me. One solution could be running the debugger itself