Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Start Menu or Taskbar Search Not Working in Windows 11/10

April 24, 2026

Start Menu or Taskbar Search Not Working in Windows 11/10

The taskbar search feature in Windows 10 and 11 is used far more frequently than in previous versions. Users can use it to quickly find apps, files, and configuration options within the new Settings app, or to search the Web directly from the Start menu. However, in some cases, Windows Search may stop working.  When you try to find an app or a file, an empty list of search results is returned. If you are experiencing issues with Windows Search not working properly in the Start Menu, Taskbar, or other UI elements, the following basic tips should help.

Contents:
  • Restart the Windows Search Service
  • Start Menu Search Not Working in Windows
  • Check the Search Service and Indexing Settings in Windows
  • Using Built-in Search and Indexing Troubleshooter in Windows
  • Reset the Microsoft Store Search App in Windows
  • Blank Search Results on Windows When Bing Search Enabled
  • Search Not Working in Windows Settings App
  • Reset Windows Search with PowerShell Script

The taskbar search is not working in Windows 11 and is returning empty or blank results.

Restart the Windows Search Service

If the Taskbar and Start menu search stops working, check whether the relevant search-related processes are running (the exact process names vary depending on the Windows version):

  • Windows 10 – SearchUI.exe (one of Cortana’s executable files), SearchApp.exeand SerchIndexer.exe
  • Windows 11 – SearchHost.exe

Restart the specified processes using Task Manager:

    1. Run the Task Manager (Ctrl+Alt+Del).
    2. Go to the Details tab.
    3. Find SearchHost.exe (on Windows 11) or SearchUI.exe (Windows 10) in the list of processes, right-click on it, and select End Task.Kill main search process - SearchHost.exe
    4. Similarly, kill the SearchApp.exe and SerchIndexer.exe processes.
    5. The next time you perform a search using the Start menu or Search bar, this process will start automatically

Start Menu Search Not Working in Windows

If the search doesn’t work in the Start Menu or Taskbar on your Windows 10/11 device (either the search returns nothing, or the user cannot type anything into the search bar), try the following:

  1. Open the Task Manager (Ctrl + Shift + Esc) and end the File Explorer process (Explorer.exe).  kill explorer.exe process
  2. Run the Registry Editor from the Task Manager (Run new task -> regedit.exe).
  3. Delete the following registry key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes\{ef87b4cb-f2ce-4785-8658-4ca6c63e38c6}\TopViews\{00000000-0000-0000-0000-000000000000}. In Windows 10 x64, you need to delete another registry key HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes\{ef87b4cb-f2ce-4785-8658-4ca6c63e38c6}\TopViews\{00000000-0000-0000-0000-000000000000}.
  4. Start explorer.exe using the Task Manager (File -> Create new task -> explorer.exe). restart explorer.exe

Check the Search Service and Indexing Settings in Windows

Check if the Windows Search service is running.

  1. Open the services.msc console.
  2. Find Windows Search in the list of services.
  3. Ensure that the service is running and that its startup type is set to Automatic (Delayed Start). Windows Search in windows 10
  4. Start/restart the WSearch service.
  5. Then open the Indexing Options by running the command: control /name Microsoft.IndexingOptions
  6. Make sure you enable indexing for all the necessary locations, at least for the Start Menu and the Users folder. You can also add your local drives and Outlook.
  7. To rebuild the search index, click the Advanced button and then press Rebuild in the Troubleshooting section. rebuild search index
  8. Reindexing can take quite a long time. Wait for it to finish.

In Windows 11, go to Settings -> Privacy & security -> Search. Here, you can change the search mode from Classic to Enhanced. Also, check which directories are excluded from the search index.

Switch to enhanced search mode in Windows 11

The SearchEngine-Client-Package is the key search and indexing component that must be installed on Windows 11.

dism /Online /Get-FeatureInfo /FeatureName:SearchEngine-Client-Package

Sometimes, the problem of search and indexing in Windows can be fixed by reinstalling the search engine:

dism /Online /Disable-Feature /FeatureName:SearchEngine-Client-Package
dism /Online /Enable-Feature /FeatureName:SearchEngine-Client-Package

Reboot your machine.

DISM: reinstall SearchEngine-Client-Package

Note. Make sure there is enough free space on your system drive. In some cases, the size of the Windows Search indexing file (Windows.edb) can be quite large.

Using Built-in Search and Indexing Troubleshooter in Windows

