From 11c3eeb9b899d43cf8614e7fc199f22d79753a14 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Thu, 29 May 2025 16:22:17 -0700 Subject: [PATCH] Add Windows 10 LTSB 2016 and LTSC 2019 to release options and update version mapping --- FFUDevelopment/FFUUI.Core/FFUUI.Core.psm1 | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/FFUDevelopment/FFUUI.Core/FFUUI.Core.psm1 b/FFUDevelopment/FFUUI.Core/FFUUI.Core.psm1 index 7cccc20..5994bd6 100644 --- a/FFUDevelopment/FFUUI.Core/FFUUI.Core.psm1 +++ b/FFUDevelopment/FFUUI.Core/FFUUI.Core.psm1 @@ -86,6 +86,8 @@ $script:allWindowsReleases = @( [PSCustomObject]@{ Display = "Windows Server 2019"; Value = 2019 }, [PSCustomObject]@{ Display = "Windows Server 2022"; Value = 2022 }, [PSCustomObject]@{ Display = "Windows Server 2025"; Value = 2025 }, + [PSCustomObject]@{ Display = "Windows 10 LTSB 2016"; Value = 1607 }, + [PSCustomObject]@{ Display = "Windows 10 LTSC 2019"; Value = 1809 }, [PSCustomObject]@{ Display = "Windows 10 LTSC 2021"; Value = 2021 }, [PSCustomObject]@{ Display = "Windows 10 LTSC 2024"; Value = 2024 } ) @@ -98,12 +100,14 @@ $script:mctWindowsReleases = @( $script:windowsVersionMap = @{ 10 = @("22H2") 11 = @("22H2", "23H2", "24H2") - 2016 = @("1607") - 2019 = @("1809") + 1607 = @("1607") # Windows 10 LTSB 2016 + 1809 = @("1809") # Windows 10 LTSC 2019 + 2016 = @("1607") # Server 2016 + 2019 = @("1809") # Server 2019 2021 = @("21H2") # LTSC 2021 - 2022 = @("21H2") + 2022 = @("21H2") # Server 2022 2024 = @("24H2") # LTSC 2024 - 2025 = @("24H2") + 2025 = @("24H2") # Server 2025 } # --------------------------------------------------------------------------