DEV Community

Luca Ramseyer
Luca Ramseyer

Posted on • Originally published at lupree.hashnode.dev on

Enable Notification Settings in Windows 11

Many Users are currently reporting not seeing the Notification Category in the Windows 11 Settings. Microsoft has yet to solve this problem, however there is a workaround you can use to get the Notification Settings on your computer again. The core of this workaround is a registry key that is normally used to disable certain settings to restrict systems in schools for example. This key can also be used to show certain settings.

Setting the Key manually:

To manually set the key to the correct value, you first need to navigate to the location where it is stored. For that, open the registry editor and navigate to the following path:

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

In that folder, create a new String value called SettingsPageVisibility. If this Key already exists, you may also just edit the existing one.

Now, set the value of this key to show:notifications.

After restarting the Windows Settings, you should be abled to see the Notifications Category again and also change the settings.

Setting the Key via Powershell Script:

To set the Key with a Powershell Script, you can execute the following Code:

$Key = Get-Item -Path "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer"

If($null -ne $Key.GetValue("SettingsPageVisibility")) {
    Set-ItemProperty -Path "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "SettingsPageVisibility" -Value "show:notifications" -Force | out-null
}
else {
    New-ItemProperty -Path "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "SettingsPageVisibility" -PropertyType "String" -Value "show:notifications" | out-null
}

Enter fullscreen mode Exit fullscreen mode

Top comments (0)