Skip to content

Commit

Permalink
Fix minimum Windows 10 version
Browse files Browse the repository at this point in the history
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
  • Loading branch information
johnstevenson committed Jun 19, 2024
1 parent a297a6f commit 4d2b1e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/installer/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion src/updater.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d2b1e6

Please sign in to comment.