Forum Discussion
Joe Stocker
Feb 13, 2024Bronze Contributor
How do you disable the "type-to-search" feature in the Windows 10 start menu
How do you disable the "type-to-search" feature in the Windows 10 start menu for "Windows 10 Enterprise for Virtual Desktops" So far group policy works on Windows 11, or Windows 10 Enterprise, but n...
Kidd_Ip
Feb 14, 2024MVP
It may depend on different edition of Windows for GPO, may consider below PowerShell for all users and editions:
if( -not (Test-Path -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer)){
New-Item HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer
}
Set-ItemProperty -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer `
-Name "DisableSearchBoxSuggestions" -Value 1 -Type DWord
Joe Stocker
Feb 21, 2024Bronze Contributor
Unfortunately that did not work. Any other ideas?