国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

C#編寫以管理員身份運行的程序

2019-11-17 02:33:24
字體:
來源:轉載
供稿:網友
C#編寫以管理員身份運行的程序
using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace MyWebBrowser{    static class PRogram    {        /// <summary>        /// 應用程序的主入口點。        /// </summary>        [STAThread]        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.Verb = "runas";                //如果不是管理員,則啟動UAC                 System.Diagnostics.Process.Start(startInfo);                //退出                 System.Windows.Forms.Application.Exit();            }        }    }}

  


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 新平| 辽宁省| 岗巴县| 清远市| 博乐市| 贡嘎县| 广安市| 汝阳县| 玉田县| 揭阳市| 科技| 莲花县| 清水县| 集贤县| 钟山县| 克山县| 邵阳市| 武定县| 江城| 张北县| 华坪县| 台北市| 玛沁县| 开远市| 葵青区| 江永县| 台北市| 蓬莱市| 综艺| 永靖县| 宜城市| 太仆寺旗| 肃南| 佳木斯市| 黔西县| 怀来县| 平凉市| 新疆| 莆田市| 云梦县| 临汾市|