自定义 Vista 系统下程序运行级别
2008-11-24 17:38:56 来源:WEB开发网输入项目名称为 VistaLogoDemo并点击OK按钮创建项目:
这里我们的程序就建立到这里, 我们主要是体验Vista运行级别的定义, 这里点击调试按钮进行调试:
步骤3 – 在VS2008中为程序添加嵌入式自定义级别使程序已管理员权限运行
建立文本文件, 将其名称命名为”可执行文件名.exe.manifest”, 这里我们写为”VistaLogoDemo.exe.manifest”, 将下面内容粘贴到文件中:
Code
<?xmlversion="1.0"encoding="UTF-8"standalone="yes"?>
<assemblyxmlns="urn:schemas-microsoft-com:asm.v1"manifestVersion="1.0">
<assemblyIdentityversion="1.0.0.0"processorArchitecture="X86"name="VistaLogoDemo"type="win32"/>
<description>Descriptionofyourapplication</description>
<!--Identifytheapplicationsecurityrequirements.-->
<trustInfoxmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevellevel="requireAdministrator"uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
更多精彩
赞助商链接