Windowsシステム>設定項目"通知" を表示させる方法について

T, Natsumi 0 評価のポイント
2025-11-17T02:40:25.7466667+00:00

各位

いつも丁寧なご回答をありがとうございます。

さて題記の件について、対応方法をご存知の方いらっしゃらないでしょうか。

・Windowsシステム>設定項目"通知" を表示させる方法について

 

WindowsUpdateをかけたところ、 システムの一部が隠れてしまったようです。

レジストリやグループポリシーをいじるとでてくると記載されておりますが、

具体的な情報が掴めずこまっております。 

参考: ※設定 > システムのなかにある「通知」がみあたりません。

ユーザーの画像 ※本来は「サウンド」と「フォーカス」の間に「通知」がありました。

お忙しいところ恐縮ですが、よろしくお願いいたします。

家庭向け Windows | Windows 11 | 設定
0 件のコメント コメントはありません

2 件の回答

並べ替え方法: 最も役に立つ
  1. M_Marl 8,010 評価のポイント
    2025-11-18T04:27:30.3166667+00:00

    ⚙設定>システム>回復>Windows Updateで問題を解決する

    今年の8月以降の更新が正常にできていれば、これが一番楽な方法

    ユーザーの画像

    この回答は役に立ちましたか?

    0 件のコメント コメントはありません

  2. Jhun Buala 5,270 評価のポイント 独立アドバイザー
    2025-11-17T04:32:41.6833333+00:00

    こんにちは、なつみさん、

    こんにちは。私はジュン、独立顧問です。あなたのクエリに関しては、設定の中の欠けている「通知」項目を復元する手順をいくつか試してみましょう。Windows 11のシステムで、何が問題を解決するか試してみてください。

    ある。グループポリシーに移動して、「通知」が無効になっているかどうかを確認します。

    1. Win+R を押します
    2. タイプ: gpedit.msc
    3. [スタート] メニューとタスク バー>管理用テンプレート>ユーザー構成に移動します。
    4. 次の項目を見つけて確認します: "通知とアクション センターを削除する" "トースト通知をオフにする" "クイック設定を削除する"
    5. これらの設定が「未構成」に設定されていることを確認してください。[有効] に設定されている場合、Windows は通知設定ページ全体を非表示にします。
    6. Windows を再起動します。

    B. レジストリキーを確認する

    1. Win+R キー>regedit と入力>Enter キーを押します。
    2. に移動します。

    通知をグローバルに無効にします。

    HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer

    で、DisableNotificationCenter と DisableToastNotifications を探します。これら 2 つが存在し、値 = "1" の場合は、それらを "0" に変更するか、削除します。

    非表示の通知設定ページの場合。

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer

    で SettingsPageVisibility を探します。次のようなものが表示され

    た場合:

    hide:notifications

    SettingsPageVisibility 値全体を削除します。

    C. PowerShell を使用して、非表示の設定ページを復元します。

    1. 管理者として Powershell を開き、コピーして実行します:

    Get-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer

    1. SettingsPageVisibility が表示されている場合は、Remove-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer -Name SettingsPageVisibility をリセットします。
    2. PCを再起動します。

    D. すべての設定ページを再登録する

    1. PowerShell を管理者として実行します。
    2. Get-AppxPackage windows.immersiveコントロールパネル |リセット-AppxPackage
    3. これにより、設定アプリ全体が更新されます。

    E.それでも見つからない場合:Windows Updateの破損の修正。DISM + SFC を実行します。

    1. CMDを開く(管理者)
    2. 実行:

    DISM /Online /Cleanup-Image /RestoreHealth

    sfc /scannow

    1. 両方が完了したら再起動します。

    これがお役に立てば幸いです

    よろしく、

    ジュン


    Hi T, Natsumi,

    Good Day. I'm Jhun an independent advisor. In regards with your query, let's do some steps to restore the missing "Notifications" item under Settings . System in Windows 11, and see what will fix the issue.

    A. Go to Group Policy to check if "Notifications" is disabled.

    1. Press Win+R
    2. Type: gpedit.msc
    3. Go to: User Configuration > Administrative Templates > Start Menu and Taskbar.
    4. Find and check these items: "Remove Notifications and Action Center" "Turn off toast notifications" "Remove Quick Settings"
    5. Make sure these settings are set to "Not Configured". If any are set to Enabled, Windows will hide the entire Notifications settings page.
    6. Restart Windows.

    B. Check Registry Keys

    1. Press Win+R > type regedit > enter.
    2. Navigate to :

    Disabling notifications globally.
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer
    look for: DisableNotificationCenter and DisableToastNotifications. If these 2 exists and has a value = "1", change them to "0" or delete them.

    For hidden Notifications settings page.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
    look for: SettingsPageVisibility.
    If you see something like:
    hide:notifications
    Delete the entire SettingsPageVisibility value.

    C. Use PowerShell to restore hidden Settings pages.

    1. Open Powershell as Admin, copy and run:
      Get-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
    2. If you see SettingsPageVisibility, reset it:
      Remove-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer -Name SettingsPageVisibility
    3. Restart PC.

    D. Re-register all settings pages

    1. Run PowerShell as admin.
    2. Get-AppxPackage windows.immersivecontrolpanel | Reset-AppxPackage
    3. This will refresh the entire Settings app.

    E. If still missing: Windows Update corruption fix. Run DISM + SFC:

    1. Open CMD (Admin)
    2. Run:
      DISM /Online /Cleanup-Image /RestoreHealth
      sfc /scannow
    3. Restart after both complete.

    I hope this helps

    Regards,
    Jhun

    この回答は役に立ちましたか?

    0 件のコメント コメントはありません

お客様の回答

質問作成者は回答に "承認済み"、モデレーターは "おすすめ" とマークできます。これにより、ユーザーは作成者の問題が回答によって解決したことを把握できます。