From 658c57e22c56ff2bf2d0c2a64d303201f3a901c2 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Fri, 24 Oct 2025 22:42:57 -0700 Subject: [PATCH] Updates Dell driver catalog handling to use CatalogIndexPC for Windows releases 11 and below. Modifies catalog file paths and URLs accordingly to ensure accurate driver retrieval. --- FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.psm1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.psm1 b/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.psm1 index 7587996..f931407 100644 --- a/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.psm1 +++ b/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.psm1 @@ -650,10 +650,10 @@ function Invoke-DownloadSelectedDrivers { WriteLog "Dell drivers selected. Ensuring Dell Catalog is up-to-date..." try { $dellDriversFolder = Join-Path -Path $localDriversFolder -ChildPath "Dell" - $catalogBaseName = if ($localWindowsRelease -le 11) { "CatalogPC" } else { "Catalog" } + $catalogBaseName = if ($localWindowsRelease -le 11) { "CatalogIndexPC" } else { "Catalog" } $dellCabFile = Join-Path -Path $dellDriversFolder -ChildPath "$($catalogBaseName).cab" $dellCatalogXML = Join-Path -Path $dellDriversFolder -ChildPath "$($catalogBaseName).xml" - $catalogUrl = if ($localWindowsRelease -le 11) { "http://downloads.dell.com/catalog/CatalogPC.cab" } else { "https://downloads.dell.com/catalog/Catalog.cab" } + $catalogUrl = if ($localWindowsRelease -le 11) { "https://downloads.dell.com/catalog/CatalogIndexPC.cab" } else { "https://downloads.dell.com/catalog/Catalog.cab" } $downloadCatalog = $true if (Test-Path -Path $dellCatalogXML -PathType Leaf) {