Search Results

5
votes
4answers
583 views

win32 GUI app that writes usage text to stdout when invoked as “app.exe --help”

How do I create a windows application that does the following: it's a regular GUI app when invoked with no command line arguments specifying the optional "--help" command lin …
2
votes
9answers
528 views

How to capture output of “pnputil.exe -e”

How do I capture the output of "%windir%/system32/pnputil.exe -e"? (assume windows vista 32-bit) Bonus for technical explanation of why the app normally writes output to the cmd shell, but …
0
votes

How to capture output of “pnputil.exe -e”

As alluded to in the question, but not clearly stated, "pnputil -e 2> c:\foo.txt" does not have the intended result either. This one directs nothing into the file but it does send the output to th …
0
votes

How to capture output of “pnputil.exe -e”

I think I found the technical answer for why it behaves this way. The MSDN page for WriteConsole says that redirecting standard output to a file causes WriteConsole to fail and that WriteFile shou …
0
votes

How to capture output of “pnputil.exe -e”

@[Peter Ritchie]: Piping to clip has the effect of clearing the clipboard and writing nothing to the console. Good try. …
3
votes

What is your favourite Windbg tip/trick?

The "tip" I use most often is one that will save you from having to touch that pesky mouse so often: Alt-1 Alt-1 will place focus into the command window so that you can actually type a co …