up vote 1 down vote favorite
share [g+] share [fb]

What kind of executable files can run on Windows XP through Windows 7? I know of PE, but I don't know if there are any others.

I'm also interested in knowing different kinds of interpretive executables, like a Java program and such.

I'd also like to know what extensions they use, like PE uses .exe and .dll.

link|improve this question

feedback

migrated from stackoverflow.com Feb 20 '10 at 4:24

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 1 down vote accepted

There is an "incomplete list" of executable extensions available on wikipedia.

link|improve this answer
feedback

In addition to PE you mentioned, there's also formats used in DOS: MZ and COM. Support for the DOS formats are obviously being phased out, but emulators like DOSBOX attempt to continue support.

As for Java, developers usually supply applications in a JAR format, which is simply a zip file containing all the bytecode and other application resources.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.