Inicio /
Telemetría y Privacidad
🔒 Telemetría y Privacidad
Desactivar servicios de telemetría y rastreo de Windows
🚫 Desactivar DiagTrack
DiagTrack (Connected User Experiences and Telemetry) recopila información de uso:
Detener y deshabilitar servicio powershell
Stop-Service -Name DiagTrack -Force
Set-Service -Name DiagTrack -StartupType Disabled Deshabilitar en registro powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -PropertyType DWord -Value 0 -Force 📊 Desactivar Customer Experience Program
CEIP y SQM Client powershell
$tasks = @(
"\Microsoft\Windows\Customer Experience Improvement Program\Consolidator"
"\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip"
)
foreach ($task in $tasks) {
Disable-ScheduledTask -TaskName $task -ErrorAction SilentlyContinue
} Registro CEIP powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\SQMClient\Windows" -Name "CEIPEnable" -PropertyType DWord -Value 0 -Force 🔎 Deshabilitar Cortana y Búsqueda Web
Cortana powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "AllowCortana" -PropertyType DWord -Value 0 -Force Búsqueda Web desde Start powershell
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "CortanaConsent" -PropertyType DWord -Value 0 -Force 🎯 Desactivar Publicidad y Sugerencias
Tips y Sugerencias powershell
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SystemPaneSuggestionsEnabled" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338388Enabled" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SoftLandingEnabled" -PropertyType DWord -Value 0 -Force Publicidad personalizada powershell
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -Name "Enabled" -PropertyType DWord -Value 0 -Force 🌐 Desactivar OneDrive
Deshabilitar OneDrive powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\OneDrive" -Name "DisableFileSyncNGSC" -PropertyType DWord -Value 1 -Force Detener proceso OneDrive powershell
Stop-Process -Name OneDrive -Force -ErrorAction SilentlyContinue
Start-Process "$env:SystemRoot\SysWOW64\OneDriveSetup.exe" -ArgumentList "/uninstall" -NoNewWindow -Wait 📡 Hosts bloqueados
Bloquea dominios de telemetría en archivo hosts:
Agregar entradas al archivo hosts powershell
$hosts = @(
"vortex.data.microsoft.com"
"vortex-win.data.microsoft.com"
"telecommand.telemetry.microsoft.com"
"oca.telemetry.microsoft.com"
"sqm.telemetry.microsoft.com"
"watson.telemetry.microsoft.com"
"statsfe2.ws.microsoft.com"
"corpext.msitadfs.glbdns2.microsoft.com"
)
$hostsFile = "$env:SystemRoot\System32\drivers\etc\hosts"
foreach ($host in $hosts) {
Add-Content -Path $hostsFile -Value "0.0.0.0 $host"
}
ipconfig /flushdns 🛑 Tareas Programadas
Deshabilitar tareas de telemetría en Task Scheduler:
Deshabilitar múltiples tareas powershell
$tasks = @(
"\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
"\Microsoft\Windows\Application Experience\ProgramDataUpdater"
"\Microsoft\Windows\Autochk\Proxy"
"\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector"
"\Microsoft\Windows\Feedback\Siuf\DmClient"
"\Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload"
"\Microsoft\Windows\Windows Error Reporting\QueueReporting"
)
foreach ($task in $tasks) {
Disable-ScheduledTask -TaskName $task -ErrorAction SilentlyContinue
} 📍 Desactivar Ubicación
Servicios de ubicación powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" -Name "Value" -PropertyType String -Value "Deny" -Force
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\lfsvc\Service\Configuration" -Name "Status" -PropertyType DWord -Value 0 -Force 💡
💡 Herramientas
Para gestionar privacidad de forma gráfica, usa O&O ShutUp10++ o WPD (Windows Privacy Dashboard). Ambas gratuitas y seguras.
⚠️
⚠️ Importante
Algunas funcionalidades como Windows Update pueden verse afectadas. Aplica solo lo que necesites según tu uso.