Sunday, November 16, 2014

Windows Store and several other apps missing on Windows 10?

Some apps in my PC suddenly gone missing, pinned app icon becomes blank, and worst is that one of the missing one is Store. Others I have noticed are MSN apps, Mail, Calendar, and Photos, any help how to restore them?


UPDATE:
Reinstalling via PowerShell with following command doesn't work:



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



It show lots of error. If there is a way to generate log file please tell me.


UPDATE:
Found a documentation from Microsoft here and after following it, still it doesn't work but it generates a shorter error information:



Add-AppxPackage : Cannot find path 'C:\Program
Files\WindowsApps\Microsoft.WindowsStore_2015.2323.4.0_neutral_~_8wekyb3d8bbwe\App
At D:\Aprianto Nursetiawan\Desktop\reinstall-preinstalledApps.ps1:35
char:2
+ Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Program File...dleManifest.xml:String) [Add-AppxPackage],
ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...