Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using ILDASM with Visual Studio 2008

I just installed Visual Studio 2008, and am looking to use the Microsoft Intermediate Language Disassembler (ILDASM.exe) to look at some DLLs.

Problem is, "ildasm" is not recognized on the command line, and I cannot find ildasm.exe anywhere in my VS 2008 install directory (e.g. c:\programs\Visual_Studio_9.0\).

Any ideas?

UPDATE: Found it! At C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin

This answer helped.

like image 519
Daniel F. Thornton Avatar asked Jul 15 '09 15:07

Daniel F. Thornton


2 Answers

It's shipped as part of the Windows SDK. On my pc, it's at C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\ildasm.exe

like image 137
Scott Weinstein Avatar answered Oct 02 '22 14:10

Scott Weinstein


If you open up the Visual Studio 2008 command prompt, a shortcut to which installed with Visual Studio, then it should be in your path - you can just run it from any directory.

like image 31
David M Avatar answered Oct 02 '22 16:10

David M