Make InstallCertificates and MsiProcessDrivers order deterministic

The certificate(s) must be installed before drivers are installed.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2019-04-26 14:48:39 +02:00
parent aeb0657dff
commit 585ec16cac

View File

@ -128,5 +128,9 @@
<Custom Action="WoW64Unsupported" After="LaunchConditions"><![CDATA[VersionNT64]]></Custom> <Custom Action="WoW64Unsupported" After="LaunchConditions"><![CDATA[VersionNT64]]></Custom>
</InstallUISequence> </InstallUISequence>
<?endif?> <?endif?>
<InstallExecuteSequence>
<Custom Action="InstallCertificates" Before="MsiProcessDrivers"><![CDATA[VersionNT > 400]]></Custom>
</InstallExecuteSequence>
</Module> </Module>
</Wix> </Wix>