windows – 如何以管理员模式运行应用程序?

前端之家收集整理的这篇文章主要介绍了windows – 如何以管理员模式运行应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何部署应用程序以便它们需要管理员权限而无需最终用户手动执行此操作?

我使用Delphi 2009来构建应用程序.

您可以使用应用程序清单中的requestedExecutionLevel元素通知 Windows您的应用程序需要以管理员身份运行.

清单文件是一个XML文件,如下所示.它应该命名为YourApp.exe.manifest并放在与可执行文件相同的文件夹中. (它也可以嵌入到应用程序的资源中;它必须具有RT_MANIFEST的资源类型和ID为1.)

@H_502_9@<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="YourApp" type="win32"/> <description>Description of your application</description> <!-- Identify the application security requirements. --> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> <security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> </assembly>

有关应用程序清单以及如何创建它们的更多详细信息,请参阅MSDN上的Create and Embed an Application Manifest (UAC).

请注意,清单仅受Windows Vista及更高版本的尊重.如果您的用户在Windows XP上以标准用户身份运行,则您的应用程序将不会以管理员身份启动;如果它对您的应用程序来说是个问题,您可能需要编写代码来检测它.

猜你在找的Windows相关文章