Top "Executable" questions

An executable is a binary file that can be executed by the operating system.

Runtime.exec() with absolute directory

I would like to use Runtime.exec() to initiate another process in a directory with spaces. (It sounds stupid but …

java executable spaces runtime.exec
Modify Emdeded String in C# compiled exe

I have an issue where I need to be able to have a compiled exe ( .net 3.5 c# ) that I will …

c# assemblies executable disassembly code-injection
How does DOS load a program into memory?

What steps does MS-DOS take to load a COM or EXE file into memory? Are there still references online as …

executable dos
Trying to execute self extracting zip file silently in command line

I have these self extracting zip files that I'm trying to extract on 2008/7 machines remotely. But they are coming in …

zip executable exe self-extracting winzip
ImportError: cannot import name RAND_egd

I've tried to create an exe file using py2exe. I've recently updated Python from 2.7.7 to 2.7.10 to be able to …

python ssl import executable py2exe
Determining Which Compiler Built a Win32 PE

How can one determine which C or C++ compiler was used to build a particular Windows executable or DLL? Some …

c++ c compiler-construction executable disassembly
The .exe I created with Launch4j doesn't run

I was able to successfully create a .exe file from an executable jar. From Launch4j I can test the …

java jar executable launch4j
PyInstaller creates slow executable

I'm using PyInstaller to create a single executable of a python program using PyQt. It creates the .exe and runs …

pyqt executable pyinstaller
What is the difference between Assembly and binary?

I've trouble with understanding the difference between assembly and binary. Just I need to understand what the relation is between …

assembly binary executable machine-code
How to make gcc generate only machine code that can be loaded directly into memory and executed?

I would like to produce a file that I can load into memory (for example with mmap) and then jump …

c gcc linker executable machine-code