日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区

C# WinForm判斷程序是否以管理員身份運(yùn)行_.Net教程

編輯Tag賺U幣
教程Tag:暫無(wú)Tag,歡迎添加,賺取U幣!

推薦:.net中使用DatagridView的增刪改方法
default.aspx 頁(yè)面: %@ Page Language=C# AutoEventWireup=true CodeBehind=Default.aspx.cs Inherits=GPS_Web.Default % !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://

Vista 和 Windows 7 操作系統(tǒng)為了加強(qiáng)安全,增加了 UAC(用戶賬戶控制) 的機(jī)制,如果 UAC 被打開(kāi),用戶即使是以管理員權(quán)限登錄,其應(yīng)用程序默認(rèn)情況下也無(wú)法對(duì)系統(tǒng)目錄,系統(tǒng)注冊(cè)表等可能影響系統(tǒng)運(yùn)行的設(shè)置進(jìn)行寫(xiě)操作。這個(gè)機(jī)制大大增強(qiáng)了系統(tǒng)的安全性,但對(duì)應(yīng)用程序開(kāi)發(fā)者來(lái)說(shuō),我們不能強(qiáng)迫用戶去關(guān)閉UAC,但有時(shí)我們開(kāi)發(fā)的應(yīng)用程序又需要以 Administrator 的方式運(yùn)行,即 Win7 中 以 as administrator 方式運(yùn)行,那么我們?cè)趺磥?lái)實(shí)現(xiàn)這樣的功能呢?

  我們?cè)?win7 下運(yùn)行一些安裝程序時(shí),會(huì)發(fā)現(xiàn)首先彈出一個(gè)對(duì)話框,讓用戶確認(rèn)是否同意允許這個(gè)程序改變你的計(jì)算機(jī)配置,但我們編寫(xiě)的應(yīng)用程序默認(rèn)是不會(huì)彈出這個(gè)提示的,也無(wú)法以管理員權(quán)限運(yùn)行。本文介紹了 C# 程序如何設(shè)置來(lái)提示用戶以管理員權(quán)限運(yùn)行。 首先在項(xiàng)目中增加一個(gè) Application Manifest File   C# WinForm判斷程序是否以管理員身份運(yùn)行 模板無(wú)憂
    默認(rèn)的配置如下:   <?xml version="1.0" encoding="utf-8"?>
<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">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.

<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />

If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</asmv1:assembly>

  我們可以看到這個(gè)配置中有一個(gè) requestedExecutionLevel 項(xiàng),這個(gè)項(xiàng)用于配置當(dāng)前應(yīng)用請(qǐng)求的執(zhí)行權(quán)限級(jí)別。這個(gè)項(xiàng)有3個(gè)值可供選擇,如下表所示:

  asInvoker : 如果選這個(gè),應(yīng)用程序就是以當(dāng)前的權(quán)限運(yùn)行。

  highestAvailable: 這個(gè)是以當(dāng)前用戶可以獲得的最高權(quán)限運(yùn)行。

  requireAdministrator: 這個(gè)是僅以系統(tǒng)管理員權(quán)限運(yùn)行。

  默認(rèn)情況下是 asInvoker。

  highestAvailable 和 requireAdministrator 這兩個(gè)選項(xiàng)都可以提示用戶獲取系統(tǒng)管理員權(quán)限。那么這兩個(gè)選項(xiàng)的區(qū)別在哪里呢?

  他們的區(qū)別在于,如果我們不是以管理員帳號(hào)登錄,那么如果應(yīng)用程序設(shè)置為 requireAdministrator ,那么應(yīng)用程序就直接運(yùn)行失敗,無(wú)法啟動(dòng)。而如果設(shè)置為 highestAvailable,則應(yīng)用程序可以運(yùn)行成功,但是是以當(dāng)前帳號(hào)的權(quán)限運(yùn)行而不是系統(tǒng)管理員權(quán)限運(yùn)行。如果我們希望程序在非管理員帳號(hào)登錄時(shí)也可以運(yùn)行(這種情況下應(yīng)該某些功能受限制) ,那么建議采用 highestAvailable 來(lái)配置。

  關(guān)于requestedExecutionLevel 設(shè)置的權(quán)威文檔請(qǐng)參考下面鏈接:

  Create and Embed an Application Manifest (UAC)

下面是修改后的配置文件:
  <?xml version="1.0" encoding="utf-8"?>
<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">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the 
requestedExecutionLevel node with one of the following.

<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />

If you want to utilize File and Registry Virtualization for backward 
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</asmv1:assembly>  

分享:C#中調(diào)用Windows API時(shí)的數(shù)據(jù)類型對(duì)應(yīng)關(guān)系
BOOL=System.Int32 BOOLEAN=System.Int32 BYTE=System.UInt16 CHAR=System.Int16 COLORREF=System.UInt32 DWORD=System.UInt32 DWORD32=System.UInt32 DWORD64=System.UInt64 FLOAT=System.Float HACCEL=System.IntPtr HANDLE=System.IntPtr HBITMAP=System.IntPtr HBR

共2頁(yè)上一頁(yè)12下一頁(yè)
來(lái)源:模板無(wú)憂//所屬分類:.Net教程/更新時(shí)間:2013-04-17
相關(guān).Net教程