C#項目中引入app.manifest管理員權限運行

原文地址:https://blog.csdn.net/qq395537505/article/details/51010962html

參考UAC:User Account Control安全

參考IE保護模式:https://blog.csdn.net/xt_xiaotian/article/details/5336809app

打開VS200五、VS200八、VS20十、VS20十二、VS201三、VS2015工程,查看工程文件夾中的Properties文件夾下是否有app.manifest這個文件;如沒有,按以下方式建立:鼠標右擊工程在菜單中選擇「屬性」,點擊工程屬性的「安全性」標籤,在安全性標籤頁中勾選「啓用ClickOnce安全設置」,並選擇「這是徹底可信的應用程序」,保存工程,此時在Properties下已經自動生成了app.manifest文件。ide

將默認的app.manifest文件修改成ui

[html] view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
  3.   <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>  
  4.   <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">  
  5.     <security>  
  6.       <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">  
  7.         <!-- UAC 清單選項  
  8.             若是要更改 Windows 用戶賬戶控制級別,請用如下節點之一替換   
  9.             requestedExecutionLevel 節點。  
  10.   
  11.         <requestedExecutionLevel  level="asInvoker" uiAccess="false" />  
  12.         <requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />  
  13.         <requestedExecutionLevel  level="highestAvailable" uiAccess="false" />  
  14.   
  15.             指定 requestedExecutionLevel 節點將會禁用文件和註冊表虛擬化。  
  16.             若是要利用文件和註冊表虛擬化實現向後   
  17.             兼容性,則刪除 requestedExecutionLevel 節點。  
  18.         -->  
  19.         <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />  
  20.       </requestedPrivileges>  
  21.     </security>  
  22.   </trustInfo>  
  23.   
  24.   <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">  
  25.     <application>  
  26.       <!-- 此應用程序設計使用的全部 Windows 版本的列表。Windows 將會自動選擇最兼容的環境。-->  
  27.   
  28.       <!-- 若是應用程序設計使用 Windows 7,請取消註釋如下 supportedOS 節點-->  
  29.       <!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->  
  30.   
  31.     </application>  
  32.   </compatibility>  
  33.   
  34.   <!-- 啓用 Windows 公共控件和對話框的主題(Windows XP 和更高版本) -->  
  35.   <!-- <dependency>  
  36.     <dependentAssembly>  
  37.       <assemblyIdentity  
  38.           type="win32"  
  39.           name="Microsoft.Windows.Common-Controls"  
  40.           version="6.0.0.0"  
  41.           processorArchitecture="*"  
  42.           publicKeyToken="6595b64144ccf1df"  
  43.           language="*"  
  44.         />  
  45.     </dependentAssembly>  
  46.   </dependency>-->  
  47.   
  48. </asmv1:assembly>  

修改<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />節點便可。spa

配置文件修改後,咱們運行應用程序,就會首先彈出這樣一個提示框,點 Yes 後,程序才能夠繼續運行。.net

順便說下,還能夠經過一個方法瞭解到此時程序運行是否是管理員權限:設計

[csharp] view plain copy
  1. public bool IsAdministrator()  
  2. {  
  3.      WindowsIdentity identity = WindowsIdentity.GetCurrent();  
  4.      WindowsPrincipal principal = new WindowsPrincipal(identity);  
  5.      return principal.IsInRole(WindowsBuiltInRole.Administrator);  
  6. }  

 

對於XML文件中引用的UAC執行權限級別,分別表明下列含義:xml

         asInvoker : 應用程序就是以當前的權限運行。htm

         highestAvailable: 這個是以當前用戶能夠得到的最高權限運行。

         requireAdministrator: 這個是僅以系統管理員權限運行。

         默認狀況下是 asInvoker。

         highestAvailable 和 requireAdministrator 這兩個選項均可以提示用戶獲取系統管理員權限。那麼這兩個選項的區別在哪裏呢?

         他們的區別在於,若是咱們不是以管理員賬號登陸,那麼若是應用程序設置爲 requireAdministrator ,那麼應用程序就直接運行失敗,沒法啓動。而若是設置爲 highestAvailable,則應用程序能夠運行成功,可是是以當前賬號的權限運行而不是系統管理員權限運行。若是咱們但願程序在非管理員賬號登陸時也能夠運行(這種狀況下應該某些功能受限制) ,那麼建議採用 highestAvailable 來配置。

相關文章
相關標籤/搜索