Try using the built-in Indexer Diagnostics (Troubleshooter) tool to find and fix common Windows Search issues. For this:

  1. Run the Search and Indexing Troubleshooter tool by running the command: msdt.exe -ep WindowsHelp id SearchDiagnosticRun the Search and Indexing troubleshooter in Windows
  2. This will open the ‘Search and Indexing Troubleshooter’ wizard.
  3. Choose the problem you’re facing (probably “Files not appearing in search results“) and hit Next.Files don’t appear in search results on Windows 10
  4. Wait for the troubleshooter to scan your computer and attempt to resolve any issues it finds. Then reboot the computer and check the search result

Reset the Microsoft Store Search App in Windows

Reinstalling the Microsoft.Windows.Search UWP app (a built-in Microsoft Store app) may help resolve search issues in Windows 10.

  1. Run the powershell.exe as administrator.
  2. Stop the Windows Search service. First, change its startup type to Disabled, and then stop it: Get-Service WSearch| Set-Service –startuptype disabled –passthru| Stop-Service –Force
  3. Restart Windows.
  4. Uninstall the Windows.Search universal app:
    Get-AppxPackage -Name *Windows.Search* | Remove-AppxPackage -Verbose -ErrorAction SilentlyContinue -WarningAction SilentlyContinue
    Get-AppxPackage -AllUsers  -Name *Windows.Search* | Remove-AppxPackage -Verbose -ErrorAction SilentlyContinue -WarningAction SilentlyContinue
  5. Now, clear the previous search cache and data by deleting the application folder %LOCALAPPDATA%\Packages\Microsoft.Windows.Search_cw5n1h2txyewy. To do this, you must change the owner of the folder to the local Administrators group. This can be done either manually in Windows Explorer (via the Security tab in Folder Options) or by running the following PowerShell script:
    $searchapp_path ="$env:localappdata\Packages\Microsoft.Windows.Search_cw5n1h2txyewy"
    $Account = New-Object -TypeName System.Security.Principal.NTAccount -ArgumentList 'BUILTIN\Administrators';
    $ItemList = Get-ChildItem -Path %searchapp_path -Recurse;
    foreach ($Item in $ItemList) {
    $Acl = $null;
    $Acl = Get-Acl -Path $Item.FullName;
    $Acl.SetOwner($Account);
    Set-Acl -Path $Item.FullName -AclObject $Acl;
    }
  6. Now you can clear the Windows.Search_cw5n1h2txyewy folder:
    Remove-Item -Path $env:localappdata\Packages\Microsoft.Windows.Search_cw5n1h2txyewy –force  reset uwp search app in windows with powershell
  7. Search in taskbar is now disabled.
  8. Reinstall the Windows Search app
    Get-AppxPackage -AllUsers -Name *Microsoft.Windows.Search* | % {Add-AppxPackage -Path ($_.InstallLocation + "\Appxmanifest.xml") -Register -DisableDevelopmentMode -ForceApplicationShutdown -Verbose}  reinstall microsoft store search app with powershell
  9. Enable the WSearch service:
    Set-Service WSearch –startuptype automatic
  10. Restart Windows, log in with your account, and check that the search is now working.

The Microsoft.Windows.Client.CBS application is responsible for modern UI elements in Windows 11, including the Start Menu, Taskbar, Search UI, etc. One of its processes, SearchHost.exe, located in the C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy directory, is responsible for searching features in the taskbar and Start menu.

The most common solution is to update the package status in the registry. Go to the reg key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModel\StateChange\PackageList\MicrosoftWindows.Client.CBS_1000.26100.XXX.0_x64__cw5n1h2txyewy (replace XXX with your UWP app index), change the value of the PackageStatus parameter to 0 and then restart Explorer.

If this doesn’t help, try resetting the UWP app cache and reinstalling the app. To reset the app, run the command:

Get-AppxPackage -allusers MicrosoftWindows.Client.CBS | Reset-AppxPackage

Then clear the app cache in the directory:

Remove-Item -Path $env:localappdata\Packages\MicrosoftWindows.Client.CBS_cw5n1h2txyewy –force
Re-register the MicrosoftWindows.Client.CBS app:

Add-AppxPackage -Register -Path "C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\AppxManifest.xml" -DisableDevelopmentMode

PowerShell: reinstall MicrosoftWindows.Client

In some cases, re-registering all Microsoft Store (UWP) apps can resolve issues with Windows Search not working.  To do this, run the following command in an elevated PowerShell console:

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

