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.
我有一个软件。当我反汇编PE文件时
ildasm foo.exe /output=foo.il
我得到一堆文件,比如foo.MainForm和foo.bar.dll. 然后当我尝试重新组装文件时
foo.MainForm
foo.bar.dll
ilasm foo.il
我又得到了一个正常工作的 foo.exe,但新文件中缺少一些小图形(它也小了约 200kb)。其他一些图形正在工作,所以看起来我在拆卸或重新组装时遗漏了一些东西。我怎样才能解决这个问题?
当您反编译时,您会看到提取了一堆 .res 文件。
使用 ilasm 重新编译时,您需要再次包含它们。