Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Fix: Action Center Not Opening on Windows 10 and 11

March 11, 2024 Windows 10Windows 11

Fix: Action Center Not Opening on Windows 10 and 11

The Action Center in Windows 10 and 11 displays various notifications from user and system apps. In addition, the Action Center provides buttons for quickly turning various Windows features on and off (Wi-Fi, mobile hotspot, Bluetooth, etc). Sometimes its icon is missing from the tray and you cannot open the Action Center on Windows. This article shows how to restore the Action Center if it won’t open.

Notification or Action Center not opening in Windows

First, try opening the Action Center using the Win+A shortcut. If the Action Center panel opens, you probably just need to enable the Action Center tray icon in Settings.

Press Win+I and go to the Personalization -> Taskbar (to quickly access this settings section, run the URI command: ms-settings:taskbar).

Turn system icons on or off

Scroll down and check that the Action Center option is enabled in Turn system icons on or off section.

Enable Action Center icon

Then go to the notification settings (Settings -> System -> Notification and Actions: ms-settings:notifications ).

Enable the Action Center on Windows

Here you can enable or disable the Action Center and select apps that are allowed to show notifications through the Action Center.

Turn on or off notifications in Action Center

Try restarting the File Explorer process if the Action Center is enabled in Settings but you cannot open it. Kill the exporer.exe process using the Task Manager.

restart Windows Explorer process

Or restart the process using PowerShell:

taskkill /f /FI "USERNAME eq $env:UserName"/im explorer.exe
c:\windows\explorer.exe

restart explorer.exe cmd

Try to start the elevated File Explorer process as an administrator.

If this doesn’t help, check whether you have a local policy that disables Action Center in Windows.

  1. Open the Local Group Policy Editor (gpedit.msc).
  2. Go to User Configuration -> Administrative Templates -> Start Menu and Taskbar;
  3. Check that the Remove Notifications and Action Center option is disabled or not configured. GPO: Remove Notifications and Action Center
If your computer is added to an Active Directory domain, the domain GPOs may disable Action Center on your computer. Use rsop.msc or gpresult command to get the resulting GPO settings on the computer and check that Action Center is not disabled by domain GPOs.

In addition, the Action Center can be disabled through the registry. Check the DisableNotificationCenter value in the following registry keys:

  • HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer
  • HKLM\Software\Policies\Microsoft\Windows\Explorer

The Action Center is disabled if the value of the DisableNotificationCenter parameter is 1. You can enable it using the command:

REG ADD HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer /v DisableNotificationCenter /t REG_DWORD /d 0 /f

DisableNotificationCenter - registry option

In some cases, the problem with the Action Center may be caused by errors in the Windows Store or the Settings app. Try to re-register all MS Store apps using manifest files with the PowerShell one-liner:

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

It may also help to reset the user environment settings in the UsrClass.dat file. Simply rename the file in the %localappdata%\Microsoft\Windows folder and log on to Windows to recreate the file or use PowerShell:

Rename-Item "$env:localappdata\Microsoft\Windows\UsrClass.dat” oldUsrClass.dat –Force

recreate usrclass.dat file

If nothing helps, use the DISM and SFC commands to check the Windows image health:

DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

0 comment
0
Facebook Twitter Google + Pinterest
previous post
Couldn’t Mount ISO File on Windows
next post
How to Find Windows Version and Build Number Installed

Related Reading

Unable to Map Drive: An extended error has...

May 13, 2025

Map a Network Drive over SSH (SSHFS) in...

May 13, 2025

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
  • How to Delete Old User Profiles in Windows
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Backup and Copy Local Group Policy Settings to Another Computer
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top