Start non-elevated process from elevated process [

2019-01-19 17:33发布

问题:

Possible Duplicate:
How to run NOT elevated in Vista (.NET)
How do you de-elevate privileges for a child process

My program running as an elevated process, and starting new processes with Process.Start().

For security reasons, I would like to run those new processes as non-elevated.

How to do that?

回答1:

Take a look at: How to run NOT elevated in Vista (.NET)

The answer is presented at that URL. Also, you may want to read http://go.microsoft.com/fwlink/?LinkId=81232 for why this is not such a good idea...