How to run another app as administrator on Windows

2019-01-26 11:37发布

I used the application manifest file as described here to have a part of my application running with elevated privileges (which it needs).
So when needed, the main program just invokes a small assembly using Process.Start which then handles the task for which admin rights are required.

However, how can I do the same thing on Windows XP?
It seems XP just ignores this manifest and runs the small assembly in the current user context.

3条回答
2楼-- · 2019-01-26 12:17

Windows XP does not have UAC.

You need to call Process.Start with the login credentials of a user with administrative priviliges.

查看更多
smile是对你的礼貌
3楼-- · 2019-01-26 12:26

The following code from here does just what I need:

ProcessStartInfo processStartInfo = new ProcessStartInfo("path", "args");
processStartInfo.Verb = "runas";

using (Process process = new Process())
{
   process.StartInfo = processStartInfo;
   process.Start();
   process.WaitForExit();
}

So in fact you need to set "runas" on ProcessStartInfo.Verb. With the attached manifest this code now works fine on Windows XP, Vista and 7.

Update:
See also this answer to a similar question. This is basically the same code, just using arguments as well.

查看更多
乱世女痞
4楼-- · 2019-01-26 12:34

You can use the runas command.

查看更多
登录 后发表回答