nsis-installer-generator
SolidGenerate NSIS installer scripts for Windows with custom UI and features
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# nsis-installer-generator
Generate NSIS (Nullsoft Scriptable Install System) installer scripts for Windows applications.
## Capabilities
- Generate NSIS scripts
- Configure installer UI
- Set up components selection
- Configure file associations
- Add registry entries
- Create shortcuts
- Configure uninstaller
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"appName": { "type": "string" },
"version": { "type": "string" },
"components": { "type": "array" },
"createShortcuts": { "type": "boolean" }
},
"required": ["projectPath", "appName", "version"]
}
```
## NSIS Script Example
```nsi
!include "MUI2.nsh"
Name "My Application"
OutFile "MyApp-Setup.exe"
InstallDir "$PROGRAMFILES\MyApp"
RequestExecutionLevel admin
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
Section "Install"
SetOutPath $INSTDIR
File /r "dist\*.*"
WriteUninstaller "$INSTDIR\Uninstall.exe"
CreateShortcut "$DESKTOP\MyApp.lnk" "$INSTDIR\MyApp.exe"
SectionEnd
Section "Uninstall"
Delete "$DESKTOP\MyApp.lnk"
RMDir /r "$INSTDIR"
SectionEnd
```
## Related Skills
- `wix-toolset-config`
- `windows-authenticode-signer`
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
wix-toolset-config
Configure WiX Toolset for Windows MSI installers
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
dmg-creator
Create macOS DMG installers with custom backgrounds and app placement
1,160 Updated today
a5c-ai AI & Automation Solid
sdk-init-generator
Generate SDK initialization wizards and scaffolding
1,160 Updated today
a5c-ai