Require Windows 10 or higher #8051
Replies: 3 comments 2 replies
-
This seems you want to block an msi. |
Beta Was this translation helpful? Give feedback.
-
A few more things to consider...... Why? Is it a physical requirement or is it a support policy? If physical, I try to detect and block on that instead. If support policy, which version of windows 10? There's been more a few now. Don't forget to add the old I think I've forgotten more then I remember about the various appcompat hacks that Windows does so make sure whatever source of truth you use isn't lying to you. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion might be a good place to look. |
Beta Was this translation helpful? Give feedback.
-
But the The burn builtin variables are for bundle use (.exe) only. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Using Wix v4 under VS2022
I try to make a condition to ensure OS is Windows 10 or higher
<Launch Condition="NOT (VersionNT >= v6.3)" Message="This application requires Windows 10 or higher." />
TBH I tried
<Launch Condition="VersionNT64 < 603" Message="This application requires Windows 10 or higher." />
and many others, but on Windows 10 it still says "This application requires Windows 10 or higher."
Can you tell what I do wrong ?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions