我正在尝试以编程方式从使用C#(.net 4.0)编写的帮助程序应用程序中重新启动服务但是如果我在右键单击并执行“以管理员身份运行”时双击运行EXE,则会出现权限违规的工作原理。
但为什么我需要这个用户是本地管理员?!
我希望应用程序正常运行,并且只有在用户单击按钮重新启动服务时才请求管理员权限。可以这样做吗?
解决方案需要在xp,vista和windows 7上运行。
我正在使用http://www.csharp-examples.net/restart-windows-service/
中的代码public static void RestartService(string serviceName, int timeoutMilliseconds)
{
ServiceController service = new ServiceController(serviceName);
try
{
int millisec1 = Environment.TickCount;
TimeSpan timeout = TimeSpan.FromMilliseconds(timeoutMilliseconds);
service.Stop();
service.WaitForStatus(ServiceControllerStatus.Stopped, timeout);
// count the rest of the timeout
int millisec2 = Environment.TickCount;
timeout = TimeSpan.FromMilliseconds(timeoutMilliseconds - (millisec2-millisec1));
service.Start();
service.WaitForStatus(ServiceControllerStatus.Running, timeout);
}
catch
{
// ...
}
}
答案 0 :(得分:5)
制作一个像这样的新控制台应用项目:
public class RunService
{
static int Main()(string[] args)
{
//TODO read serviceName and timeoutMilliseconds from args
ServiceController service = new ServiceController(serviceName);
try
{
int millisec1 = Environment.TickCount;
TimeSpan timeout = TimeSpan.FromMilliseconds(timeoutMilliseconds);
service.Stop();
service.WaitForStatus(ServiceControllerStatus.Stopped, timeout);
// count the rest of the timeout
int millisec2 = Environment.TickCount;
timeout = TimeSpan.FromMilliseconds(timeoutMilliseconds - (millisec2-millisec1)); service.Start();
service.WaitForStatus(ServiceControllerStatus.Running, timeout);
// TODO return status code
}
catch
{
// ...
}
}
}
在您的项目中,添加对上层项目的引用,并使用类似的内容来调用可执行文件。不使用runas动词,它将提示用户提升权限。
var process = Process.Start(new ProcessStartInfo
{
Verb = "runas",
FileName = typeof(RunService).Assembly.Location,
UseShellExecute = true,
CreateNoWindow = true,
});
process.WaitForExit();
var exitCode = process.ExitCode
// TODO process exit code...
答案 1 :(得分:2)
你不能跳过/忽略UAC权限请求(这实际上会否定它的全部用途),但PrincipalPermissionAttribute可能就是你要找的东西。但到目前为止从未使用它。