Blog

How to Completely Disable Windows Recall & AI Telemetry in Windows 11

A comprehensive step-by-step guide for power users and IT admins to disable Windows Recall, stop background snapshot recording, turn off AI data analysis, and minimize diagnostic telemetry in Windows 11.

August 2026·5 min read·Security & Privacy
How to Completely Disable Windows Recall & AI Telemetry in Windows 11

Overview

Microsoft introduced Windows Recall as an AI feature that periodically takes encrypted snapshots of your active desktop screen to help search your past activity. While convenient for some, many privacy-conscious users, enterprise IT admins, and developers prefer to completely block snapshot recording and eliminate background AI telemetry data collection on Windows 11.

Why Disable Windows Recall & Telemetry?

  • Privacy & Confidentiality: Prevents sensitive personal data, passwords, and banking info from being captured in desktop screenshots.
  • Resource Overhead: Saves CPU cycles, NPU allocation, and SSD storage space consumed by continuous screenshot logging.
  • Enterprise & Regulatory Compliance: Ensures endpoints strictly meet security standards and data handling policies.

Method 1: Disable Recall in Settings

The fastest graphical method to disable Recall snapshot recording is directly through the Windows Settings app:

  • Open Settings by pressing Win + I.
  • Navigate to Privacy & security > Recall & snapshots.
  • Toggle Save snapshots to Off.
  • Click Delete snapshots and select Delete all to remove all previously captured screen history.

Method 2: Group Policy Editor (gpedit)

For Windows 11 Pro, Enterprise, and Education editions, Local Group Policy provides a system-wide lock that prevents users or updates from re-enabling Recall:

  • Press Win + R, type gpedit.msc, and press Enter.
  • Navigate to: Computer Configuration > Administrative Templates > Windows Components > Windows AI
  • Double-click Turn off Recall.
  • Select Enabled, click Apply, and then click OK.

Method 3: Uninstall Recall via DISM

If you want to strip out the Windows Recall package entirely so it cannot execute in the background, use DISM in PowerShell:

powershell
Dism /Online /Disable-Feature /FeatureName:Recall
Tip

Tip: After running this command in Administrator PowerShell, restart your system to finalize package removal.

Method 4: Block Telemetry & AI Analytics via Registry

To disable AI data analysis policy keys and restrict Windows 11 diagnostic data to the absolute minimum, open PowerShell as Administrator and execute the following script:

powershell
# Disable AI Data Analysis
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows AI" -Force | Out-Null
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows AI" -Name "DisableAIDataAnalysis" -Value 1 -Type DWord -Force

# Restrict Diagnostic Telemetry
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Force | Out-Null
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Value 0 -Type DWord -Force

# Disable Telemetry Collector Service
Stop-Service -Name "DiagTrack" -WarningAction SilentlyContinue
Set-Service -Name "DiagTrack" -StartupType Disabled

How to Verify It Is Disabled

  • Open Settings > Privacy & security > Recall & snapshots — it should display a notice stating "This feature is disabled by organization policy".
  • Check Task Manager services — verify that DiagTrack (Connected User Experiences and Telemetry) is Stopped.

Summary & Key Takeaways

By combining the Group Policy toggle, DISM package removal, and Registry telemetry blocks, you achieve 100% control over your Windows 11 system privacy without compromising core OS functionality.

Subscribe to the Newsletter

Get real-world IT troubleshooting guides, Azure VDI case studies, and sysadmin automation tips in your inbox.

Strict Zero-Spam Promise: Used solely to send technical notes and updates. Never shared, sold, or rented. Complete permanent data deletion upon 1-click unsubscribe. Read our Privacy Policy.

rinkurapria.devAn enterprise IT portfolio & sysadmin registry.
Crafted By@Rapria_Rinku
Source CodeGitHub
StackNext.js · Tailwind CSS
LicenseMIT License
© 2026 Rinku Rapria · Endpoint Engineer
[ENTERPRISE ENDPOINT ARCHITECTURE]
RINKURAPRIA
SYS·NODE: 28.6139° N, 77.2090° E·PROTOCOL: HTTPS/3 QUIC