![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Some Info. | ad4m88 | UNIX for Dummies Questions & Answers | 8 | 03-29-2008 04:01 PM |
| Need Info | msgobinathan | Shell Programming and Scripting | 1 | 11-03-2007 02:17 PM |
| cpu info | vijayca | HP-UX | 1 | 08-27-2007 05:51 AM |
| How get more LUN info | itsupplies | Linux | 0 | 10-26-2006 01:22 AM |
| SU info | afflack | UNIX for Dummies Questions & Answers | 4 | 01-20-2005 06:35 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
exe info
Hi
Is it possible to find all the information like its 'ProductName', 'ProductVersion, ''InternalName' , 'FileVersion' etc about a windows excutable file,( i.e. *.exe file ) on Unix/Linux. thanks sumsin |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
i once saw a utililty "what" that extracts SCCS information, in files that have.
|
|
#3
|
|||
|
|||
|
tell somehing more.
is the what utility is in unix? Can we get the info from programming(C/C++)? |
|
#4
|
|||
|
|||
|
Most versions of UNIX have the ident utility. You can also try the what command on the executable image file.
If you want to create entries in C source so you can see them using what (running against a compiled file): Code:
static char *idubpbilp_h=
"@(#) $Header: ubpbilp.h in situ NO DATE jmc";
|
|
#5
|
|||
|
|||
|
but when I use the command to find info of windows executable (taken from my windows machine ) it gives no result.
$ ident ~/WINWORD.EXE ~/WINWORD.EXE: ident warning: no id keywords in ~/WINWORD.EXE is any other way? |
|
#6
|
||||
|
||||
|
try
Code:
file filename.exe # for a clean 'summary' man objdump # for a more 'detailed' info |
|
#7
|
|||
|
|||
|
thanks andryk
objdump command gives a detailed information about exe. Now what I want is ' to extract ( or make with combination of two or more fields ) a unigue id of that exe file' that can be used as an identifier between different exe file. So can you guide me abt this... thanks again. |
|||
| Google The UNIX and Linux Forums |