From 9da1789e0221c07096a48e2a73dbd7bad2365578 Mon Sep 17 00:00:00 2001 From: zoicware <118035521+zoicware@users.noreply.github.com> Date: Tue, 26 Nov 2024 23:14:06 -0500 Subject: [PATCH] Add Disable Recall Enablement --- RemoveAi.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/RemoveAi.ps1 b/RemoveAi.ps1 index de5de32..e9ecd9a 100644 --- a/RemoveAi.ps1 +++ b/RemoveAi.ps1 @@ -29,6 +29,7 @@ $hives = @('HKLM', 'HKCU') foreach ($hive in $hives) { Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v 'TurnOffWindowsCopilot' /t REG_DWORD /d '1' /f *>$null Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v 'DisableAIDataAnalysis' /t REG_DWORD /d '1' /f *>$null + Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v 'AllowRecallEnablement' /t REG_DWORD /d '0' /f *>$null } Reg.exe add 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' /v 'ShowCopilotButton' /t REG_DWORD /d '0' /f *>$null Reg.exe add 'HKCU\Software\Microsoft\input\Settings' /v 'InsightsEnabled' /t REG_DWORD /d '0' /f *>$null