Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可执行文件 A.exe,它可以找到操作系统的体系结构并取决于它调用 A64.exe 或 A86.exe 的体系结构。在这种情况下,我是否想要所有 exe 的清单( A.exe、A64.exe、A86.exe )?现在我只有 A.exe 的清单吗?
是的,每个模块都需要自己的清单。
在您的情况下,如果您A64.exe从开始A.exe,并且A64.exe没有清单,那么A64将运行虚拟化,它将无法访问 comctl32 v6 等等。进程不会从创建它的进程继承其清单,每个进程必须提供自己的清单。
A64.exe
A.exe
A64