Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.07 KB

wix-msi.md

File metadata and controls

24 lines (17 loc) · 1.07 KB
description
Create an MSI file for your Electron app on Windows using Electron Forge.

WiX MSI

The WiX MSI target builds .msi files, which are "traditional" Windows installer files. Please note we 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. For more info, check out "Should I use WiX MSI?".

You can only build the WiX MSI target on machines with light and candle installed from the WiX toolkit.

Configuration options are documented in MakerWixConfig.

Usage

{
  name: '@electron-forge/maker-wix',
  config: {
    language: 1033,
    manufacturer: 'My Awesome Company'
  }
}