How to Disable & Remove Windows 11 Recall Feature Permanently
🇬🇧 Learn how to permanently disable and remove the Windows 11 Recall feature using Group Policy (GPE), Registry Editor, and PowerShell.
How to Disable & Remove Windows 11 Recall Feature Permanently
Windows Recall, a new feature in Windows 11, constantly records screenshots to create a searchable timeline. Whether for privacy concerns or performance reasons, you might want to disable it.
Rest assured; there are three simple ways to completely remove Recall from your system.
🏢 Method 1: Using Group Policy (GPE)
Suitable for Windows 11 Pro and Enterprise.
- Press
Win + R, typegpedit.msc, and hit Enter. - Navigate to one of the following paths (depending on your version):
... > Windows Components > Windows AI... > Windows Components > Recall
- Double-click on “Allow Recall to be enabled” (or just “Turn off Recall”).
- Select Disabled. If the policy is “Turn off Recall”, select Enabled.
- Click OK and restart your PC.
📝 Method 2: Using Registry Editor (Regedit)
Suitable for Windows 11 Home users.
- Press
Win + R, typeregedit, and hit Enter. - Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows - Look for a key named WindowsAI or Recall. If neither exists, create WindowsAI.
- Inside, create a DWORD (32-bit) Value:
- If using
WindowsAI: Name itAllowRecallEnablement-> Set to 0. - If using
Recall: Name itDisableRecall-> Set to 1.
- If using
- Restart your PC.
⚡ Method 3: One-Command Removal via PowerShell
Requires Administrator privileges.
- Right-click the Start menu and select Terminal (Admin).
- Run the following command:
1
Disable-WindowsOptionalFeature -Online -FeatureName "Recall" -Remove
Restart your PC once the process completes.
Stay safe and private.
This post is licensed under CC BY 4.0 by the author.