Désactiver la Télémétrie Windows 11 Complètement

Windows 11 collecte une quantité significative de données sur votre utilisation. Ce guide vous montre comment désactiver complètement la télémétrie et reprendre le contrôle de votre vie privée.

Qu'est-ce que la télémétrie Windows ?

La télémétrie inclut :

  • Données de diagnostic et d'utilisation
  • Historique de navigation et recherches
  • Localisation et habitudes
  • Données des applications
  • Identifiants publicitaires
🔒 Bon à savoir : Désactiver la télémétrie n'affecte pas les fonctionnalités de Windows Update ou la sécurité de votre PC.

1. Désactiver les services de télémétrie

# Désactiver les services de télémétrie
$telemetryServices = @(
"DiagTrack" # Connected User Experiences and Telemetry
"dmwappushservice" # Device Management WAP Push message Routing
)

foreach ($svc in $telemetryServices) {
Stop-Service -Name $svc -Force -ErrorAction SilentlyContinue
Set-Service -Name $svc -StartupType Disabled -ErrorAction SilentlyContinue
Write-Host "Service $svc désactivé" -ForegroundColor Green
}

2. Modifier le niveau de télémétrie

# Définir télémétrie au niveau minimum (Security only)
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

# Désactiver la télémétrie applicative
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Value 0

3. Désactiver la collecte de feedback

# Désactiver Windows Feedback
New-Item -Path "HKCU:\Software\Microsoft\Siuf\Rules" -Force | Out-Null
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Siuf\Rules" -Name "NumberOfSIUFInPeriod" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Siuf\Rules" -Name "PeriodInNanoSeconds" -Value 0

4. Désactiver l'identifiant publicitaire

# Désactiver l'ID publicitaire
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -Name "Enabled" -Value 0

# Désactiver les publicités personnalisées
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338393Enabled" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-353694Enabled" -Value 0

5. Désactiver la localisation

# Désactiver la localisation
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" -Name "Value" -Value "Deny"

# Désactiver le service de localisation
Set-Service -Name "lfsvc" -StartupType Disabled -ErrorAction SilentlyContinue

6. Désactiver Cortana et la recherche web

# Désactiver Cortana
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Force | Out-Null
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "AllowCortana" -Value 0
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "DisableWebSearch" -Value 1
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "ConnectedSearchUseWeb" -Value 0

7. Bloquer les domaines de télémétrie

Ajoutez ces lignes au fichier hosts (C:\Windows\System32\drivers\etc\hosts) :

# Ajouter au fichier hosts
$hostsPath = "C:\Windows\System32\drivers\etc\hosts"
$telemetryDomains = @(
"0.0.0.0 vortex.data.microsoft.com"
"0.0.0.0 vortex-win.data.microsoft.com"
"0.0.0.0 telecommand.telemetry.microsoft.com"
"0.0.0.0 telemetry.microsoft.com"
"0.0.0.0 watson.telemetry.microsoft.com"
"0.0.0.0 watson.microsoft.com"
"0.0.0.0 settings-sandbox.data.microsoft.com"
)

$telemetryDomains | Add-Content -Path $hostsPath

Script complet anti-télémétrie

# SCRIPT COMPLET - Désactiver la télémétrie Windows 11
# Exécuter en tant qu'administrateur

# Services
Stop-Service -Name "DiagTrack" -Force -ErrorAction SilentlyContinue
Set-Service -Name "DiagTrack" -StartupType Disabled
Stop-Service -Name "dmwappushservice" -Force -ErrorAction SilentlyContinue
Set-Service -Name "dmwappushservice" -StartupType Disabled

# Registre - Télémétrie
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Value 0 -Force

# ID Publicitaire
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -Name "Enabled" -Value 0

# Feedback
New-Item -Path "HKCU:\Software\Microsoft\Siuf\Rules" -Force | Out-Null
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Siuf\Rules" -Name "NumberOfSIUFInPeriod" -Value 0

# Cortana
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "AllowCortana" -Value 0 -Force

Write-Host "Télémétrie désactivée avec succès !" -ForegroundColor Green

Automatisez ces optimisations

Utilisez WindowsBooster pour appliquer ces tweaks en quelques clics

Lancer l'Application