I do not see dumpbin.exe on my system. I have Visual Studio 2005 on my system. When I type dumpbin on the command line, it says unrecognizable command.
Does it come with Visual Studio by default, or do I have to explicitly add this tool?
I do not see dumpbin.exe on my system. I have Visual Studio 2005 on my system. When I type dumpbin on the command line, it says unrecognizable command.
Does it come with Visual Studio by default, or do I have to explicitly add this tool?
You can use the Visual Studio command prompt. dumpbin is available then.
Instead of using the dumpin.exe it is possible to call the link.exe with several options:
Example:
link /dump /all myfile.lib
For detailed options see output of
link /dump
In case of Visual Studio C++ Express installation, the link.exe is located here:
The best way is to open the “Visual Studio Command Prompt” and then enter the lines above.
A little refresh as for the Visual Studio 2015.
DUMPBIN is being shipped within Common Tools for Visual C++, so be sure to select this feature in the process of installation of Visual Studio. The utility resides at:
It become available within Developer Command Prompt for VS 2015, which can be executed from Start Menu:
If you want to make it available in the regular command prompt, then add the utility’s location to the PATH environment variable on your machine.
In Visual Studio Professional 2017 Version 15.9.13:
First, either:
or
Then, wait for it while it is “getting things ready…” and being “almost there…”
Switch to the “Individual components” tab
Scroll down to the “Compilers, build tools, and runtimes” section
Check “VC++ 2017 version 15.9 v14.16 latest v141 tools”
like this:
After doing this, you will be blessed with not just one, but a whopping four instances of DUMPBIN:
Visual Studio Commmunity 2017 –
dumpbin.exe
became available once I installed theC++ profiling tools
inModify
menu from theVisual Studio Installer
.As for
VS2017
, I found it underC:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.14.26428\bin\Hostx64\x64
You probably need to open a command prompt with the PATH set up properly. Look for an icon in the start menu that says something like “Visual C++ 2005 Command Prompt”. You should be able to run dumpbin (and all the other command line tools) from there.
By default, it’s not in your PATH. You need to use the “Visual Studio 2005 Command Prompt”. Alternatively, you can run the vsvars32 batch file, which will set up your environment correctly.
Conveniently, the path to this is stored in the VS80COMNTOOLS environment variable.
Dumpbin.exe
ofVS2005
generally presents inC:\Program Files\Microsoft Visual Studio 8\VC\bin
. If you would have installedVS2005
in drive other theC
, please search in that.And then set that path in the system variable
PATH
.After installing Visual Studio 2019 Community pack , with VC++ 2019, with this choice:
I’ve found dumpbin.exe here:
By creating Powershell script dumpbin.ps1,
we can run:
We get this:
Several have recommended such options as running under a Visual Studio Command Prompt and adding the directory that contains dumpbin.exe to the path. While I suppose one could CALL C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\LaunchDevCmd.bat each time you want to execute dumpbin.exe, adding its location to the path is an exercise in futility because it moves with almost every Visual Studio update. Presumably, this allows people to run multiple versions of Visual Studio "side by side," for which their might be a use case or two.
Meanwhile, the rest of us must accommodate its nomadic ways.