reregister apps in windows 10 to fix search problems

After the command is finished, reboot the computer.

Blank Search Results on Windows When Bing Search Enabled

On 5 February 2020, many Windows 10 users noticed that the search function in the Start Menu and taskbar had stopped working. The search box in the taskbar opened, but when a user entered a query, the search returned empty results.

Windows 10 search giving blank results

Microsoft has acknowledged this issue, which was caused by the unavailability of Bing cloud search services. The issue is that, by default, Windows sends everything you type into the Start Menu search bar to Microsoft servers, which then return search results from Bing.

To resolve this issue, simply disable the integration between Windows Search and the Microsoft Bing search engine

  1. Open the Registry Editor (Win+R -> regedit.exe).
  2. Go to the registry key HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search\
  3. Change the value of the BingSearchEnabled and CortanaConsent parameters to 0.reg parameter BingSearchEnabled
    If these registry settings are missing, create them manually using the commands below:
    REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v BingSearchEnabled /t REG_DWORD /d 0 /f
    REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v CortanaConsent /t REG_DWORD /d 0 /f
    Or enable the Group Policy option Don’t search the web or display web results in Search under Computer Configuration > Policies > Administrative Templates > Windows Components.
  4. Restart the explorer.exe process or reboot your computer.
This solution should help if the search window opens, but nothing appears when you enter text to search for. In any case, to prevent such problems, you can disable Windows Search integration with Bing (How to disable web search suggestions in Windows Start menu).

Search Not Working in Windows Settings App

The Settings app in Windows 10 and 11 has its own search box that allows you to quickly jump to items in the system settings. If the search in the Settings app stops working:

  1. Open the File Explorer and navigate to the directory %LocalAppData%\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy\LocalState
  2. Open the properties of the Indexed folder and click the Advanced button. Make sure that the option “Allow files in this folder to have contents indexed in addition to file properties” is enabled.windows 10 settings search not working
  3. If the option is already enabled, disable it, click OK, and then re-enable it.

Reset Windows Search with PowerShell Script

If the above methods didn’t help you to restore search functionality in Windows 10/11, Microsoft recommends using the Reset Windows Search PowerShell script to reset Windows Search service settings. The script is compatible with Windows 11 and Windows 10 1903 (and newer).

To run this script, you need to:

  1. Download the ResetWindowsSearchBox.ps1 script https://www.microsoft.com/en-us/download/details.aspx?id=100295
  2. Open the PowerShell console as an administrator.
  3. Change the PowerShell Execution Policy settings (this command enables you to run PS1 scripts within the current PowerShell session): Set-ExecutionPolicy -Scope Process –ExecutionPolicy Unrestricted
  4. Run the PS1 script file: .\ResetWindowsSearchBox.ps1 reset windows search with powershell script ResetWindowsSearchBox.ps1
  5. The script will reset the Windows search settings to their default state.
  6. Restart your computer and check if the Windows search issue is fixed.

Here are some additional ways to fix search issues in Windows that might help if the previous options didn’t work for you:

  • Create a new user account, sign in with it on the computer, and verify whether Start Menu and Taskbar search are working correctly under the new profile.
  • The search service in Windows 11 uses the WebView2 component to display results. If WebView2 is not working correctly, the search bar may open, but it will not display any results. In such cases, updating (reinstalling) the WebView2 component may fix the issue. Use the built-in WinGet package manager to install a new version of this component: winget install Microsoft.EdgeWebView2Runtime reinstall webview2 component Restart the computer.
  • Check whether the ctfmon.exe process is running in your session. This standard Windows process controls both alternate user input and the Office Language Bar.(Touch Keyboard and Handwriting Panel Service). If this process is not running or has been stopped, you won’t be able to type characters into the Start Menu search bar. To start the process manually, press Win +R and run the command: C:\Windows\System32\ctfmon.exe run the ctfmon.exe process to repair search inputIf this solves the search issue, add the ctfmon.exe process to Windows Startup.
  • Boot from the LiveCD and delete the folder C:\Documents and Settings\username\AppData\Local\Packages\Microsoft.Windows.Cortana_****** (or, use the Unlocker tool to kill the process that is locking this folder). Reboot your computer. The Cortana folder will appear and, after a few minutes, the search should work.
  • Check the NTFS permissions for the C:\Windows\SystemApps\Microsoft.Windows.Search_cw5n1h2txyewy.Users must have Read+Execute permissions (BUILTIN\Users -> Allow ReadAndExecute, Synchronize). You can list folder NTFS permissions with PowerShell: Get-ACL $env:windir\SystemApps\Microsoft.Windows.Search_cw5n1h2txyewy check search app permissions in windows
  • Use these commands to check the system files and Windows image integrity: sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth
  • If you are experiencing search problems in the Microsoft Outlook client, follow another guide: Outlook Search Not Working.
