如何使用mt.exe添加一个清单到可执行?(How do I add a manifest to a

2019-07-18 01:15发布

我试图使用mt.exe从Windows SDK的清单添加到没有一个可执行文件,使用以下命令行:

C:\winsdk61>mt.exe -nologo -manifest "r:\shared\hl.exe.manifest" -updateresource:"r:\shared\hl33m.exe;#1"

不幸的是,当我这样做,我得到这个错误:

mt.exe : general error c101008c: Failed to read the manifest from
the resource of file "r:\shared\hl33m.exe". The specified resource
type cannot be found in the image file.

当然,资源没有在文件中找到 - 文件没有一个清单,这就是为什么我要补充一个。

我怎么可以追加一个清单以可执行文件? 如果不这样简单?

Answer 1:

您应该使用/ outputresource而不是/ updateresource:。

正确的命令行是:

mt.exe -nologo -manifest "r:\shared\hl.exe.manifest" -outputresource:"r:\shared\hl33m.exe;#1"


Answer 2:

这为我工作的VS 2005:

  1. 创建后可执行文件的扩展名为清单的文本文件,并确保它位于为您的代码文件相同的路径; 即Form1.cs的等。例如,如果你的应用程序名称是UACTester.exe那么你的清单文件应该被命名为UACTester.exe.manifest。
  2. 确保内容的表现还是不错的。 我用这一个:
    <?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">
                    <requestedExecutionLevel level="requireAdministrator" 
                     uiAccess="false" />
                </requestedPrivileges>
                <applicationRequestMinimum>
                    <defaultAssemblyRequest permissionSetReference="Custom" />
                    <PermissionSet class="System.Security.PermissionSet" 
                     version="1" ID="Custom" SameSite="site" />
                </applicationRequestMinimum>
            </security>
        </trustInfo>
        <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
            <application>
            </application>
        </compatibility>
    </asmv1:assembly>
  1. 在您的可执行项目,添加以下生成后事件:

    "$(DevEnvDir)..\Tools\Bin\mt.exe" -nologo -manifest "$(TargetPath).manifest" -outputresource:"$(TargetPath)"

希望这可以帮助。 祝好运! -Matt Esterak



Answer 3:

您也可以使用这样的嵌入EXE文件中的清单:

mt.exe -nologo -manifest “R:\共享\ hl.exe.manifest” -outputresource: “R:\共享\ hl33m.exe; 1”



文章来源: How do I add a manifest to an executable using mt.exe?