Brazil's biggest MU Online portal — since 2003
Tutorial Intermediate Server

How to create a client installer for your MU Online server

Complete guide to creating a professional installer for your MU Online server client: what a client installer does and why it matters for player onboarding, what files must be included in the client package (game binaries, custom textures, sounds, launcher), how to prepare the client folder before building the installer, the most-used free tools for creating Windows installers (Inno Setup and NSIS), step-by-step walkthrough with Inno Setup to build a .exe installer, how to add prerequisites (DirectX, Visual C++ Redistributable) to the installer, how to test the installer on a clean machine, hosting the installer for download, how to reduce antivirus false positives, and how to pair the installer with a launcher for automatic future updates.

RO Rodrigo · Updated on Sep 27, 2015 · ⏱ 12 min read
Quick answer

The way players first get your client onto their PC shapes their first impression of your server. A smooth, professional installer says "this server is serious." A confusing .zip with no instructions says the opposite.

The way players first get your client onto their PC shapes their first impression of your server. A smooth, professional installer says "this server is serious." A confusing .zip with no instructions says the opposite.

Nota: This guide explains the concepts and tools for creating a client installer. The client files (game binaries, textures, sounds) come from your MU Online distribution — this guide doesn't provide or distribute them.

What a client installer needs to include

CLIENT PACKAGE CONTENTS:

REQUIRED (must be in the installer):
→ Main.exe (or the main game executable — may have a different name)
   → Must already have the server's IP/hostname configured (see Main editing tutorial)
→ Launcher.exe (if your server uses a launcher for updates)
→ All game data folders: Data/, BMP/, Texture/, Sound/, Music/, Maps/ (or similar)
→ Required DLL files that may not be on the player's system
→ Server-specific files: config files, logo images, custom sounds

OPTIONAL BUT RECOMMENDED:
→ Visual C++ Redistributable (vcredist_x86.exe) — the MU client often needs it
→ DirectX redistributable — older client versions may require specific DirectX
→ README.txt with server information, rules, and Discord link

