Finally got it fixed! Something in
here worked:
Stop & Restart Windows Push Notification System Service
1. Open the Run dialog on your Windows 11 PC, type Services.msc in it, and press Enter to open the Services tab.
2. In the Services, search for the Windows Push Notification System Service and double-tap on it to move to the properties section.'
3. Now, select Stop in the Service status section to halt it, and then click on the Restart option to reinstate it again.
Repair Windows Apps
1. So first, open the Windows Powershell app on your Windows 11 PC with administrative privileges.
2. Subsequently, execute the below commands one-by-one in the console to repair the Windows apps.
Get-AppxPackage Microsoft.Windows.ShellExperienceHost | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
3. Once done, restart your system and check if the issue is fixed.
Re-Register Action Center
1. Open the Windows Search Box, type Windows PowerShell, and select Run as administrator under the app to run it with admin rights.
2. Next, paste the below command into the Windows PowerShell program and press the Enter key to execute it.
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }