aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-04-26 14:48:39 +0200
committerSimon Rozman <simon@rozman.si>2019-04-26 14:57:03 +0200
commit585ec16cac973119160444b51035915b80aefb20 (patch)
tree14644c987a78a337ae0bf19cb36f921776180192
parentinstaller: put whql assets in reasonable place (diff)
downloadwintun-585ec16cac973119160444b51035915b80aefb20.tar.xz
wintun-585ec16cac973119160444b51035915b80aefb20.zip
Make InstallCertificates and MsiProcessDrivers order deterministic0.1
The certificate(s) must be installed before drivers are installed. Signed-off-by: Simon Rozman <simon@rozman.si>
-rw-r--r--wintun.wxs4
1 files changed, 4 insertions, 0 deletions
diff --git a/wintun.wxs b/wintun.wxs
index 75c8f3f..3d5d1d8 100644
--- a/wintun.wxs
+++ b/wintun.wxs
@@ -128,5 +128,9 @@
<Custom Action="WoW64Unsupported" After="LaunchConditions"><![CDATA[VersionNT64]]></Custom>
</InstallUISequence>
<?endif?>
+
+ <InstallExecuteSequence>
+ <Custom Action="InstallCertificates" Before="MsiProcessDrivers"><![CDATA[VersionNT > 400]]></Custom>
+ </InstallExecuteSequence>
</Module>
</Wix>