About 28,600,000 results
Open links in new tab
  1. windows - what's in a .exe file? - Stack Overflow

    43 So a .exe file is a file that can be executed by windows, but what exactly does it contain? Assembly language that's processor specific? Or some sort of intermediate statement that's recognized by …

  2. How can I convert my Java program to an .exe file? [closed]

    Sep 29, 2008 · It can generate .exe files with the -native exe flag, among many other things. WinRun4J WinRun4j is a java launcher for windows. It is an alternative to javaw.exe and provides the following …

  3. Fully understanding how .exe file is executed - Stack Overflow

    Apr 15, 2020 · My final (perhaps too ambitious) goal is to take a hello-world .exe file (compiled with a C compiler and linked) and understand in full detail how it is loaded into memory and executed by a …

  4. How to build a whole .NET Framework application as a single .exe file?

    The .Net project when compiled gives a exe file on the Debug/release paths as set in the properties of the application. I think you are asking for the self extracting application setup exe file to give it to the …

  5. "Register" an .exe so you can run it from any command line in Windows

    How can you make a .exe file accessible from any location in the Windows command window? Is there some registry entry that has to be entered?

  6. How do I set the version information for an existing .exe, .dll?

    This worked perfectly when I tried it. For a file that is missing version info completely: After opening the DLL in Visual Studio, go to Edit > Add Resource > Version and click New. Then in the new Version …

  7. Running an outside program (executable) in Python?

    Nov 28, 2009 · the input file is a basic .txt file in the same folder. The code right now opens the exe from the cmd window. And the executable asks for the name of the input file. Is there a way that I can just …

  8. How can I make an EXE file from a Python program?

    Sep 8, 2008 · I found this presentation to be very helpfull. How I Distribute Python applications on Windows - py2exe & InnoSetup From the site: There are many deployment options for Python code. …

  9. Compile to a stand-alone executable (.exe) in Visual Studio

    46 how can I make a stand-alone exe in Visual Studio. Its just a simple Console application that I think users would not like to install a tiny Console application. I compiled a simple cpp file using the visual …

  10. py2exe - generate single executable file - Stack Overflow

    Aug 4, 2015 · py2exe can create a single file executable if you specify a few arguments in the compiler program. py2exe has a tutorial for single file executables online.