C# UAC 管理员控制
//当前用户是管理员的时候,直接启动应用程序
//如果不是管理员,则使用启动对象启动程序,以确保使用管理员身份运行
//管理员权限返回真,否则返回假
static public bool WinSecurity()
{
//获得当前登录的Windows用户标示
System.Security.Principal.WindowsIdentity identity = System.Security.Principal.WindowsIdentity.GetCurrent();
//创建Windows用户主题
Application.EnableVisualStyles();
System.Security.Principal.WindowsPrincipal principal = new System.Security.Principal.WindowsPrincipal(identity);
//判断当前登录用户是否为管理员
if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator)){
//如果是管理员,则直接运行
return true;
}
else{
//创建启动对象
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
//设置运行文件配置信息
startInfo.FileName = System.Windows.Forms.Application.ExecutablePath;
startInfo.WorkingDirectory = Environment.CurrentDirectory;
startInfo.UseShellExecute = true;
//设置启动动作,确保以管理员身份运行
startInfo.Verb = @"runas";
//如果不是管理员,则启动UAC
try{
System.Diagnostics.Process.Start(startInfo);
}
catch{
return false;
}
//退出
System.Windows.Forms.Application.Exit();
return false;

浙公网安备 33010602011771号