Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / Disable Web Search Results in Windows 10/11 Start Menu

February 27, 2023 PowerShellWindows 10Windows 11

Disable Web Search Results in Windows 10/11 Start Menu

When a user searches using the Start menu in Windows 10 or Windows 11, the search results show suggestions from the local computer (files, apps, settings) and search results from the Bing search engine. The Start menu displays both search suggestions and Bing results for your keywords. This article will examine how to disable search suggestions and not display search results in the Start Menu of Windows 10/11.

windows 10 start menu search showing web results

To prevent search results from being displayed in the current user’s Start menu, you must create a REG_DWORD parameter named DisableSearchBoxSuggestions with value 1 under the HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer registry key.

You can create this registry entry manually using the Registry Editor (regedit.exe), or you can use the PowerShell command:

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

You can disable the display of web search results in the Start Menu for all users on your computer. To do this, make changes to the HKEY_LOCAL_MACHINE registry hive.

This PowerShell script checks if the specified registry key exists and then creates the DisableSearchBoxSuggestions parameter:

if( -not (Test-Path -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer)){
New-Item HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer
}
Set-ItemProperty -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name "DisableSearchBoxSuggestions" -Value 1 -Type DWORD

DisableSearchBoxSuggestions - Deactivate Web search in Windows, disable suggesting recent queries

To apply this setting, you must log out of the user session (run the logoff command) and re-log into Windows.

The Start Menu and File Explorer will no longer display web suggestions pop-ups when users enter text into the search box field. Recent search queries will also not be saved and displayed.

You may use the DisableSearchBoxSuggestions parameter to disable Web Search in Windows 10 2004 or newer and in Windows 11. Use other registry parameters for previous Windows 10 builds:

  • In Windows 10 1607 or earlier: ConnectedSearchUseWeb = 0 in HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search
  • Windows 10 1703 to 1803: AllowCortana = 0 in HKLM\SOFTWARE \Policies\Microsoft\Windows\Windows Search
  • Windows 10 1809 to 2004: BingSearchEnabled = 0 in HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search

You can use a separate GPO option in Windows 10 and 11 that allows you to disable Web Search in the Start menu:

  1. Use the Local Group Policy Editor (gpedit.msc) on a standalone computer. In order to apply the Group Policy options to the computers in an Active Directory domain, use the gpmc.msc console;
  2. Go to User Configuration -> Administrative Templates -> Windows Components -> File Explorer;
  3. Enable the Turn off display of recent search entries in the File Explorer search box. GPO option: Turn off display of recent search entries in the File Explorer search box
  4. Re-login Windows or run the gpupdate /force command to apply the new GPO settings.
It will disable showing Bing search results in the Start menu for all users. You may only use multiple local GPO (MLGPO) to configure this option for specific users.

3 comments
1
Facebook Twitter Google + Pinterest
previous post
Fix: Group Policy Processing Error in Windows
next post
Hyper-V Virtual Machine Stuck in Stopping/Starting State

Related Reading

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

October 15, 2023

How to Query and Change Teams User Presence...

October 8, 2023

How to Use Ansible to Manage Windows Machines

September 25, 2023

3 comments

slimm January 11, 2023 - 7:42 am

thanks!

Reply
Mostafa July 13, 2023 - 5:20 pm

Shouldn’t the GPO be “Don’t search the web or display web results in Search” under
Computer Configuration -> Administrative Templates -> Windows Components -> Search

Reply
Mostafa July 13, 2023 - 5:32 pm

I retract my comment, apparently this setting is reserved for Windows Enterprise and Education editions.

Reply

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023
  • How to Use Ansible to Manage Windows Machines

    September 25, 2023
  • Installing Language Pack in Windows 10/11 with PowerShell

    September 15, 2023
  • Configure Email Forwarding for Mailbox on Exchange Server/Microsoft 365

    September 14, 2023
  • How to View and Change BIOS (UEFI) Settings with PowerShell

    September 13, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Manage Windows Updates with PSWindowsUpdate PowerShell Module
  • Configuring Port Forwarding in Windows
  • Start Menu or Taskbar Search Not Working in Windows 10/11
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Delete Old User Profiles in Windows
  • Get-ADUser: Find Active Directory User Info with PowerShell
Footer Logo

@2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


Back To Top