Last active
October 15, 2024 19:08
-
-
Save ryozi-tn/f83cab3e24007c2d0f06cfd3566d1353 to your computer and use it in GitHub Desktop.
Windows11の鬱陶しい動きを消すやつを説明付きでほしかったので書いた
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager] | |
; システム > 通知 > 追加の設定 > "更新後およびサインイン時に Windows のウェルカムエクスペリエンスを表示して、新機能と提案を表示する"を無効(0) | |
"SubscribedContent-310093Enabled"=dword:00000000 | |
; システム > 通知 > 追加の設定 > "Windowsを使用する際のヒントや提案を入手する"を無効(0) | |
"SubscribedContent-338388Enabled"=dword:00000000 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
; 個人用設定 > スタート > "スタート画面にアカウント関連の通知を時々表示する"を無効(0)にする | |
"Start_AccountNotifications"=dword:00000000 | |
; 個人用設定 > スタート > "ヒント、ショートカット、新しいアプリなどのおすすめを表示します"を無効(0)にする | |
"Start_IrisRecommendations"=dword:00000000 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement] | |
; システム > 通知 > 追加の設定 > "Windows を最大限に活用し、このデバイスの設定を完了する方法を提案する"を無効(0)にする | |
"ScoobeSystemSettingEnabled"=dword:00000000 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
; スタートメニューでキー入力した際にBing検索し始めるのを無効(0)にする | |
"BingSearchEnabled"=dword:00000000 | |
;; 以下は好み | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
; 個人用設定 > スタート >"最近開いた項目をスタート、ジャンプリスト、ファイル エクスプローラーに表示する"を無効(0)にする | |
"Start_TrackDocs"=dword:00000000 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Start] | |
; 個人用設定 > スタート >"最近追加したアプリを表示する"を無効(0)にする | |
"ShowRecentList"=dword:00000000 | |
; 個人用設定 > スタート >"よく使うアプリを表示する"を無効(0)にする | |
"ShowFrequentList"=dword:00000000 | |
;; Win11のコンテキストメニューを無効にする(戻す場合はキーを削除) | |
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32] | |
@="" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment