我想在.exe文件中添加一个清单,以便它不再要求用户在Windows 7中以管理员身份运行。
我跟着this tutorial这似乎正是我想要完成的事情,除非我在做同样的事情时遇到此错误而我无法找到解决方案:
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
非常感谢任何帮助,谢谢。
答案 0 :(得分:1)
这就是我解决这个问题的方法,实际上是一个语法问题:
mt.exe –manifest "C:\install.exe.manifest" -outputresource:"C:\install.exe;#1"
有一个更好的解决方案是使用visual studio直接编辑.exe。