Java教程

Delphi生成EXE自动以管理员身份运行(示例代码)

本文主要是介绍Delphi生成EXE自动以管理员身份运行(示例代码),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
CookieDragon  

Delphi生成EXE自动以管理员身份运行

【测试环境】Windows 7 旗舰版 With Sp1,RAD 10 Seattle

 

1、文本文件:UAC.manifest

复制代码
<?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" uiAccess="false">
</requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*">
</assemblyIdentity>
</dependentAssembly>
</dependency>
</assembly>
复制代码

 

2、文本文件:UAC.rc

1 24 UAC.manifest

 

3、拷贝上述两个文件到RAD10目录下/bin(如Embarcadero\Studio\17.0\bin)

 

4、用brcc32编译这个.rc文件为.res文件

brcc32 uac.rc -fouac.res

 

5、在工程文件.dpr中{$R *.res}后面加入{$R uac.res}

 

6、打开工程属性,Application->Manifest File,改成Custom,在下方选择UAC.manifest文件,重新编译工程。

这篇关于Delphi生成EXE自动以管理员身份运行(示例代码)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!