jennyMod Installer is a zero-hassle, one-click setup tool built exclusively for Windows. No manual file moving, no hunting for your .minecraft folder, no Java path configuration — just run the installer and you're done.
- Automatically detects your Minecraft installation
- Verifies Java version compatibility
- Downloads and places the mod in the correct folder
- Applies required configuration automatically
| Feature | Description |
|---|---|
| Auto-detection | Finds .minecraft, MultiMC and Prism Launcher paths automatically |
| Java check | Scans JAVA_HOME, standard install paths, and PATH |
| Progress UI | Real-time download and installation progress bar |
| One-click | Single .exe — no Python, no Java, no dependencies required |
| Safe | Open source — inspect every line before running |
| Auto-update | Repository updates automatically every 30 minutes via CI |
- Windows 10 / 11 (64-bit)
- Minecraft Java Edition already installed
- Java 8 or higher (Java 17 recommended)
- Internet connection (for mod download)
Linux and macOS are not supported. This tool is Windows-only by design.
- Click the button above or go to Releases
- Run
.exe— if SmartScreen appears click More info → Run anyway - Follow the on-screen steps and launch Minecraft
jennymod-installer.exe
│
├─ 1. Detect Java (JAVA_HOME → known paths → PATH)
├─ 2. Locate .minecraft folder (APPDATA → MultiMC → Prism)
├─ 3. Create mods\ directory if missing
├─ 4. Download jenny-mod-1.12.2.jar with progress bar
├─ 5. Copy JAR to mods\
└─ 6. Write install config → done ✓
jennymod-installer/
├── src/main/java/com/jennymod/installer/
│ ├── Main.java # Entry point
│ ├── InstallerWindow.java # Swing GUI
│ ├── Installer.java # Install logic (SwingWorker)
│ ├── JavaDetector.java # Java version detection
│ ├── MinecraftFinder.java # Minecraft path detection
│ ├── ModDownloader.java # HTTP download with progress
│ └── Config.java # Install configuration
├── .github/workflows/
│ └── auto-commit.yml # Auto-update workflow (every 30 min)
├── preview.png # Repository social preview
└── LICENSE # MIT License
Q: Windows Defender / SmartScreen blocks the EXE — is it safe?
A: Yes. The warning appears because the executable is unsigned. This project is fully open source — review the source code and build it yourself if unsure.
Q: Which Minecraft version does this support?
A: The installer targets Minecraft Java Edition 1.12.2, the version JennyMod was built for.
Q: Where does the mod get installed?
A: Into %APPDATA%\.minecraft\mods\ by default. You can change the path in the installer UI.
Q: Do I need Java to run the installer EXE?
A: No. The .exe is self-contained. Java is only needed to run Minecraft itself.
Pull requests are welcome. For major changes, open an issue first to discuss what you'd like to change.
- Fork the repository
- Create a feature branch:
git checkout -b feature/my-change - Commit your changes
- Open a Pull Request
Distributed under the MIT License. See LICENSE for details.
