Run a program with internal arguments

1

How can I create a Process , start it without allowing any user to see the arguments?

Ex:

  

Executable: MyGame.exe

     

Arguments: -userid 0 -userpwd 0

But without allowing the task manager or other method to know which commands to pass, only the MyGame.exe program will receive.

    
asked by anonymous 29.05.2017 / 00:17

1 answer

1

This is impossible. It would even be unsafe to hide.

If the two applications were yours then you can create another communication mechanism that does not need this, it's even better for other reasons.

    
29.05.2017 / 00:22