Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start non-elevated process from elevated process [duplicate]

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?

like image 991
DxCK Avatar asked Oct 13 '10 20:10

DxCK


1 Answers

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...

like image 161
Michael Goldshteyn Avatar answered Sep 27 '22 16:09

Michael Goldshteyn