The Microsoft COFF Binary File Dumper (DUMPBIN.EXE) displays information about Common Object File Format (COFF) binary files.
Questions tagged [dumpbin]
90 questions
0
votes
1 answer
Seeing source code from a .dll or .lib file using dumpbin
I have no prior experience with .dll or .lib files and I need to see the code of a function in these files. I don't know which one to look at, searching around in stackoverflow led me to dumpbin, and I can use dumpbin /EXPORTS to see the headers and…

Revangelis
- 105
- 3
- 14
0
votes
0 answers
Is the Windows 2012 "start menu" or "settings" menu accessible by RUNDLL32?
When I use Windows Server 2012 on a terminal / RDP session I have a hard time getting the Settings menu up (to reboot or shutdown) or clicking the Start menu (which requires a hover in a corner)
The issue is that when I use RDP, desktop sharing, or…

makerofthings7
- 60,103
- 53
- 215
- 448
0
votes
1 answer
DLL function name different from exported
I´m using a program developed by someone else using c++ and matlab. I have the source code of both, but I don't know what is going on...
Matlab calls a dll generated from c++ using something like this:
myCustomCppFunction('param1', 'param2)
I was…

guilhermecgs
- 2,913
- 11
- 39
- 69
0
votes
0 answers
How to access library’s symbol table, to find the routine symbol names
I need to identify the addresses of the crypto routines used in a linux executable that links to the OpenSSL library. How can I access the openssl symbol table?
address routine name
4099bc0 BF_cbc_encrypt()
40e4463 bf_cbc_cipher()
How to…

heaven
- 11
- 2
0
votes
1 answer
Determine if program was built with AnyCPU
After reading
this comment
If it is built in "any cpu", it will show up as 32bit in dumpbin headers.
I would like to know how I can tell a regular 32-bit program from an
AnyCPU program. I would prefer
to do this from the command line if possible.…

Zombo
- 1
- 62
- 391
- 407
0
votes
1 answer
Cannot find decorated function name in dll
I created a dll project in Visual Studio 2013
After compiling, I run
dumpbin /symbols DLLTest.dll
via cmd.exe in the directory where the dll is located, but I only get the summary
I ran
dumpbin /all DLLTest.dll
(with the text output option)…

Wuschelbeutel Kartoffelhuhn
- 1,898
- 4
- 24
- 33
0
votes
0 answers
Using dumbin /exports of static library to write header file
I have a static library (.lib file)
I would like to statically link and utilize in my program. I don't have the source code, however, so I would need to write the header file myself.
Here is the result of my dumbin /exports
File Type:…

Kirk Backus
- 4,776
- 4
- 32
- 52
0
votes
2 answers
Winbio.h No such file or directory error
i'm experiencing some dificulty in compiling this tutorial from msdn :http://msdn.microsoft.com/en-us/library/windows/desktop/ee207405(v=vs.85).aspx . As mentioned in the title, i'm getting the No such file or directory at compile time even after…

The Eighth Ero
- 417
- 4
- 13
0
votes
1 answer
windows how to show memory segment of a process?
We have tools like objdump, readelf, and dumbin to show executable file contents.
But when an executable file is loaded into memory (a process is created), the segments in memory is usually different from the segments in the executable file. For…

Zachary
- 1,633
- 2
- 22
- 34
0
votes
1 answer
Getting link.exe, lib.exe, editbin.exe and dumpbin.exe to use the symbol server
I have WinDbg set to download symbols to c:\symbols. The symbols for advapi32 (for example) are in c:\symbols\advapi32.pdb\3F32049F550C42B09CF114A1FB8A97E92\advapi32.pdb. The only way I've gotten link.exe, and those other stub exe's to use those…

Justin Dearing
- 14,270
- 22
- 88
- 161
0
votes
0 answers
pexports python27.dll > python27.def (pygraphviz 1.1 package)
I have mingw and python 2.7 in a Windows 7 box and trying to install PyGraphViz-1.1 using the following CLI utility
python setup.py install build --compiler=mingw32
However, it ends up compiling error with undefined references as…

somnathchakrabarti
- 3,026
- 10
- 69
- 92
0
votes
2 answers
generate list of c++ methods called from an executable
Is there a way to generate a list of C++ methods being called for an executable? I have a dynamic library and would like to see how many of the methods are being called from the executable. I can see that the C++ methods are being exported through…

David J
- 1
- 1
0
votes
1 answer
Can't run Lightswitch 2012 Program under Windows XP Take 2
I have exactly the same problem as the one raised and answered here. I've got a LS desktop app that refuses to work on XP SP3.
However, I have absolutely no idea how to use the command prompt and dumpbin. I've managed to find the command prompt…

ComfortablyNumb
- 1,448
- 10
- 37
- 64
0
votes
1 answer
dumpbin equivalent in unix
I'm using SCons to compile few programs and then I want to check what type of binary file is it. Is it 64bit or 32bit, in windows I used dumpbin. I tried using nm for unix and that returned the following
~/Documents/scons_unix/SCons_test$ nm…

cyberbemon
- 3,000
- 11
- 37
- 62
-1
votes
1 answer
C++ DLL recreate based on dumpbin
I am trying to recreate the exported functions of a dll based of the result of a existing DLL. The reson being is that this DLL is read into a really old software and there is lacking documentation on how to create the DLL.
This is the result of…

Sultanen
- 3,084
- 5
- 25
- 46