在Vista操作系统中通过manifest文件使VC应用程序获得管理员权限
原文
VC編譯出來的應用程序在vista下運行,有可能因為權限問題,不能成功運行。
用以下辦法,給應用程序添加一個manifest文件,程序運行時系統就會跳出UAC對話框,獲得管理權限。
1.打開應用程序的源代碼工程
2.添加一個“custom”資源,"resource type"填24,把資源ID改為1,然后把以下內容復制到資源內容中保存
?<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
??? version="1.0.0.0"
??? processorArchitecture="X86"
??? name="mulitray.exe.manifest"
??? type="win32"
/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
??? <security>
??????? <requestedPrivileges>
??????????? <requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
??????? </requestedPrivileges>
??? </security>
</trustInfo>
</assembly>?
3.重新編譯應用程序,此時會發現,廣用程序的圖標在vista下會多出一個小盾標志。
?
轉載于:https://www.cnblogs.com/hei-hei-hei/p/7908574.html
總結
以上是生活随笔為你收集整理的在Vista操作系统中通过manifest文件使VC应用程序获得管理员权限的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Scrapy练习——爬取京东商城商品信息
- 下一篇: 前序中序确认二叉树 7-23 还原二