How to run NOT elevated in Vista (.NET)
I have an application that I have to run as Administrator. One small part of that application is to start other applications with Process.Start The started applications will also be run as administrators, but I'd rather see them run as the 'normal' user. How do I accomplish that? /johan/ The WinSafer API's allow a process to be launched as a limited, normal, or elevated user. Sample Usage: CreateSaferProcess(@"calc.exe", "", SaferLevel.NormalUser); Source code: //http://odetocode.com/Blogs/scott/archive/2004/10/28/602.aspx public static void CreateSaferProcess(String fileName, String arguments