Archagon
Archagon

Reputation: 2530

Figuring out how one program launches another program on Windows

I have a Windows program -- a vendor-provided benchmark utility -- that launches an existing game on my system using a set of launch options. I'd like to figure out what those launch options are. Is there any way to detect how the benchmark utility is launching the game?

More generally, is there some tool I can use to detect when and how one process launches another process on Windows?

Upvotes: 1

Views: 38

Answers (1)

bratkartoffel
bratkartoffel

Reputation: 1177

As I was faced with the same problem, I figured out a simple, yet for my needs great solution. I exchanged the called program with a simple custom-written c-program which prints all passed arguments into a logfile.

Upvotes: 2

Related Questions