Wednesday, January 06, 2021

Export the code section of a DLL or EXE to a file

How to export the code section of a DLL or EXE to a file using dumpbin.

  • Open Developer Command Prompt for VS 2019
  • Export disassembly for a DLL, like
  • c:\> dumpbin /disasm mydll.dll > mydll.asm
    

References:

https://docs.microsoft.com/en-us/cpp/build/reference/disasm?view=msvc-160

http://ntcoder.com/bab/2007/06/06/disassembling-a-dll-or-exe/


No comments:

Qt console hello world

Qt console hello world This guide shows how a Qt console hello world looks like. ▣ Open  Qt Creator  and click on  Create Project... ...