Startmenunotshowingicons: Difference between revisions

From Piszczynski
piszczynski>Aleks
No edit summary
m (4 revisions imported)
 
(2 intermediate revisions by one other user not shown)
Line 20: Line 20:


Reinstall the windows shell experience:
Reinstall the windows shell experience:
*Get-appxpackage -all *shellexperience* -packagetype bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “appxmetadataappxbundlemanifest.xml”)}  
*Get-appxpackage -all *shellexperience* -packagetype bundle | ForEach-Object {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “appxmetadataappxbundlemanifest.xml”)}
 
 


== Start Menu Not Showing Icons ==
== Start Menu Not Showing Icons ==
Line 28: Line 26:
Fix:
Fix:
Restart Windows Explorer
Restart Windows Explorer
== Reinstall all windows packages ==
*Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Latest revision as of 22:32, 15 November 2023

Start menu not working

Start menu could not load - try to restart processes in bat script:


powershell.exe "get-service WpnUserService_* | stop-service -force"

taskkill /f /im "shellexperiencehost.exe"

taskkill /f /im "explorer.exe"

taskkill /f /im "searchui.exe"

ren c:\users\%username%\appdata\Local\Microsoft\Windows\CloudStore\cloudstore.dat cloudstore.dat.old

start explorer.exe

exit


Reinstall the windows shell experience:

  • Get-appxpackage -all *shellexperience* -packagetype bundle | ForEach-Object {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “appxmetadataappxbundlemanifest.xml”)}

Start Menu Not Showing Icons

Fix: Restart Windows Explorer


Reinstall all windows packages

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