diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-02-01 23:30:05 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-02-01 23:33:03 +0100 |
commit | 06841f67c78baa3adc6eec02998ac9f96ffd27df (patch) | |
tree | 27bb8ce5fdb563a9dac68fa397905bc0073bc21c /src/Release | |
parent | 9b88625d9713309c2dd9285f69875852aad6fe6c (diff) | |
download | VeraCrypt-06841f67c78baa3adc6eec02998ac9f96ffd27df.tar.gz VeraCrypt-06841f67c78baa3adc6eec02998ac9f96ffd27df.zip |
Windows MSI: set minimum support for MSI installation to Windows 7
Diffstat (limited to 'src/Release')
-rw-r--r-- | src/Release/Setup Files/Product64.wxs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Release/Setup Files/Product64.wxs b/src/Release/Setup Files/Product64.wxs index 8f453a05..661115db 100644 --- a/src/Release/Setup Files/Product64.wxs +++ b/src/Release/Setup Files/Product64.wxs @@ -82,16 +82,16 @@ Schedule="afterInstallExecute" /> - <!-- Windows 8 (602) is our Min OS --> + <!-- Windows 7 (601) is our Min OS --> <!-- See https://docs.microsoft.com/en-us/windows/win32/msi/operating-system-property-values --> <!-- 'Installed' is a Windows Installer property that is set only if the product is installed per-machine or for the current user. Using !Installed ensures the check is only done when the user is installing the application, rather than on a repair or remove --> - <!-- Notice the ! : If Not Installed AND VersionNT < 602 => Show error message --> + <!-- Notice the ! : If Not Installed AND VersionNT < 601 => Show error message --> <Condition Message="!(loc.MinOs)"> <![CDATA[ Installed - OR (VersionNT = 602) - OR (VersionNT > 602) + OR (VersionNT = 601) + OR (VersionNT > 601) ]]> </Condition> |