Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
75cc5c22d0 | ||
|
|
9a7fa4a219 | ||
|
|
e9ec652205 | ||
|
|
52731ed50a |
2
LICENCE
2
LICENCE
@@ -186,7 +186,7 @@
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright {yyyy} {name of copyright owner}
|
||||
Copyright 2024 Alexandre JARDON (WebalexEU)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -29,8 +29,8 @@
|
||||
xmlns="http://wixtoolset.org/schemas/v4/wxs"
|
||||
>
|
||||
<Package UpgradeCode="0889d60f-67d5-4bf5-8918-2d5e810f888d" Name="$(var.ProductName)" Version="$(var.Version)"
|
||||
Manufacturer="Webalex System" Language="1033" Scope="perMachine">
|
||||
<SummaryInformation Manufacturer="Webalex System" Description="$(var.ProductName) $(var.Version) installer" />
|
||||
Manufacturer="WebalexEU" Language="1033" Scope="perMachine">
|
||||
<SummaryInformation Manufacturer="WebalexEU" Description="$(var.ProductName) $(var.Version) installer" />
|
||||
|
||||
<CustomAction Id="GenerateConfig"
|
||||
Execute="deferred"
|
||||
@@ -88,10 +88,10 @@
|
||||
|
||||
<InstallExecuteSequence>
|
||||
<Custom Action="GenerateConfig" After="InstallFiles" Condition="NOT Installed AND NOT WIX_UPGRADE_DETECTED AND NOT WIX_DOWNGRADE_DETECTED" />
|
||||
<Custom Action="EnableWindowsFeature" After="InstallFiles" Condition="&Features=3 AND NOT Installed" />
|
||||
<Custom Action="EnableWindowsFeatureRSAT" After="EnableWindowsFeature" Condition="&Features=3 AND NOT Installed" />
|
||||
<Custom Action="EnableRouting" After="EnableWindowsFeatureRSAT" Condition="&Features=3 AND NOT Installed" /> <!-- TO CHECK to use Condition="MAINTENANCE" for upgrade -->
|
||||
<ScheduleReboot After="InstallFinalize" Condition="&Features=3 AND NOT Installed" /> <!-- TO CHECK <Condition>REBOOT_REQUIRED</Condition> -->
|
||||
<Custom Action="EnableWindowsFeature" After="InstallFiles" Condition="&Features=3 AND NOT Installed AND (MsiNTProductType=2 OR MsiNTProductType=3)" />
|
||||
<Custom Action="EnableWindowsFeatureRSAT" After="EnableWindowsFeature" Condition="&Features=3 AND NOT Installed AND (MsiNTProductType=2 OR MsiNTProductType=3)" />
|
||||
<Custom Action="EnableRouting" After="EnableWindowsFeatureRSAT" Condition="&Features=3 AND NOT Installed AND (MsiNTProductType=2 OR MsiNTProductType=3)" /> <!-- TO CHECK to use Condition="MAINTENANCE" for upgrade -->
|
||||
<ScheduleReboot After="InstallFinalize" Condition="&Features=3 AND NOT Installed AND (MsiNTProductType=2 OR MsiNTProductType=3)" /> <!-- TO CHECK <Condition>REBOOT_REQUIRED</Condition> -->
|
||||
<Custom Action='RemoveConfig' Before='RemoveFiles' Condition='Installed AND (REMOVE="ALL") AND NOT (WIX_UPGRADE_DETECTED OR UPGRADINGPRODUCTCODE)' />
|
||||
</InstallExecuteSequence>
|
||||
|
||||
@@ -127,7 +127,7 @@
|
||||
Id="Features"
|
||||
Level="1"
|
||||
Title="Routing features"
|
||||
Description="Enable required windows features for routing capabilities"
|
||||
Description="Enable required windows features for routing capabilities (Only available on Windows Server)"
|
||||
Display="expand"
|
||||
AllowAdvertise="no"
|
||||
InstallDefault="local"
|
||||
|
||||
Reference in New Issue
Block a user