From a77a1f1d949899372b221f449a2db454f0f16531 Mon Sep 17 00:00:00 2001 From: zoicware <118035521+zoicware@users.noreply.github.com> Date: Sun, 29 Jun 2025 14:57:12 -0400 Subject: [PATCH] Additional Hidden CBS Packages --- RemoveWindowsAi.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RemoveWindowsAi.ps1 b/RemoveWindowsAi.ps1 index 438050c..ee98f82 100644 --- a/RemoveWindowsAi.ps1 +++ b/RemoveWindowsAi.ps1 @@ -382,7 +382,7 @@ $regPath = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Serv $ProgressPreference = 'SilentlyContinue' Get-ChildItem $regPath | ForEach-Object { $value = Get-ItemPropertyValue "registry::$($_.Name)" -Name Visibility - if ($value -eq 2 -and $_.PSChildName -like '*AIX*' -or $_.PSChildName -like '*Recall*') { + if ($value -eq 2 -and $_.PSChildName -like '*AIX*' -or $_.PSChildName -like '*Recall*' -or $_.PSChildName -like '*Copilot*' -or $_.PSChildName -like '*CoreAI*') { Set-ItemProperty "registry::$($_.Name)" -Name Visibility -Value 1 -Force Remove-Item "registry::$($_.Name)\Owners" -Force -ErrorAction SilentlyContinue Remove-Item "registry::$($_.Name)\Updates" -Force -ErrorAction SilentlyContinue