Error Codes Wiki

Windows MSI Error 1603 — Fatal Error During Installation

Errorinstaller

Overview

MSI installer error 1603 is a generic fatal error during installation, caused by insufficient permissions, disk space, running processes, or corrupted installer data.

Key Details

  • Error 1603 is the most common MSI installer failure code — a generic fatal error
  • The actual cause is logged in %TEMP%\MSI*.LOG files with detailed error info
  • Often occurs when installing Visual C++ Redistributables, .NET Framework, or Office
  • Custom actions in the MSI package can fail silently and trigger 1603
  • Windows Installer service (msiserver) must be running properly

Common Causes

  • Insufficient disk space on the installation target drive
  • Previous installation remnants blocking the new install
  • Required Windows service not running (msiserver, TrustedInstaller)
  • Antivirus blocking installer file operations
  • Short file name (8.3) creation disabled on the target volume

Steps

  1. 1Check MSI log: look in %TEMP% for the latest MSI*.LOG file and search for 'Return value 3'
  2. 2Ensure at least 10GB free space on C: drive
  3. 3Run installer as Administrator — right-click > Run as administrator
  4. 4Temporarily disable antivirus real-time protection during installation
  5. 5Use Microsoft Program Install and Uninstall Troubleshooter to clean up failed installations

Tags

windowsmsierror-1603installerinstallation-failed

More in Installer

Frequently Asked Questions

Check %TEMP% for MSI*.LOG files. Open the latest one and search for 'Return value 3' — the lines above show the actual failure.