33 comments
16
Facebook Twitter Google + Pinterest
PowerShellWindows 10Windows 11Windows Server 2022
previous post
Hyper-V Virtual Machine Stuck in Stopping/Starting State
next post
Configuring SFTP (SSH FTP) Server on Windows

Related Reading

How to Repair EFI/GPT Bootloader on Windows 10...

March 16, 2024

How to Restore Deleted EFI System Partition in...

March 11, 2024

How to Allow Multiple RDP Sessions on Windows...

April 28, 2026

How to Run Program without Admin Privileges and...

June 8, 2023

How to Install RSAT (Remote Server Administration Tools)...

March 24, 2026

How to Repair Windows Boot Manager, BCD and...

March 11, 2024

Wi-Fi (Internet) Disconnects After Sleep or Hibernation on...

March 15, 2024

Fix: The Computer Restarted Unexpectedly or Encountered an...

May 16, 2024

33 comments

Bob May 8, 2019 - 10:25 am

Thanks a lot for this. The only explanation and solution of its kind that I could find.

Reply
Hugo Rust June 26, 2019 - 3:44 am

Thanks so much! 1st one worked.

Reply
hub August 2, 2019 - 9:04 pm

The last but one solution works. Thanks a lot.

Reply
George August 13, 2019 - 9:33 am

1st one with deletion of registry key worked for me.

Do you know a root cause of that? Would be interesting to find out what is this key about and why we need to delete it.

Reply
Evan September 7, 2019 - 11:11 pm

I have tried all of these (and a number of others from other websites) with no success. However, I tried your suggestion to create a new user in Windows, and search works fine when I log in as that user. What does that suggest that I should try next?

Reply
Maekail June 6, 2020 - 7:34 pm

I have the same situation. Using Search as a new User works perfectly, however, under my account it is not working properly. What can I do next?

Reply
P September 27, 2020 - 11:07 pm

Same here, search wasn’t running for me. The “Re-Register Universal Apps” method did the trick for me. (nothng else worked).

Reply
Abe January 4, 2022 - 9:27 pm

I had similar issues on multiple computers. This issue is related to user profile and not any of the recommendation above. Just delete user profile and recreate it.
Delete C:\users\%userProfile%
start regedit and go HKLM\Software\Microsoft\Windows NT\Current Version\Profile List and find out the guid that belong to that particular profile. Delete the corresponding listed profile
and go to HKLM\Software\Microsoft\Windows NT\Current Version\Profile List and delete the corresponding GUID for that profile

Reply
Anders Stefan Öberg September 29, 2019 - 8:55 pm

Thanx!
Followed the registry changes under “Windows 10 Start Menu Search Not Working”.

And now it works! Tiles are back and when I start typing after clicking the windows flag, I get suggestions again!

Be well!

Reply
KS November 20, 2019 - 11:35 am

nothing in this really worked in my case!
can u suggest me some other methods ?

Reply
ehsan February 5, 2020 - 8:48 pm

thanks it work!

Reply
Julien February 6, 2020 - 9:56 am

Thanks, first method worked!

Reply
Dioxaz February 6, 2020 - 10:55 am

I want to thank the author of this guide as it helped successfully on 2 machines which I migrated from Windows 10 1803 to 1903.
I followed all those instructions and the taskbar or start menu search started working again as they should (no more dreaded blank menu). I suspect it’s the last Powershell command (Re-Register Universal Apps in Windows 10) that fixed it in my case, but I did follow the whole procedure (deleting the registry key, rebuild the indexing, etc) before doing the Powershell command, just to be sure.

Reply
Brian February 8, 2020 - 6:53 pm

Thank you ! Blank search with bing integration solution worked perfectly.

Reply
Alicja Arczynska February 10, 2020 - 10:25 am

Thanks a lot for this, you saved me

Reply
anonyms February 21, 2020 - 2:53 pm

Thanks mate.

Reply
Gustl February 23, 2020 - 3:02 pm

