Delphi程序WIN7加入管理员权限控制

首先编写一个manifest.xml文件:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

 

然后在Project->Options下,Application使用Runtime Themes,选择"use custome manifest", 选择上面的xml

 

你可能感兴趣的:(Delphi程序WIN7加入管理员权限控制)