Disable Telemetry Windows
A PowerShell script to disable Windows 11 telemetry and the Windows Recall feature.
Quick Install
Run in PowerShell as Administrator:
irm https://raw.githubusercontent.com/gabrielalmir/disable-telemetry-windows/main/disable-telemetry.ps1 | iex
How to Run as Administrator
Option 1: Open PowerShell as Admin
- Press
Win + X - Select Windows Terminal (Admin) or PowerShell (Admin)
- Run the command above
Option 2: From Start Menu
- Search for PowerShell in Start Menu
- Right-click and select Run as Administrator
- Run the command above
Option 3: Using the script file
Start-Process powershell -Verb RunAs -ArgumentList "-ExecutionPolicy Bypass -File .\disable-telemetry.ps1"
What It Does
Telemetry
- Sets
AllowTelemetryto 0 in registry - Disables telemetry services (DiagTrack, dmwappushservice)
- Disables telemetry scheduled tasks
- Disables feedback notifications
Windows Recall
- Disables AI data analysis via registry
- Sets
EnableRecallOnDeviceto 0 - Attempts to disable Recall via Windows Optional Features
Manual Usage
# Clone the repository
git clone https://github.com/gabrielalmir/disable-telemetry-windows.git
# Run the script as Administrator
.\disable-telemetry.ps1
Requirements
- Windows 11
- PowerShell 5.1 or later
- Administrator privileges
License
MIT License - see LICENSE for details.