For me the following worked: Set BingSearchEnabled to 1
REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v BingSearchEnabled /t REG_DWORD /d 1 /f
Thanks

Reply
John February 23, 2020 - 11:11 pm

MY solution was a bit different than what has been described here – I went into the Task Manager, and I noticed the Search function was temporarily stopped. I killed the process, started a new Taskbar search, and the results started coming up!

Reply
Shadi February 24, 2020 - 11:39 am

Thank you, for me creating manually the registry settings was worked.

Thank you again

Reply
Alexander March 14, 2020 - 4:55 pm

This problem exists for several months now and keeps getting back. Why couldn’t it be fixed in one of the updates. WTF Microsoft

Reply
Sameer Das April 25, 2020 - 3:45 am

My windows task bar search option is not work and SearchUI.exe folder not shown in my pc..kindly solve the problem…

Reply
KK July 29, 2020 - 2:07 pm

Thank you so much!!!!

Reply
Cihat Okan ARIKAN August 2, 2020 - 7:18 pm

None of them except the following worked: Set BingSearchEnabled to 1
REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v BingSearchEnabled /t REG_DWORD /d 1 /f
Thanks

Reply
Rob Finson September 6, 2020 - 2:14 pm

My Situation: “Type here to search” box wouldn’t accept text, or work in any way. Created a test user, test user could use the search box without issue. Also, search within File Explorer wouldn’t work.
Re-registering universal apps worked for me. I also messed around with the Bing/Cortana registry entries and modifying/starting/stoping indexing, but none of those appear to have helped. Thanks for the comprehensive troubleshooting guide on this one, very helpful!

Reply
Thomas Widmer September 28, 2020 - 6:53 am

I when through many of your recommendations. “Re-Register Universal Apps in Windows 10” ist the one that finally worked.
Thank you.

Reply
Tadie January 1, 2021 - 9:35 am

Thank you. This was very helpful.

Reply
Very Appreciative May 3, 2021 - 3:39 am

This was extremely extremely helpful. Thank you for being so thorough!

Reply
Alex June 26, 2021 - 5:11 am

Thank you – the second solution in the list worked for me by deleting 2 of the registry files and running explorer.exe again!

Happy

Reply
Bob July 23, 2022 - 2:58 pm

Thanks for this! After trying all solutions listed here the only one that worked was Removing the “Microsoft.Windows.Search_***” folder in my users AppData directory, and then restarting. I had to use a process unlocker tool like described, but it worked after the restart.
The exact directory to Remove is: “C:\Documents and Settings\username\AppData\Local\Packages\Microsoft.Windows.Search_******”

Reply
Vijay September 29, 2022 - 6:14 pm

Thanks

Reply
Midun April 1, 2023 - 1:36 pm

Thanks solve my problem search..very help full thanks..a lot

Reply
Allen Dimetri April 4, 2023 - 3:47 am

thanls!!!! powershell did the trick

Reply
Ed August 13, 2023 - 7:32 pm

Thanks for the post, this re-install Microsoft.Windows.Search universal app worked for me.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • How to Safely Disable IPv6 on Windows

    April 30, 2026
  • Updating UEFI Secure Boot Certificates on Windows Devices Explained

    April 20, 2026
  • Security Warnings When Opening RDP Files in Windows 11

    April 17, 2026
  • Find Computers with Pending Reboot Status Using PowerShell

    April 15, 2026
  • Mounting NFS Shares in Windows Using the Built-in Client

    March 26, 2026
  • Monitor Windows Log Files in Real Time with PowerShell

    March 17, 2026
  • Pin and Unpin Apps to Taskbar in Windows 11 via PowerShell

    March 10, 2026
  • Load and Initialize Network Drivers in Windows PE or Recovery Environment

    February 25, 2026
  • How to Set a Custom Drive Icon in Windows

    February 17, 2026
  • Managing Per-User Services in Windows

    February 11, 2026

Follow us

  • Facebook
  • Twitter
  • Youtube
  • Telegram
Popular Posts
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
  • How to Download Offline Installer (APPX/MSIX) for Microsoft Store App
  • How to Update Trusted Root Certificates in Windows: Manual and Automatic Methods Explained
  • Fix: Remote Desktop Licensing Mode is not Configured
  • How to Delete Old User Profiles in Windows
  • Configuring Port Forwarding in Windows
  • How to Install RSAT (Remote Server Administration Tools) on Windows
Footer Logo

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


Back To Top