Skip to content

Commit

Permalink
Fix .msi disallowing install to network drives
Browse files Browse the repository at this point in the history
  • Loading branch information
MMulthaupt committed Dec 21, 2023
1 parent 29f09eb commit 7264395
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release-Changelog

## v1.8.1 (2023-12-21)
### Fixes
* MSI Build will no longer deny installation into network drive.

## v1.8.0 (2023-12-20)
### Changes
* Raise minimum golang requirement to 1.17.
Expand Down
4 changes: 4 additions & 0 deletions build/launcher.wxs.template
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
<!-- Define the property to tell WIX to use the folder given in WIXUI_INSTALLDIR -->
<Property Id="WIXUI_INSTALLDIR" Value="APPLICATIONROOTDIRECTORY"/>

<!-- Allow installation to network drives. BUG: If .msi is built with Wix v3, users must TYPE
the path instead of using the browse dialog for this to work. See https://github.com/wixtoolset/issues/issues/4737 -->
<Property Id="WIXUI_DONTVALIDATEPATH" Value="1" />

<!-- Configure variables for ProgramFiles path to install into the correct 64bit directory when installing
the 64bit version -->
<?if $(sys.BUILDARCH) = x64 ?>
Expand Down

0 comments on commit 7264395

Please sign in to comment.