user226722
user226722

Reputation:

viewing c# console app arguments

I have a console app (written in c#) that is passed various arguments from the command line by an external application (an InstallShield exe). Without adding code into the console app or InstallShield exe to log the value of arguments is there any way to see the value of the arguments passed to the console app? (perhaps via some sort of process monitoring app)

Any suggestions would be very helpful!

Cheers

Tim

Upvotes: 2

Views: 363

Answers (1)

Chris W. Rea
Chris W. Rea

Reputation: 5501

The excellent and free Sysinternals Process Explorer will do what you want. Highlight the process, right-click, choose Properties, and on the dialog that opens you'll see a "Command line:" section that lists the arguments passed to your executable:

Process Explorer's process dialog
(source: ask-leo.com)

(Image source: Process Explorer - A Free Powerful Replacement for Windows Task Manager)

Upvotes: 7

Related Questions