Are you facing a frustrating delay every time you try to use Windows Search? Maybe it hangs, doesn’t load results, or doesn’t open at all?
If you ran the troubleshooter and saw the message:
❌ “Incorrect permissions on Windows Search directories – Not fixed”
then you’re likely dealing with corrupted permissions that are blocking the Windows Search service from working properly.
Here’s a step-by-step fix to restore your search functionality without reinstalling Windows.
Symptoms
- Windows Search is slow or unresponsive
- The Search bar shows a loading spinner or is blank
- No results show up even when typing
- CPU usage spikes when searching
- Search indexing seems stuck or incomplete
✅ Step 1: Show Hidden Folders
- Open File Explorer.
- Click View → Show → Hidden items.
- Navigate to
C:\ProgramData\Microsoft\Search
.
✅ Step 2: Reset Folder Permissions via Command Prompt
You’ll need to run a few commands as an administrator:
- Open Command Prompt as Administrator (right-click → “Run as administrator”).
- Run the following commands to grant correct permissions:
takeown /F "C:\ProgramData\Microsoft\Search" /R /D Y
icacls "C:\ProgramData\Microsoft\Search" /grant SYSTEM:(OI)(CI)F /T
icacls "C:\ProgramData\Microsoft\Search" /grant "Local Service":(OI)(CI)R /T
takeown
gives you ownership of the folder.icacls
assigns correct permissions to theSYSTEM
andLocal Service
accounts.
✅ Step 3: Restart the Search Service
After fixing permissions, restart the Windows Search service:
net stop "Windows Search"
net start "Windows Search"
🔁 Optional: Rebuild the Index
If you’re still having issues:
- Open Control Panel → Indexing Options.
- Click Advanced.
- Click Rebuild under the Troubleshooting section.
This will force Windows to reindex your files.
⚠️ Still Don’t See the Security Tab?
If you’re trying to manually edit folder permissions but can’t see the Security tab in the folder properties:
Fix it via Registry Editor:
- Press
Win + R
, typeregedit
, hit Enter. - Go to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
- If you find
NoSecurityTab
, double-click it and set the value to0
, or delete it entirely. - Restart your PC.