Skip to content

Commit

Permalink
Update CVEChecker.ps1
Browse files Browse the repository at this point in the history
updated support OS ver list to include 23H2 and 24H2... removed some older versions from the list
  • Loading branch information
ofelman authored Oct 22, 2024
1 parent f249ad3 commit 7915901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CVEChecker.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Parameters
-Platform < SysID >
-OS < win10|win11>
-OSVer < 1909|2004|2009|21H1|21H2|22H2 >
-OSVer < 21H2|22H2|23H2|24H2 > # Updated list 10/2024
-ListPrevious -- also check and show previous Softpaqs w/vulnerabilities
-DebugOutput -- [switch] add additional info to output
-NoDots -- [switch] avoid output of '.' while looping (useful when redirecting output)
Expand Down Expand Up @@ -59,7 +59,7 @@ param(
[string]$Platform,
[Parameter(Position = 1)] [ValidateSet('win10', 'win11')]
[string]$OS,
[Parameter(Position = 2)] [ValidateSet('1909','2004','20H1','2009','20H2','21H1','21H2','22H2')]
[Parameter(Position = 2)] [ValidateSet('20H2','21H1','21H2','22H2','23H2','24H2')] # Updated list 10/2024
[string]$OSVer,
[Parameter(Mandatory = $false)]
[switch]$ListPrevious,
Expand Down

0 comments on commit 7915901

Please sign in to comment.