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?

link|improve this question

42% accept rate
I also asked and this question myself and found a solution that worked for me. stackoverflow.com/questions/1173630/… – Davy8 Oct 13 '10 at 20:48
feedback

1 Answer

Take a look at: http://stackoverflow.com/questions/196949/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...

link|improve this answer
I like this solution, it actually works. the only problem is that it working only on EXE files. What should I do if I want to start .txt file? (it should implicitly start notepad non-elevated) – DxCK Oct 13 '10 at 22:16
One thing you can do is to find the default .exe associated in the registry with the .txt extension and then start that .exe passing it the .txt file. I don't know of any other way to get the behavior you desire (with elevation suspended). You can check my answer in stackoverflow.com/questions/3924753/… to see how to get the application associated with an extension. – Michael Goldshteyn Oct 13 '10 at 23:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.