Hi Yadav, Akanksha,
Welcome to the Microsoft Q&A forum.
Thank you for sharing the details and the steps you’ve already tried. Windows Search behavior differs between modern and legacy components, which is why some registry settings may not affect the Start menu search experience as expected.
For your scenario - disabling search in kiosk mode while keeping it available for normal users - the following approach is recommended and reliable:
Disable the Windows Search service - Windows Search relies on the Windows Search (WSearch) service. Disabling this service prevents search results from appearing when users type in the Start menu or search box.
Steps (for kiosk mode):
- Stop the Windows Search service:
sc stop WSearch - Disable the service startup:
sc config WSearch start= disabled
To restore search for normal users:
-
sc config WSearch start= delayed-auto -
sc start WSearch
This method fully disables search functionality at the system level.
Optional: Hide the search box (visual only) - If you want to reduce visibility of search (without fully disabling it), you can hide the search UI.
- Use this command line:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 0 /f - Note: This hides the search box but does not disable search functionality on its own.
Disclaimer: Generally, modifying registry subkeys or work group is intended for advanced users, administrators, and IT Professionals. It can help fix some problems, however, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For further protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs.
I hope this helps you implement a clean and controlled kiosk experience. Let me know if you need further assistance, feel free to ask me by clicking "Add Comment" or "Add Answer" if you cannot add comment so your response will be visible. Thanks for your effort.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.