C#以管理员身份启动
2020-12-18 00:33
标签:来源 对象 code styles 文件 term 安全性 run 用户 步骤一、 步骤二、 步骤三、 步骤四、 ClickOnce 不支持请求执行级别“requireAdministrator”。 步骤五、 C#以管理员身份启动 标签:来源 对象 code styles 文件 term 安全性 run 用户 原文地址:https://www.cnblogs.com/zouhao/p/13970176.html来源:https://blog.csdn.net/m0_37447148/article/details/89409597
前提背景
通过app.manifest文件
更改Program.cs文件
static void Main()
{
/*
* 当前用户是管理员的时候,直接启动应用程序
* 如果不是管理员,则使用启动对象启动程序,以确保使用管理员身份运行
*/
// 获得当前登录的Windows用户标示
System.Security.Principal.WindowsIdentity identity = System.Security.Principal.WindowsIdentity.GetCurrent();
System.Security.Principal.WindowsPrincipal principal = new System.Security.Principal.WindowsPrincipal(identity);
if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator))
{
//如果是管理员,则直接运行
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
else
{
//创建启动对象
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
//设置运行文件
startInfo.FileName = System.Windows.Forms.Application.ExecutablePath;
//设置启动参数
startInfo.Arguments = String.Join(" ", "Args");
//设置启动动作,确保以管理员身份运行
startInfo.Verb = "runas";
//如果不是管理员,则启动UAC
System.Diagnostics.Process.Start(startInfo);
//退出
System.Windows.Forms.Application.Exit();
}
}
建议