MultiExe is a Python-powered tool that lets you combine multiple .exe programs into a single Windows executable. Ideal for simplifying software deployment, creating portable app suites, or packaging tools for offline use.
- 🗂️ Bundle multiple
.exefiles into one launcher - 🧵 Extracts and runs all apps in parallel from a temporary directory
- 🎨 Supports custom
.icoicons - 🧹 Auto-removal of incomplete
.crdownloadfiles - 🧪 Clean build system using PyInstaller
- ⚙️ Zero external dependencies required for runtime
Before running, make sure you have the following installed:
Open Command Prompt or PowerShell, and run:
# Clone this repository
git clone https://github.com/your-username/MultiExe.git
cd MultiExe
# (Optional but recommended) Create a virtual environment
python -m venv venv
venv\Scripts\activate # For Windows
# Install PyInstaller
pip install pyinstaller
