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.
We generally recommend using the Squirrel.Windows target over using this one. These MSI files are a worse user experience for installation but sometimes it is necessary to build MSI files to appease large-scale enterprise companies with internal application distribution policies.
Requirements
You can only build the WiX MSI target on machines with WiX Toolset v3 installed. We recommend pinning your installation of WiX Toolset to a specific version. You can install WiX Toolset on Windows via Chocolatey.
Installation
Usage
To use @electron-forge/maker-wix
, add it to the makers
array in your Forge configuration:
Configuration options are documented in MakerWixConfig
.
Debugging
For advanced debug logging for this maker, add the DEBUG=electron-wix-msi*
environment variable.
Last updated