My store app and all other apps aren't showing in start menu although they open when i open any program such as photos. when using following instructions in powershell:
1. reg delete "HKCU\Software\Microsoft\Windows NT\CurrentVersion\TileDataModel\Migration\TileStore" /va /f
2. get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmetadata\appxbundlemanifest.xml")}
$bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname
3. get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmanifest.xml")}it shows-
get-appxpackage : The database disk image is malformed
The database disk image is malformed
At line:1 char:1
+ get-appxpackage -packageType bundle |% {add-appxpackage -register -di ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: ( [Get-AppxPackage], Exception
+ FullyQualifiedErrorId : System.Exception,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackageCommandI tried using DISM but it stops at 82% with error 1392 saying a file is corrupted and unreadable.
I also upgraded windows twice to newer builds but it ended in black with a cursor. I tried opening task manager with Alt+Ctrl+Del but it wont open so i had to revert to previous build.
Please help.