Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Configure WiX Toolset for Windows MSI installers
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 8% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-16 | ✗→✓ | ▲ Improved | 70% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 3% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 29% | 0% |
Configure WiX Toolset for creating Windows MSI installers with proper component structure and features.
json{ "type": "object", "properties": { "projectPath": { "type": "string" }, "productName": { "type": "string" }, "version": { "type": "string" }, "manufacturer": { "type": "string" }, "upgradeCode": { "type": "string" } }, "required": ["projectPath", "productName", "version"] }
xml<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Product Id="*" Name="My Application" Version="1.0.0.0" Manufacturer="My Company" Language="1033" UpgradeCode="PUT-GUID-HERE"> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/> <MajorUpgrade DowngradeErrorMessage="A newer version is already installed."/> <MediaTemplate EmbedCab="yes"/> <Feature Id="ProductFeature" Title="My Application" Level="1"> <ComponentGroupRef Id="ProductComponents"/> </Feature> </Product> <Fragment> <Directory Id="TARGETDIR" Name="SourceDir"> <Directory Id="ProgramFilesFolder"> <Directory Id="INSTALLFOLDER" Name="MyApplication"/> </Directory> </Directory> </Fragment> <Fragment> <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> <Component Id="MainExecutable"> <File Source="$(var.SourceDir)\MyApp.exe"/> </Component> </ComponentGroup> </Fragment> </Wix>
nsis-installer-generatormsix-package-generatorOther measured skills in the registry, with their headline benchmark lift.