如何向MFC应用程序添加清单并设置supportedOS?

7
我正在尝试在Windows Server 2012上运行Microsoft平台准备测试工具4.6:http://www.microsoft.com/en-ca/download/details.aspx?id=41676 我遇到了一个问题。它抱怨我有一个MFC应用程序,但该清单缺少supportedOS部分。我知道如何将其添加到C#项目中,但如何在MFC应用程序中添加呢?
MFC应用程序出现在“缺少supportedOS部分的可执行文件”下。
1个回答

9

我已经明白了。步骤如下:

右键单击解决方案,选择属性。从“配置属性” ->“链接器” ->“清单文件”中向下钻取。设置如下:

将“生成清单”设置为“Yes (/MANIFEST)”

将“清单文件”设置为“app.manifest”

现在的技巧是......在您的MFC应用程序中添加一个新文件。将其命名为“app.manifest”,因为我们将其作为引用名称。确保它包含manifest XAML,例如:

<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
    <security>
      <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
        <!-- UAC Manifest Options
            If you want to change the Windows User Account Control level replace the 
            requestedExecutionLevel node with one of the following.

        <requestedExecutionLevel  level="asInvoker" uiAccess="false" />
        <requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />
        <requestedExecutionLevel  level="highestAvailable" uiAccess="false" />

            Specifying requestedExecutionLevel node will disable file and registry virtualization.
            If you want to utilize File and Registry Virtualization for backward 
            compatibility then delete the requestedExecutionLevel node.
        -->
        <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
      </requestedPrivileges>
    </security>
  </trustInfo>

  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
    <application>
      <!-- A list of all Windows versions that this application is designed to work with. 
      Windows will automatically select the most compatible environment.-->

      <!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
      <!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>-->

      <!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
      <!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->

      <!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
      <!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>-->

      <!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
      <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>

    </application>
  </compatibility>

  <!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
  <!-- <dependency>
    <dependentAssembly>
      <assemblyIdentity
          type="win32"
          name="Microsoft.Windows.Common-Controls"
          version="6.0.0.0"
          processorArchitecture="*"
          publicKeyToken="6595b64144ccf1df"
          language="*"
        />
    </dependentAssembly>
  </dependency>-->

</asmv1:assembly>

太棒了,你真是个英雄。

提示:要查看可执行文件的清单,请在Notepad++中打开可执行文件并向下滚动。它就在底部。至少对我来说是这样的。


请参考以下链接 https://github.com/MicrosoftDocs/cpp-docs/blob/main/docs/build/manifest-generation-in-visual-studio.md - Arun K

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接