Manifest for an exe?

家住魔仙堡 提交于 2019-12-24 21:28:57

问题


I have an executable say A.exe, which finds architecture of the OS and depends on the architecture it calls either A64.exe or A86.exe. In this case do I want to have manifests for all the exe's ( A.exe, A64.exe, A86.exe )? Right now I have manifest only for A.exe?


回答1:


Yes, each module needs its own manifest.

In your case, if you were to start A64.exe from A.exe, and A64.exe does not have a manifest, then A64 will run virtualized, it will not have access to comctl32 v6 and so on. A process does not inherit its manifest from the process that creates it, each process must supply its own manifest.



来源:https://stackoverflow.com/questions/12583006/manifest-for-an-exe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!