2026-07-27

Quitar Bing y Cortana de la búsqueda en Windows

 Te dejo una guía de cómo deshabilitar BingSearchEnabled y CortanaConsent, tanto en el registro como en políticas de grupo:

🔧 Con regedit

  1. Abrí Win + R → escribí regedit → Enter.
  2. Andá a:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search
  3. En el panel derecho:
  4. Doble clic en BingSearchEnabled → poné 0.
  5. Doble clic en CortanaConsent → poné 0.
  6. Si no existen, creá valores DWORD (32 bits) con esos nombres y asignales 0.
  7. Cerrá regedit y reiniciá la compu.

⚡ Con PowerShell

  1. Abrí PowerShell como administrador y ejecutá:

 Set-ItemProperty -Path
  "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name
  "BingSearchEnabled" -Value 0

Set-ItemProperty -Path
  "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name
  "CortanaConsent" -Value 0

📑 Con gpedit.msc (políticas de grupo)

  1. Abrí Win + R → escribí gpedit.msc → Enter.
  2. Navegá a:
  3. Configuración del equipo → Plantillas administrativas → Componentes de Windows → Buscar
  4. Activá estas políticas:
  5. Permitir Cortana → poné en Deshabilitado.
  6. No permitir búsqueda en la web → poné en Habilitado.
  7. Cerrá el editor y reiniciá.