diff --git a/Regfiles/Disable_AI_Recall.reg b/Regfiles/Disable_AI_Recall.reg index b04dafe..3e31683 100644 --- a/Regfiles/Disable_AI_Recall.reg +++ b/Regfiles/Disable_AI_Recall.reg @@ -4,4 +4,7 @@ Windows Registry Editor Version 5.00 "DisableAIDataAnalysis"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI] -"DisableAIDataAnalysis"=dword:00000001 \ No newline at end of file +"DisableAIDataAnalysis"=dword:00000001 + +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI] +"AllowRecallEnablement"=dword:00000000 diff --git a/Regfiles/Sysprep/Disable_AI_Recall.reg b/Regfiles/Sysprep/Disable_AI_Recall.reg index cc44bd6..0cda801 100644 --- a/Regfiles/Sysprep/Disable_AI_Recall.reg +++ b/Regfiles/Sysprep/Disable_AI_Recall.reg @@ -4,4 +4,7 @@ Windows Registry Editor Version 5.00 "DisableAIDataAnalysis"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI] -"DisableAIDataAnalysis"=dword:00000001 \ No newline at end of file +"DisableAIDataAnalysis"=dword:00000001 + +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI] +"AllowRecallEnablement"=dword:00000000 diff --git a/Regfiles/Undo/Enable_AI_Recall.reg b/Regfiles/Undo/Enable_AI_Recall.reg index 5a795c3..35fa9b4 100644 --- a/Regfiles/Undo/Enable_AI_Recall.reg +++ b/Regfiles/Undo/Enable_AI_Recall.reg @@ -7,4 +7,7 @@ Windows Registry Editor Version 5.00 "DisableAIDataAnalysis"=- [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI] -"DisableAIDataAnalysis"=- \ No newline at end of file +"DisableAIDataAnalysis"=- + +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI] +"AllowRecallEnablement"=- diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 261472f..cd513db 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -822,14 +822,9 @@ function DisplayCustomModeOptions { if ($WinVersion -ge 22621){ Write-Output "" - if ($( Read-Host -Prompt "Disable & remove Windows Copilot? This applies to all users (y/n)" ) -eq 'y') { + if ($( Read-Host -Prompt "Disable & remove Windows Copilot and Windows Recall snapshots? This applies to all users (y/n)" ) -eq 'y') { AddParameter 'DisableCopilot' 'Disable and remove Windows Copilot' - } - - Write-Output "" - - if ($( Read-Host -Prompt "Disable Windows Recall snapshots? This applies to all users (y/n)" ) -eq 'y') { - AddParameter 'DisableRecall' 'Disable Windows Recall snapshots' + AddParameter 'DisableRecall' 'Disable and remove Windows Recall snapshots' } }