Skip to content

Instantly share code, notes, and snippets.

@stknohg
Created April 21, 2024 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stknohg/e775a36700b7216675818168772cccb7 to your computer and use it in GitHub Desktop.
Save stknohg/e775a36700b7216675818168772cccb7 to your computer and use it in GitHub Desktop.
Windows 11 スタートメニュー検索でウェブの検索結果を表示させない方法

こちらの記事にあるレジストリ変更のコマンドをメモ。

# 表示させない
reg add HKCU\Software\Policies\Microsoft\Windows\Explorer /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f

# 元に戻す
# 厳密にやるにはキーを削除する必要があるが、0に更新でも実用上特に困らないので...
reg add HKCU\Software\Policies\Microsoft\Windows\Explorer /v DisableSearchBoxSuggestions /t REG_DWORD /d 0 /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment