Tagged Questions
The process-elevation tag has no wiki summary.
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);
...
2
votes
2answers
561 views
Impersonating in .NET using Process.Start and UAC
I am trying to run programs from another .NET program that requires elevation using the impersonation option of the Process.Start (System.Diagnostics) method. The user for impersonation is a local ...
2
votes
2answers
1k views
Set app to require elevation?
I'm working on the bootstrap application of a new installer for some of our products. So far, I've been relying on two things that I read about somewhere:
Applications whose name contains "setup" or ...
1
vote
2answers
814 views
How to set the process priority in C++
I am working on a program to sort data, and i need to figure out how to set the process to priority 31, which i beleive is the highest process priority in windows. I have done some research, but can't ...
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 ...
0
votes
3answers
702 views
Newly compiled application requires UAC/elevation?
I have a system, I set it up as a normal with UAC, and in my delphi environment I compile my project named ka.exe, I create a installshield project for it.
setup and everything completes ok!
but ...