exe info


 
Thread Tools Search this Thread
Top Forums Programming exe info
# 1  
Old 11-16-2005
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
# 2  
Old 11-16-2005
i once saw a utililty "what" that extracts SCCS information, in files that have.
# 3  
Old 11-16-2005
tell somehing more.

is the what utility is in unix?

Can we get the info from programming(C/C++)?
# 4  
Old 11-16-2005
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";

The @(#) thing is called a what string and allows what to see it.
# 5  
Old 11-17-2005
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  
Old 11-17-2005
try
Code:
file filename.exe  # for a clean 'summary' 
man objdump  # for a more 'detailed' info

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

exe

hello everyone, could somebody tell me where can i find some good exercises on signals,processes and threads? actually i need to find some solved exercises in system programming. tnx (4 Replies)
Discussion started by: micy
4 Replies

2. Programming

exe

Is it possible to extract c program,from its executable file(.exe)? i mean we dont have program but its exe file only which runs,can we retrieve the program? if yes how? if no why? (2 Replies)
Discussion started by: unknown9
2 Replies

3. Programming

running exe

how we can run the exe when the system starts. (2 Replies)
Discussion started by: phani_sree
2 Replies

4. UNIX for Dummies Questions & Answers

.exe files

how to open .exe file in freebsd system.My work is to run a growth.exe(created by growth.c turbo c 3.0 file).how to run that exe file in freebsd system?Thanks in advance help me (8 Replies)
Discussion started by: kumarangopi
8 Replies

5. Linux

How to run .exe

Hai, is there any way to run an .exe file in unix environment . i have read that WINE HQ supports this concept but its very inconsistent and upto the user risk . but i tried WINE but iam not able to configure it can any one help me in this matter Regards Sanju (1 Reply)
Discussion started by: sanjustudy
1 Replies

6. SuSE

does exe

does exe files works withe suse am new n linux system and were can i find msn 4 linux (2 Replies)
Discussion started by: abdulla
2 Replies

7. Programming

how To edit exe to insert a serial no wich can be usd by runing exe

At time of installation I have to open the resource. and i have to insert a string serial number in the exe. please provide me code to edit the exe (in solaris) to insert a serial number which can be used by exe at run time. (6 Replies)
Discussion started by: ssahu
6 Replies

8. UNIX for Advanced & Expert Users

.exe file

Hello all, how to run windows .exe file in Linux and vice the versa (3 Replies)
Discussion started by: rajashekaran
3 Replies

9. Programming

about exe file

Hi, I am using dual operating system(windows/linux) in my system.Now the problem is i want to run my .exe(of c languege) before system ask for loading of operating system.Like my system ask for linux or dos.I want to run my .exe before this. Tell me how can i use this. (2 Replies)
Discussion started by: at_renai2001
2 Replies

10. Programming

*.exe Decompilier

Hello, How would you go about de-compiling a *.exe file which wasn't created in VB? Any suggestions? Thank you (2 Replies)
Discussion started by: TAT2ME74
2 Replies
Login or Register to Ask a Question