NOT NEEDED (players have these or don't need them):
→ Windows system DLLs (they come with Windows)
→ Development files (.pdb, debug builds)

PREPARE THE CLIENT FOLDER:
Before building the installer:
1. Install the client on YOUR PC and configure the Main.exe with your server's IP
2. Test that the client connects correctly
3. Then pack THAT configured client folder — not a generic one
4. Verify the folder contains all necessary files by testing on a clean VM or PC

Building an installer with Inno Setup

INNO SETUP — THE MOST POPULAR FREE INSTALLER CREATOR:

STEP 1 — DOWNLOAD AND INSTALL INNO SETUP:
→ Search "Inno Setup download" → jrsoftware.org
→ Install the latest version (free, open source)

STEP 2 — RUN THE INNO SETUP SCRIPT WIZARD:
→ Open Inno Setup → "File" → "New" → Use the Script Wizard
→ Or: File → New Script (start with a blank script for more control)

STEP 3 — WIZARD: APPLICATION INFORMATION:
→ Application name: "My Server Name"
→ Application version: "1.0" (or the client version)
→ Application publisher: "My Server Name Team"
→ Application website: (your server's website URL)

STEP 4 — WIZARD: APPLICATION FOLDER:
→ Default destination: {autopf}\MuServerName
  (autopf = Program Files on 64-bit or 32-bit Windows automatically)
→ Or use: {userappdata}\MuServerName
  (easier for non-admin users who can't write to Program Files)

STEP 5 — WIZARD: SELECT FILES:
→ Click "Add folder recursively" → select your prepared client folder
→ The wizard includes all files in the folder and subfolders

STEP 6 — WIZARD: SHORTCUTS:
→ Name: "My Server Name"
→ Target: Select Main.exe or Launcher.exe as the shortcut target
→ Add to Start Menu: yes
→ Add to Desktop: yes (optional — some servers make this the default)

STEP 7 — WIZARD: LICENSE FILE (optional):
→ Add a rules.txt or terms.txt that the player must accept before installation

STEP 8 — COMPILE:
→ Run → Compile (or press F9)
→ Inno Setup generates the .exe installer in the "Output" folder

Inno Setup script example

; BASIC INNO SETUP SCRIPT FOR MU ONLINE CLIENT

[Setup]
AppName=My MU Server
AppVersion=1.0
AppPublisher=My Server Team
DefaultDirName={autopf}\MyMUServer
DefaultGroupName=My MU Server
OutputBaseFilename=MyMUServer_Setup
Compression=lzma2
SolidCompression=yes
ArchitecturesInstallIn64BitMode=x64

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
; Source: path on your PC to the client folder
; DestDir: where to install it on the player's PC
Source: "C:\MyClientFolder\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs

[Icons]
; Shortcut in Start Menu
Name: "{group}\My MU Server"; Filename: "{app}\Launcher.exe"
; Desktop shortcut (optional)
Name: "{autodesktop}\My MU Server"; Filename: "{app}\Launcher.exe"; Tasks: desktopicon

[Run]
; Run the launcher after installation completes
Filename: "{app}\Launcher.exe"; Description: "{cm:LaunchProgram,My MU Server}"; Flags: nowait postinstall skipifsilent

Adding prerequisites to the installer

INSTALL DEPENDENCIES AUTOMATICALLY:

VISUAL C++ REDISTRIBUTABLE:
→ Many MU clients need the Visual C++ 2008 or 2010 redistributable
→ Download vcredist_x86.exe from Microsoft
→ Add to your installer script:

[Files]
Source: "prerequisites\vcredist_x86.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall

[Run]
Filename: "{tmp}\vcredist_x86.exe"; Parameters: "/quiet"; StatusMsg: "Installing Visual C++ 2008..."; Flags: waituntilterminated; Check: not VCRedistInstalled

; Function to check if already installed (add to [Code] section)
function VCRedistInstalled: Boolean;
begin
  Result := RegKeyExists(HKLM, 'SOFTWARE\Microsoft\VisualStudio\9.0\VC\VCRedist\x86');
end;

DIRECTX:
→ Most modern Windows (10/11) already have DirectX 9 via backwards compatibility
→ Older clients may need: dxwebsetup.exe (DirectX End-User Runtime Web Installer)
→ Same approach: include in installer, run silently before the game

Testing the installer

TESTING IS NOT OPTIONAL:

WHY YOU MUST TEST ON A CLEAN MACHINE:
→ Your development PC has all the dependencies installed over years
→ A fresh Windows PC might be missing Visual C++, certain DLLs, or DirectX
→ Testing on your own PC gives false confidence

HOW TO TEST:
OPTION A — Use a Windows Virtual Machine (VMware or VirtualBox, free):
1. Create a fresh Windows 10 or 11 VM (no extra software installed)
2. Copy the installer to the VM
3. Run the installer
4. Try to open the game
5. Note any errors → fix → rebuild installer → test again

OPTION B — Use a friend's PC:
→ Ask a friend who hasn't played your server to try installing from your download link
→ This also tests the download process, not just the installer

WHAT TO CHECK:
→ Does the installation complete without errors?
→ Do desktop and Start Menu shortcuts appear?
→ Does the launcher/game open from the shortcuts?
→ Does the game connect to the server?
→ Are there any antivirus warnings? (test with Windows Defender enabled)
Dica: Compress the installer itself with a 7-Zip self-extracting archive (.7z.exe) BEFORE distributing. This can cut download size by 30-50% compared to the Inno Setup installer alone, since Inno Setup's LZMA compression and 7-Zip's compression interact well. The player downloads the 7z.exe, runs it, it extracts and runs the Inno Setup installer automatically.

Hosting the installer for download

WHERE TO HOST THE INSTALLER:

OPTION 1 — YOUR OWN SERVER/HOSTING:
→ Upload to your web hosting: yourserver.com/download/
→ Put the installer in a folder and link from your website's download page
→ Make sure your hosting plan allows the file size (some limit files to 100 MB)
→ Most reliable: you control the link permanently

OPTION 2 — FILE HOSTING SERVICES:
→ MediaFire, MEGA, Google Drive — free and support large files
→ Disadvantage: links may expire or change if the host changes policies
→ Backup the installer link in multiple places

OPTION 3 — GITHUB RELEASES:
→ Create a GitHub repository for your server's public files
→ Use "Releases" to publish versioned installers
→ Free, reliable, and gives download count statistics
→ Installer must be under 2 GB per file

Pair this guide with the launcher creation tutorial (for setting up automatic updates after the initial install), the Main editing tutorial (for configuring the client's connection settings before packaging it into the installer), and the DDoS protection tutorial (since distributing the client exposes your server's IP unless you take steps to hide it).

Frequently asked questions

Why create an installer instead of just a .zip file?

A .zip requires players to know where to extract files and how to configure shortcuts. An installer does everything automatically: extracts files to the right folder, creates desktop and Start Menu shortcuts, installs prerequisites if needed, and leaves the game ready to open. Players who download a .zip and can't figure out the extraction process become players who never joined your server.

Do I need coding skills to create an installer?

No. Inno Setup uses a simple scripting language and has a Wizard that generates the script for you by asking questions. You point it to your client folder, set the name and shortcuts, and it builds the installer. No programming required for a basic installer.

Why does the installer trigger antivirus warnings?

Antivirus software flags installers (especially unsigned ones) because they're a common malware delivery method. Your MU server client has zero malware, but the antivirus doesn't know that. Solutions: (1) Add an exception in your antivirus and tell players to do the same. (2) Get a code-signing certificate ($50-200/year) to digitally sign the installer — most antiviruses whitelist signed installers. (3) Submit the installer to Microsoft's Malware Protection Center for safe classification.

How large should the installer be?

The full MU Season 6 client is typically 1-3 GB uncompressed. A 7-Zip compressed installer shrinks this to 400-800 MB, depending on how many textures and sound files are included. Keep the installer as small as possible by only including what's needed for initial play — large updates can be delivered by the launcher after the initial install.

RO
Founder & editor-in-chief

Rodrigo has run ViciadosMU since the portal's early days. A specialist in MU Online server creation and administration, game history and the evolution of the seasons — he wrote much of the archive before 2024.

Keep reading

Related articles

🖌️
Tutorial

How to edit the Main, login screen and client resolution

Complete guide to customizing a MU Online private server client: what the Main.exe controls (server connection, client behavior, texts), the two methods for changing the server IP in the client (config file vs hex editor), how to use HxD to safely hex-edit Main.exe and replace the hardcoded IP, how to change the login background image (correct file format, dimensions, and location by season), how to edit the WTF file and text files to customize in-game messages and item names, how to fix broken accent characters (locale setting, font files, encoding), how to configure the client resolution for modern widescreen monitors, a full list of tools you need for client editing, and the safety checklist before distributing a modified client.

12 min · Advanced ·
🚀
Tutorial

How to create an update launcher for MU Online

Complete guide to creating an update launcher for a MU Online server: what a launcher does (compares client files with the server and downloads only what changed), how the version list / patch list works (file hashes, sizes, and paths), how to host the update files on your website, configuring the launcher to point to your update server URL, the difference between launchers that download the whole client and patch-based launchers that update incrementally, how to handle a client update that changes hundreds of files efficiently, what to put on the launcher's interface (server news, social links, play button, background), common launcher problems and how to fix them (SSL errors, hash mismatches, download failures), and the best pre-built launcher solutions available for MU Online Season 6 servers.

12 min · Intermediate ·
🛡️
Tutorial

How to create a MU Online server (complete 2026 guide)

The complete beginner-friendly guide to creating a MU Online private server in 2026: what each component does (SQL Server, MuServer, the game client, the launcher, the website), the recommended technology stack for different seasons, the full step-by-step process from database installation through local testing and going online, network configuration for home servers (port forwarding, No-IP, Hamachi) and VPS servers, security essentials before opening to the public (strong passwords, closed SQL port, anti-hack), choosing the right season for your goals, what to expect in terms of time investment, and the most common first-server mistakes to avoid.

15 min · Advanced ·