Tagged Questions
11
votes
4answers
16k views
Elevating process privilege programatically?
I'm trying to install a service using InstallUtil.exe but invoked through Process.Start. Here's the code:
ProcessStartInfo startInfo = new ProcessStartInfo (m_strInstallUtil, strExePath);
...
0
votes
2answers
131 views
elevation demand not working for method in winforms app
I have a winforms app that installs other apps in a loop. This works properly on an administrator account in Windows 7, but I have serious issues in a standard account - the app requires elevation in ...
0
votes
1answer
33 views
Running a loop of processes that require admin rights
I have an application that does a loop which starts some processes programmatically one by one. My app itself runs under a standard user, but I need to run only those processes as admin so I can ...