computing
  • 11

How To Change a Windows .Exe To a ELF .Exe?

  • 11

How to change a Windows .exe to a ELF .exe?
Both are executble files. But one is named Executable Format and the other is a named ELF Format.

Share

1 Answer

  1. For most practical purposes you can’t.
    The ELF file type is used primarily on unix and similar operating systems but not Windows. Converting an application from one platform to another is a major task, even for a skilled programmer with source code access.
    • 0