1

我想向 .exe 文件添加一个清单,以便它停止要求用户在 Windows 7 中以管理员身份运行。

我按照本教程进行了操作,该教程似乎完全符合我的要求,只是在执行相同操作时出现此错误并且找不到解决方案:

mt.exe : general error c101008d: Failed to write the updated manifest to the resource of file "C:\install.exe". The parameter is incorrect.

这是我使用的命令:

mt.exe –manifest C:\install.exe.manifest -outputresource:C:\install.exe;1

任何帮助将不胜感激,谢谢。

4

1 回答 1

1

这就是我解决这个问题的方法,它实际上是一个语法问题:

mt.exe –manifest "C:\install.exe.manifest" -outputresource:"C:\install.exe;#1"

还有一个更好的解决方案是直接使用 Visual Studio 编辑 .exe。

于 2013-02-23T01:11:22.697 回答