mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 01:23:22 +01:00
Add Wix file for MSI builds (#1099)
This adds a basic wxs file to build MSI installer This file was created using docs from https://wixtoolset.org/docs/schema/wxs/ and examples from gsudo, qemu-shoggoth, and many others. The main difference between this and the .exe installer is that we don't use the netbird service command to install the daemon
This commit is contained in:
parent
f89c200ce9
commit
4e2d075413
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -19,7 +19,7 @@ on:
|
|||||||
- '**/Dockerfile.*'
|
- '**/Dockerfile.*'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
SIGN_PIPE_VER: "v0.0.8"
|
SIGN_PIPE_VER: "v0.0.9"
|
||||||
GORELEASER_VER: "v1.14.1"
|
GORELEASER_VER: "v1.14.1"
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
|
77
client/netbird.wxs
Normal file
77
client/netbird.wxs
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
<Wix
|
||||||
|
xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
||||||
|
<Package Name="NetBird" Version="$(env.NETBIRD_VERSION)" Manufacturer="Wiretrustee UG (haftungsbeschreankt)" Language="1033" UpgradeCode="6456ec4e-3ad6-4b9b-a2be-98e81cb21ccf"
|
||||||
|
InstallerVersion="500" Compressed="yes" Codepage="utf-8" >
|
||||||
|
|
||||||
|
<MediaTemplate EmbedCab="yes" />
|
||||||
|
|
||||||
|
<Feature Id="NetbirdFeature" Title="Netbird" Level="1">
|
||||||
|
<ComponentGroupRef Id="NetbirdFilesComponent" />
|
||||||
|
</Feature>
|
||||||
|
|
||||||
|
<MajorUpgrade AllowSameVersionUpgrades='yes' DowngradeErrorMessage="A newer version of [ProductName] is already installed. Setup will now exit."/>
|
||||||
|
|
||||||
|
<StandardDirectory Id="ProgramFiles64Folder">
|
||||||
|
<Directory Id="NetbirdInstallDir" Name="Netbird">
|
||||||
|
<Component Id="NetbirdFiles" Guid="db3165de-cc6e-4922-8396-9d892950e23e" Bitness="always64">
|
||||||
|
<File ProcessorArchitecture="x64" Source=".\dist\netbird_windows_amd64\netbird.exe" KeyPath="yes" />
|
||||||
|
<File ProcessorArchitecture="x64" Source=".\dist\netbird_windows_amd64\netbird-ui.exe">
|
||||||
|
<Shortcut Id="NetbirdDesktopShortcut" Directory="DesktopFolder" Name="NetBird" WorkingDirectory="NetbirdInstallDir" Icon="NetbirdIcon" />
|
||||||
|
<Shortcut Id="NetbirdStartMenuShortcut" Directory="StartMenuFolder" Name="NetBird" WorkingDirectory="NetbirdInstallDir" Icon="NetbirdIcon" />
|
||||||
|
</File>
|
||||||
|
<File ProcessorArchitecture="x64" Source=".\dist\netbird_windows_amd64\wintun.dll" />
|
||||||
|
|
||||||
|
<ServiceInstall
|
||||||
|
Id="NetBirdService"
|
||||||
|
Name="NetBird"
|
||||||
|
DisplayName="NetBird"
|
||||||
|
Description="A WireGuard-based mesh network that connects your devices into a single private network."
|
||||||
|
Start="auto" Type="ownProcess"
|
||||||
|
ErrorControl="normal"
|
||||||
|
Account="LocalSystem"
|
||||||
|
Vital="yes"
|
||||||
|
Interactive="no"
|
||||||
|
Arguments='service run config [CommonAppDataFolder]Netbird\config.json log-level info'
|
||||||
|
/>
|
||||||
|
<ServiceControl Id="NetBirdService" Name="NetBird" Start="install" Stop="both" Remove="uninstall" Wait="yes" />
|
||||||
|
|
||||||
|
<Environment Id="UpdatePath" Name="PATH" Value="[NetbirdInstallDir]" Part="last" Action="set" System="yes" />
|
||||||
|
|
||||||
|
</Component>
|
||||||
|
</Directory>
|
||||||
|
</StandardDirectory>
|
||||||
|
|
||||||
|
<ComponentGroup Id="NetbirdFilesComponent">
|
||||||
|
<ComponentRef Id="NetbirdFiles" />
|
||||||
|
</ComponentGroup>
|
||||||
|
|
||||||
|
<Property Id="cmd" Value="cmd.exe"/>
|
||||||
|
|
||||||
|
<CustomAction Id="KillDaemon"
|
||||||
|
ExeCommand='/c "taskkill /im netbird.exe"'
|
||||||
|
Execute="deferred"
|
||||||
|
Property="cmd"
|
||||||
|
Impersonate="no"
|
||||||
|
Return="ignore"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CustomAction Id="KillUI"
|
||||||
|
ExeCommand='/c "taskkill /im netbird-ui.exe"'
|
||||||
|
Execute="deferred"
|
||||||
|
Property="cmd"
|
||||||
|
Impersonate="no"
|
||||||
|
Return="ignore"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<InstallExecuteSequence>
|
||||||
|
<!-- For Uninstallation -->
|
||||||
|
<Custom Action="KillDaemon" Before="RemoveFiles" Condition="Installed"/>
|
||||||
|
<Custom Action="KillUI" After="KillDaemon" Condition="Installed"/>
|
||||||
|
</InstallExecuteSequence>
|
||||||
|
|
||||||
|
<!-- Icons -->
|
||||||
|
<Icon Id="NetbirdIcon" SourceFile=".\client\ui\netbird.ico" />
|
||||||
|
<Property Id="ARPPRODUCTICON" Value="NetbirdIcon" />
|
||||||
|
|
||||||
|
</Package>
|
||||||
|
</Wix>
|
Loading…
Reference in New Issue
Block a user