You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Condition Message="Windows 7 (with Service Pack 1) or greater required.">
385
385
((VersionNT > 601) OR (VersionNT = 601 AND ServicePackLevel >= 1))
386
386
</Condition>
387
387
<?else?>
388
388
<Condition Message="Windows 10 or greater required.">
389
-
(VersionNT >= 1000)
389
+
<!-- In true MS fashion, Windows 10 pretends to be windows 8.1.
390
+
See https://learn.microsoft.com/en-us/troubleshoot/windows-client/application-management/versionnt-value-for-windows-10-server .
391
+
Workarounds exist, but seem difficult/flaky.
392
+
1) We could build a "bootstrapper" with wix burn, but then we'll be building .exes and there might be implications to that.
393
+
2) We can try one of the things listed here: https://stackoverflow.com/q/31932646 but that takes us back to https://github.com/wixtoolset/issues/issues/5824 and needing a bootstrapper.
0 commit comments