ConfigureBeginnerTutorials

How to Disable Web Search in Windows 11 Start Menu (5 Methods)

Learn five proven methods to disable Bing web search in the Windows 11 Start Menu and limit results to local files only. Covers Settings, Registry Editor, Group Policy, Intune, and Command Prompt.

Emanuel De Almeida July 18, 2026 7 min read
Difficulty
Beginner
Time
5-10 minutes
Steps
3
Last tested
July 18, 2026

Windows 11 sends Start Menu search queries to Bing by default, blending web results with your local files and apps. There's no single GUI toggle to turn this off across all editions, so the right method depends on your Windows edition and deployment scope. This tutorial covers five approaches: Settings (simplest), Registry Editor (works on all editions including Home), Group Policy (machine-wide, Pro/Enterprise), Intune (enterprise fleet), and Command Prompt (scripting-friendly).

Before you start

What you will learn

  • How to disable Bing web search results in the Windows 11 Start Menu using five different methods, each suited to different editions and scenarios.
  • Disabling web search improves Start Menu speed, reduces bandwidth usage, prevents search queries from being sent to Microsoft servers, and eliminates clutter from irrelevant Bing results.

Requirements

  • Admin privileges for Registry, Group Policy, and Command Prompt methods. Settings method works for standard users.
  • Windows 11 (any edition for Settings/Registry/CMD; Pro/Enterprise/Education for Group Policy; Intune enrollment for Method 4)
  • Local Administrator (Registry, GPO, CMD methods)
  • Intune Administrator (Intune method)

Good to know

  • 5-10 minutes per method

Quick answer

The fastest method for all editions: set DisableSearchBoxSuggestions to 1 in the registry under HKCU\Software\Policies\Microsoft\Windows\Explorer. For Pro/Enterprise, enable "Don't search the web or display web results" in Group Policy.

Code
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f

Step-by-step tutorial

3 steps
1

Method 1: Disable via Settings App

Disable web search using the built-in Settings app (all editions, per-user).

Settings > Privacy & security > Search permissions

Press Win + I to open Settings. Click Privacy & security in the left sidebar, then click Search permissions.

Under Cloud content search, toggle off both:

  • Microsoft account
  • Work or school account

This stops Windows from querying Bing when you type in the Start Menu. The change applies immediately to the current user account, no restart needed.

This is the simplest method and doesn't require admin privileges. It works on all Windows 11 editions including Home.

Expected resultStart Menu search shows only local apps and files. No Bing web results appear.

This method may reset after major Windows feature updates. Check these toggles again after upgrading to a new Windows 11 version.

2

Method 2: Registry Editor (All Editions)

Disable web search using the Windows Registry (all editions, most reliable).

Press Win + R, type regedit, press Enter.

Navigate to:

log
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows

If the Explorer key doesn't exist, right-click Windows > New > Key, name it Explorer.

Right-click the right pane > New > DWORD (32-bit) Value. Name it DisableSearchBoxSuggestions and set Value data to 1.

For an additional layer, navigate to HKCU\Software\Microsoft\Windows\CurrentVersion\Search. Create a DWORD named BingSearchEnabled and set it to 0.

Restart Explorer:

batch
taskkill /f /im explorer.exe && start explorer.exe
Cmd
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f
Expected resultStart Menu search returns only local results after restarting Explorer.

The DisableSearchBoxSuggestions value under the Policies key is the most durable method across Windows updates, per multiple independent sources. BingSearchEnabled provides additional coverage.

3

Method 3: Group Policy (Pro/Enterprise)

Disable web search using Group Policy (Pro/Enterprise/Education, machine-wide).

Computer Configuration > Administrative Templates > Windows Components > Search

Press Win + R, type gpedit.msc, press Enter.

Navigate to Computer Configuration > Administrative Templates > Windows Components > Search.

Find and double-click "Don't search the web or display web results in Search". Set to Enabled, click OK.

Also enable "Do not allow web search" in the same location for complete coverage.

Open Command Prompt and run:

batch
gpupdate /force

This applies the policy machine-wide, affecting all user accounts. For domain environments, create a GPO in the Group Policy Management Console and link it to the target OU.

Cmd
gpupdate /force
Expected resultWeb search results no longer appear in Start Menu for all users on the machine.

Group Policy Editor is not available on Windows 11 Home edition. Use the Registry method instead. For domain-joined devices, deploy via a GPO for centralized management.

Confirm the result

Troubleshooting

Web results still appear after applying changes

Cause: Windows may cache previous search behavior. Microsoft account sync can re-enable cloud search settings.

Clear the search cache: Settings > Privacy & security > Searching Windows > Clear device search history. Then restart Explorer:

batch
taskkill /f /im explorer.exe && start explorer.exe

Also check Settings > Accounts > Sync your settings and disable sync for relevant categories.

Settings reverted after a Windows update

Cause: A major Windows feature update may reset Settings app toggles or override certain registry values.

Re-apply the registry fix. The DisableSearchBoxSuggestions value under the Policies key is the most update-resilient method. Create a batch file with your registry commands for quick reapplication:

batch
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f

Group Policy Editor not found on Windows 11 Home

Cause: Windows 11 Home doesn't include the Local Group Policy Editor (gpedit.msc).

Use Method 2 (Registry Editor) or Method 5 (Command Prompt) instead. These methods achieve the same result on Home edition by writing directly to the registry.

Frequently asked questions

Does disabling web search affect other search features?

No. Disabling web search only removes Bing results from Start Menu search. File Explorer search, local app search, and Windows Search indexing continue working normally.

Can I re-enable web search after disabling it?

Yes, all methods are reversible. Toggle Settings back on, delete the registry values, set Group Policy to Not Configured, or remove the Intune policy. For registry cleanup: reg delete "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /f

Which method works for Windows 11 Home?

Use Method 1 (Settings app) or Method 2 (Registry Editor). Group Policy Editor isn't available on Home. The Command Prompt registry method (Method 5) also works on Home with admin privileges.

Do these changes persist after Windows updates?

Registry and Group Policy changes typically survive feature updates. Settings app toggles may reset. After major updates, verify your configuration and reapply if needed.

Will this improve Start Menu performance?

Yes. Without web queries, Start Menu search responds faster since it only indexes local content. This also reduces CPU usage and network bandwidth consumption during searches.

Reader reviews

Rate this articleBe the first to rate
No written reviews yetRate the article above, or be the first to share your experience.

Related articles