From e0c4ce00dc5415bb0441e599aa9a86a2f6021707 Mon Sep 17 00:00:00 2001 From: Gustave Monce Date: Tue, 26 Nov 2024 21:16:07 +0100 Subject: [PATCH] Add WNC (210) --- src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs b/src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs index 3de89bd2..a2aa5866 100644 --- a/src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs +++ b/src/UnifiedUpdatePlatform.Services.WindowsUpdate/CTAC.cs @@ -251,6 +251,7 @@ public enum OSSkuId XboxDurangoHostOS = 0x000000C4, XboxScarlettHostOS = 0x000000C5, XboxKeystone = 0x000000C6, + WNC = 0x000000D2, AzureStackHCIServerCore = 0x00000196, DatacenterServerAzureEdition = 0x00000197, DatacenterServerCoreAzureEdition = 0x00000198 @@ -341,6 +342,12 @@ private void BuildCTAC( ReportingPFN = "WCOSDevice0.OS"; DeviceFamily = "Windows.Core"; } + else if (ReportingSku == OSSkuId.WNC) + { + InstallType = "Client"; + ReportingPFN = "WNC.OS"; + DeviceFamily = "Windows.Desktop"; + } else if (ReportingSku == OSSkuId.Andromeda) { InstallType = "FactoryOS";