Skip to content

Commit faaaabf

Browse files
cfsmp3claude
andcommitted
fix(installer): Add missing WIXUI_INSTALLDIR property and fix RemoveFolder ID
- Added WIXUI_INSTALLDIR property (required per WiX issue #7105) - Changed RemoveFolder Id from "DesktopFolder" to "RemoveDesktopShortcut" to avoid ID conflict with StandardDirectory element 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent f5a9018 commit faaaabf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

windows/installer.wxs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<Icon Id="ccxgui.exe" SourceFile="./installer/ccxgui.exe"/>
1515
<!-- Use standard WixUI_InstallDir dialog set -->
1616
<ui:WixUI Id="WixUI_InstallDir" InstallDirectory="INSTALLFOLDER" />
17+
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER"/>
1718
<Property Id="ARPNOMODIFY" Value="1" />
1819
</Package>
1920
<Fragment>
@@ -24,7 +25,7 @@
2425
Description="Run CCExtractor"
2526
Target="[INSTALLFOLDER]ccxgui.exe"
2627
WorkingDirectory="INSTALLFOLDER"/>
27-
<RemoveFolder Id="DesktopFolder" On="uninstall"/>
28+
<RemoveFolder Id="RemoveDesktopShortcut" On="uninstall"/>
2829
<RegistryValue
2930
Root="HKCU"
3031
Key="Software\CCExtractor\ccextractor"

0 commit comments

Comments
 (0)