To make the Windows Start Menu search bar lightning fast, Microsoft uses a background service called “Windows Search Indexer.” This service constantly crawls through every single file, document, and folder on your hard drive, reading their contents and logging them into a massive, hidden database.
While this is useful if you frequently lose your files, it comes at a massive physical cost. If you are a programmer with a massive node_modules folder, or a video editor generating thousands of tiny cache files, the Search Indexer will trap your CPU in an endless loop, constantly scanning and re-scanning the newly created files. Worse, this incessant background reading and writing (thrashing) burns through the finite write-cycles (TBW) of your NVMe SSD, significantly degrading its hardware lifespan.
If you prefer to organize your own files manually or use lightweight third-party tools like “Everything” by Voidtools, you can completely kill the Windows Search Indexer to reclaim your CPU cycles and protect your SSD.
Step 1: Open the Windows Services Manager
The indexing engine runs as a core background service that boots up alongside the operating system. You must disable it at the root level.
- Press the Windows Key + R to open the Run dialog box.
- Type
services.mscand press Enter. - The massive Services management console will appear.
Step 2: Locate and Kill the Search Service
- Scroll all the way down the alphabetical list until you find the service specifically named Windows Search.
- Right-click on “Windows Search” and select Properties.
- A new dialog box will open. Under the “Service status” section, you will likely see that it is currently “Running.”
- Click the Stop button. It may take a few seconds for the operating system to forcefully halt the database engine.
Step 3: Prevent it from Ever Booting Again
Stopping the service only works for your current session. If you reboot, Windows will instantly turn it back on. You must permanently sever its startup privileges.
- In the exact same Properties window, look for the dropdown menu labeled Startup type:.
- By default, it is set to “Automatic (Delayed Start)”.
- Click the dropdown and change it to Disabled.
- Click Apply, and then click OK.
The Result
The Windows Search Indexer is now dead. You can safely close the Services window.
What changes?
- Your SSD write activity will immediately plummet, lowering temperatures and extending the drive’s physical lifespan.
- Your CPU will no longer spike randomly when the computer is supposedly “idle.”
- If you press the Windows key and try to search for an obscure PDF file hidden deep in your Documents folder, Windows will not be able to find it. However, searching for installed Applications (like typing “Photoshop”) will still work perfectly fine.