Windows

How to Enable or Disable Windows 11 Search Indexing

Richard
Written by
Richard
Dec 6, 2021 Updated Apr 15, 2026 2 min read
How to Enable or Disable Windows 11 Search Indexing

Windows has a built-in search tool. It helps you find files, emails, and folders on your computer quickly. It does this by creating an index, which is like a catalog of your files.

Why use search indexing? It makes your searches much faster. Without it, Windows has to look through every single folder on your hard drive every time you search, which takes a long time.

What happens when done? When you enable it, your computer will run a background process called Searchindexer.exe. If you disable it, your searches will be slower, but your computer might use slightly fewer system resources.

Windows offers two modes:

  • Classic: Only searches your personal folders like Documents, Pictures, Music, and your Desktop.
  • Enhanced: Searches your entire computer, including all hard drives and partitions.

You can also add additional locations to choose specific folders for the Classic mode.

Disable Windows Search Indexing

Note: You must have admin privileges to change these settings.

1. Open the Services console console on your PC.

2. Scroll down and find the service named Windows Search.

Open Windows Search service in Windows 11

3. Click on Windows Search to open its settings.

4. Click the Stop button to turn off the service immediately.

Stop button for Windows Search service in Windows 11

5. In the Startup type menu, select Disabled.

6. Click Apply to save your changes.

Disable startup for Windows Search in Windows 11

The indexing service is now turned off. You can verify this by checking that the status says “Not running.”

Windows Search indexing not running in Windows 11

Enable Windows Search Indexing

Note: You must have admin privileges to change these settings.

If you want to turn the feature back on, follow these steps:

1. Open the Services console and find Windows Search.

2. Set the Startup type to Automatic (Delayed Start).

3. Click Apply.

Enable Windows Search indexing in Windows 11

4. Click the Start button to begin the service.

Start button for Windows Search service in Windows 11

Use Command Prompt

Note: You must run Command Prompt as an administrator to use these commands.

To use this method, open the Command Prompt as administrator.

To enable indexing:

💻Code
sc config "wsearch" start=delayed-auto && sc start "wsearch"

To disable indexing:

💻Code
sc stop "wsearch" && sc config "wsearch" start=disabled

Summary

  • Indexing creates a catalog of your files to make searching faster.
  • You can choose between Classic (limited folders) or Enhanced (entire PC) modes.
  • Disabling the indexer stops the background search process but slows down future search results.
  • You can control this feature through the Services menu or the Command Prompt.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2465 articles → Twitter

📚 Related Tutorials

How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Turn On or Off Search Indexer Enhanced Mode in Windows 11
Windows How to Turn On or Off Search Indexer Enhanced Mode in Windows 11
How to Add or Remove Index Locations in Windows 11
Windows How to Add or Remove Index Locations in Windows 11
How to Enable or Disable Windows 11 Services
Windows How to Enable or Disable Windows 11 Services

0 responses to “How to Enable or Disable Windows 11 Search Indexing”

  1. I would break this into two articles.
    Also, there are countless typos and grammatical errors which need to be corrected.

Leave a Reply

Your email address will not be published. Required fields are marked *