views:

55

answers:

2

I have a problem of to open(EXTRACT) a command prompt. I want to see the code inside this "a*.exe" file. can u suggest me as if i am not aware of this field(software). how to extract cmd.exe file.

+1  A: 

Generally, you cannot see the code of an executable file (short answer).

john
A: 

But if you are pretty sure that you indeed have the knowledge and experience you need, you might want take a look at this PE/COFF format specification over here:

   http://support.microsoft.com/kb/121460

The specification is very clear and concise; it might be just what you want. With some work, you can inspect a PE/COFF file with your program iff you have the right k&e.*

HTH

-- pete

* Heh! Lily Tomlin's Ernestine: " ... 'k' as in 'knowledge' ... "

Pete Wilson