I upgraded my 8.1 laptop to windows 10. I was able to use my laptop for three weeks with no problem. However, when I open my windows 10 laptop while ago and press win logo in keyboard. This message display in my screen. "Critical error start menu. We'll fix it next time you sign in." So, I sign out for 3x but same message display in my screen whenever I press start menu. How would I fix it?
3 Answers
You could resolve it by following these steps :
Press Win+R
Type
Powershelland ensure you have checked "create this task with administrator privileges"Type the following code:
Get-appxpackage -all *shellexperience* -packagetype bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “\appxmetadata\appxbundlemanifest.xml”)}The above command will reinstall start menu
Once Powershell gets completed reboot your machine
- 686
- 8,280
I had the same issue and resolved it with the following steps:
In Windows, press Ctrl+Alt+Del to show the security screen.
There, press and hold Shift and click on the Shutdown symbol in the bottom right corner of the screen, then Shutdown.
After that, the system will reconfigure itself while shutting down. You can then restart your computer. During the following boot, my computer even needed to restart once, but after that I could log in again and the error was gone.
On another note, several forum posts indicate that this issue is caused by Avast antivirus, and goes away after uninstallation of this program. There might be something to it, because I use Avast too. If it should happen again, I will switch to the built-in Windows Defender.
Edit: it happened again pretty soon, I uninstalled Avast, it never happened again after that.
- 2,175
On the latest version of Windows 10 all solutions I read failed. However it appears to go away if you just copy a working Windows local settings dir from a healthy user. Hence:
- Create or have another admin user in the system (it probably needs for that user to have logged in at least once).
- Copy the %localappdata%/Microsoft/Windows of that user to a temporary folder (as your normal/faulty user).
- From the temporary admin user backup your faulty user's %localappdata%/Microsoft/Windows and replace it.
PS. My problem was caused by an uknown software fault during a ccleaner cleanup operation so your mileage may vary.
- 2,666