githubEdit

WiX MSI

Create an MSI file for your Electron app on Windows using Electron Forge.

The WiX MSI target builds .msi files, which are "traditional" Windows installer files.

circle-exclamation

Requirements

You can only build the WiX MSI target on machines with WiX Toolset v3arrow-up-right installed. We recommend pinning your installation of WiX Toolset to a specific version. You can install WiX Toolset on Windows via Chocolateyarrow-up-right.

choco install wixtoolset  --version=3.14.0

Installation

npm install --save-dev @electron-forge/maker-wix

Usage

To use @electron-forge/maker-wix, add it to the makers array in your Forge configuration:

module.exports = {
  makers: [
    {
      name: '@electron-forge/maker-wix',
      config: {
        language: 1033,
        manufacturer: 'My Awesome Company'
      }
    }
  ]
};

Configuration options are documented in MakerWixConfigarrow-up-right.

Debugging

For advanced debug logging for this maker, add the DEBUG=electron-wix-msi* environment variable.

Last updated

Was this helpful?