Monday, September 5, 2011

Dumpbin.exe - a tool to provide info about DLLs (x86 or x64)

Dumpbin.exe is one of tools with ability to provide information about the format and symbols in executable, library, and DLL files.

There are some options which you can utilize with Dumpbin.exe utility like /ALL, /DISASEM, /SUMMARY, /SYMBOLS, ...

If you want to see a DLL is compiled in x86 or 64 bit you can use /HEADERS option in command line:

dumpbin /headers MyCompany.MyDepartment.MyNameSapece.MyAssembly.dll

To be able to call DumpBin.exe in command line, you better extend PATH to be able to call it from anywhere: (The path is depend on your system)
  • SET PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;
or
  • SET PATH=%PATH%;C:\Program Files\Microsoft Visual Studio 10.0\VC\bin;C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE;

Share/Bookmark

Visual Web Developer 2010 Express on NetBook

I tried to install Visual Web Developer 2010 Express on my Netbook
  • Intel Atom N550 (1.5GHz, 1MB L2 Cache)
  • 1 GB DDR3 RAM
  • 250 GB HDD
The folowing items installed and it took a few hours!
  • Microsoft .NET Framework 4
  • SQL Server Express 2008 R2
  • Visual Web Developer 2010 Express
  • Visual Studio 2010 SP1 Code (SP1 only installation)
  • Visual Studio 2010 SP1 KB983509
  • IIS 7.5 Express
  • SQL Server System CLR Types
  • SQL Server Native Client
  • Microsoft SQL Server Compact 4.0
  • SQL Server 2008 R2 Management Objects
  • Web Deployment Tool 2.1
  • Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installtion
  • Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer
  • Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0
  • ASP.NET MVC 3 Tools Update Installer
  • Microsoft Visual Studio 2010 SP1 Tools for ASP.NET Web Pages
  • ASP.NET MVC 3 Tools Update Language Packs Installer
  • ASP.NET MVC 3 Tools Update Language Packs
  • Visual Web Developer Express 2010 SP1
  • Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for Repair
It worked but for sure it's very slow on this machine.


Share/Bookmark