De-bloating Windows 11 25H2: How to Disable "Recall" & System-Level AI Telemetry (2026 Guide)

If you updated your PC to the latest Windows 11 25H2 (Holiday Update) this week, you might have noticed something unsettling. Your hard drive activity light is blinking more than usual, and there is a new icon in your tray recording your "timeline."

Windows 11 AI Scanning
Figure 1: AI Background Process Analysis

Welcome to the era of mandatory AI integration. Microsoft's new "Recall" feature takes snapshots of your screen every few seconds to create a searchable memory. While the engineering is impressive, for many of us in the privacy-conscious community, it is a nightmare. I spent the last 48 hours digging through the Registry to turn it all off.

Before We Start

We will be modifying system policies. Please create a System Restore Point right now. Type "Create a Restore Point" in your Start menu. Better safe than sorry.

Step 1: The "Soft" Method

Microsoft has buried the setting deep. Do this first to stop the active recording immediately.

01
Access AI Menu

Go to Settings > Privacy & Security > AI Permissions (New in 25H2).

02
Toggle Off

Find "Windows Recall" and switch it to OFF.

03
Wipe Data

Click "Delete Snapshots" to wipe collected data.

Step 2: The "Hard" Method (GPO)

This prevents Windows from turning features back on during the next "Critical Update." (Pro/Enterprise only).

Open Policy Editor

Press Win + R, type gpedit.msc, and hit Enter.

Navigate to Path:

Computer Configuration > Administrative Templates > Windows Components > Windows AI

Action:

Double click "Turn off Windows AI Assistant" and set it to ENABLED.

Step 3: The PowerShell "Nuke" Script

If you are on Windows Home or want to automate this, run PowerShell as Administrator and check the service status:

Administrator: Windows PowerShell
PS C:\>Get-Service -Name "AIProviderSvc" | Select-Object Status, StartType

If it says "Running", execute this command to kill it permanently:

Administrator: Windows PowerShell
PS C:\>Stop-Service "AIProviderSvc" -Force PS C:\>Set-Service "AIProviderSvc" -StartupType Disabled > Success: Service disabled.

The Performance Result

After testing on a ThinkPad X1, here are the immediate gains:

  • Idle RAM 2.6 GB Saved
  • Processes -14 Background Apps
  • Privacy 100% Secure

Common Questions

Will this break Windows Update?
No. We are only disabling the AI overlay services. Critical security updates will still function normally.
Can I turn it back on later?
Yes. Just reverse the steps in Group Policy (Set to "Not Configured") or change the service StartType to "Automatic" in PowerShell.

Comments