wix-toolset-config
SolidConfigure WiX Toolset for Windows MSI installers
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 92/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# wix-toolset-config
Configure WiX Toolset for creating Windows MSI installers with proper component structure and features.
## Capabilities
- Generate WiX source files (.wxs)
- Configure product and package info
- Set up components and features
- Configure registry entries
- Set up services
- Handle upgrades
- Configure custom actions
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"productName": { "type": "string" },
"version": { "type": "string" },
"manufacturer": { "type": "string" },
"upgradeCode": { "type": "string" }
},
"required": ["projectPath", "productName", "version"]
}
```
## WiX Example
```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="M...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
qt-installer-framework-config
Configure Qt Installer Framework for cross-platform installers with component management, online updates, and custom UI
1,160 Updated today
a5c-ai AI & Automation Solid
nsis-installer-generator
Generate NSIS installer scripts for Windows with custom UI and features
1,160 Updated today
a5c-ai AI & Automation Solid
msix-package-generator
Generate MSIX packaging configuration with manifest, assets, and signing for Windows applications
1,160 Updated today
a5c-ai AI & Automation Solid
winui3-migration-helper
Assist migration from WPF to WinUI 3 / Windows App SDK with code transformation and compatibility guidance
1,160 Updated today
a5c-ai AI & Automation Solid
wpf-xaml-style-generator
Generate XAML styles, templates, and resource dictionaries with theme support for WPF applications
1,160 Updated today
a5c-ai