Manifest和GetVersionEx

时间:2018-06-12 13:53:50

标签: delphi windows-10 manifest delphi-xe4

我目前正在尝试在 example.exe 程序旁边添加 example.manifest 文件,因此GetVersionEx会返回正确的信息。

但是 - 它似乎没有任何差别 - 我仍然只有6.2

这是我打算用于所有32/64位Windows可执行文件的清单文件

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0"
        publicKeyToken="6595b64144ccf1df"
        language="*"
        processorArchitecture="*"
      />
    </dependentAssembly>
  </dependency>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel
          level="asInvoker"
          uiAccess="false"
        />
      </requestedPrivileges>
    </security>
  </trustInfo>
  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
    <application>
      <!-- Windows 10 -->
      <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
      <!-- Windows 8.1 -->
      <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
      <!-- Windows Vista -->
      <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
      <!-- Windows 7 -->
      <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
      <!-- Windows 8 -->
      <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
    </application>
  </compatibility>
</assembly>

3 个答案:

答案 0 :(得分:9)

除了@David的回答。

无需外部工具和编辑res文件。较新的Delphi版本(包括XE4)在Project Options中设置了允许包含自定义外部清单文件的设置,Delphi将负责构建并将其包含在最终的可执行文件中。

Project Options -> Application -> Runtime Themes - 选择Use custom manifest并浏览您的清单文件。

enter image description here

答案 1 :(得分:4)

该文件应命名为example.exe.manifest而不是example.manifest

但即便如此,在IIRC中,外部清单会忽略supportedOS设置。因此,您必须将清单作为资源嵌入。无论如何,这是一种更加强大的方法。

答案 2 :(得分:0)

我最终解决此问题的方法是使用资源工具(例如Resource Tuner可以执行此操作)将清单文件添加到.res文件中。

  • 我已关闭主题,自定义清单,图标等所有IDE内容。
  • 我没有在使用中包含xpman
  • 我在主.dpr单元
  • 中包含我的.res文件,其中包含清单和图标

它起作用,因为两个主题和getversionex现在都返回正确的结果。

...

对于构建自动化 - 我的另一个脚本生成的构建脚本会根据正在构建的产品/版本提取正确的.res文件。