How can I find out if a file on my computer is either 32bit or 64bit?


1. Open Visual Studio Command Prompt

2. Type:

dumpbin /headers mysamplefile.dll |find "machine"

3. You will get the following output

64-bit:  8664 machine (x64)

32-bit:  14C machine (x86)