0

Whenever I clicked On Start Menu it will give error i.e : Critical Error. your start menu isn't working.

 Error Image

I tried to sign out to many times but it didnt work.

but when I create new user to this pc and hit start menu from there it will work properly.

I also trid this thing Windows 10 Start Menu Critical Error Output:

Get-appxpackage : Access is denied.
Access is denied.
At line:1 char:1
+ Get-appxpackage -all shellexperience -packagetype bundle |% {add-appx ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Get-AppxPackage], UnauthorizedAccessException
    + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Windows.Appx.PackageManager.Commands.GetApp
   xPackageCommand

Powershell error

How do I resolve this issue?

I Also try these full steps from How to install start menu these thing also not working for me

thank You

janki
  • 101

1 Answers1

1

You can't reinstall the Shellexperiencehost (Your start menu).

Run a repair on your image using DISM /online /cleanup-image /restorehealth , or repair the installation using the installation medium. If the Start menu troubleshooter doesn't work, the issue may lie with the AppX package itself, which you need to get from a repair.

http://aka.ms/diag_StartMenu

The get-appxpackage command reinstalls the package for the user ONLY using a parent package in C:\Windows\SystemApps , which if damaged has to be replaced by an in-place upgrade, reinstall, or repair.

Imagine it's akin to your ntoskrnl being damaged. You just can't pop a new one in, and even if you could, it's probably not the only thing broken in the image.

Check for corruption with SFC, use DISM, or repair it, to make it short and maybe not sweet. :(

Charlie C
  • 106