From 4d2b1e6bb97b1975d443f2fa3cbf507446a8dcd3 Mon Sep 17 00:00:00 2001 From: John Stevenson Date: Wed, 19 Jun 2024 13:44:33 +0100 Subject: [PATCH] Fix minimum Windows 10 version Microsoft documentation stated that the /drivers option for pnputil.exe enum-devices was available in Windows 10 version 1903. However the current documentation states that it is not available until Windows 10 version 2004. Fixes #5 --- README.md | 2 +- src/installer/setup.iss | 2 +- src/updater.iss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1c05382..da701b0 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![GitHub releases](https://img.shields.io/github/downloads/johnstevenson/pl2303-legacy/total?color=coral)](https://github.com/johnstevenson/pl2303-legacy/releases/) - For authentic Prolific PL2303 HXA/XA and TA/TB microchips -- Supports Windows 10 (x86, x64), from version 1903 (May 2019 update) +- Supports Windows 10 (x86, x64), from version 2004 (May 2020 update, build 19041) - Supports Windows 11 (x64) ![Screenshot](screenshot.png) diff --git a/src/installer/setup.iss b/src/installer/setup.iss index 86384b4..dfeffc3 100644 --- a/src/installer/setup.iss +++ b/src/installer/setup.iss @@ -25,7 +25,7 @@ SolidCompression=yes ; runtime directives PrivilegesRequired=admin ArchitecturesInstallIn64BitMode=x64 -MinVersion=10.0.18362 +MinVersion=10.0.19041 DisableWelcomePage=yes DisableProgramGroupPage=yes DefaultDirName={autopf}\{#AppName} diff --git a/src/updater.iss b/src/updater.iss index 58a4acb..c5c9a2c 100644 --- a/src/updater.iss +++ b/src/updater.iss @@ -23,7 +23,7 @@ SolidCompression=yes ; runtime directives PrivilegesRequired=admin ArchitecturesInstallIn64BitMode=x64 -MinVersion=10.0.18362 +MinVersion=10.0.19041 DisableWelcomePage=yes DisableDirPage=yes DisableReadyPage=yes