
How To Fix Microsoft Store Apps Not Working In Windows 10
Fix problems with apps from Microsoft Store. If you're in Windows 10 and you're having problems with an app from Microsoft Store, consider these updates and fixes.
Tips to Repair Microsoft Store and App Problems in Windows 10
Use the Windows Store Apps Troubleshooter.
Check Your Computer's Time.
Reset the Microsoft Store.
Clear the Store Cache.
Reset Windows Update Components.
Edit the Registry for Connection Errors.
Check Your Proxy Settings.
Re-register the Microsoft Store.
Link: https://www.microsoft.com/en-us/software-download/windows10
Copy and paste this:
# Get all the provisioned packages
$Packages = (get-item 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications') | Get-ChildItem
# Filter the list if provided a filter
$PackageFilter = $args[0]
if ([string]::IsNullOrEmpty($PackageFilter))
{
echo "No filter specified, attempting to re-register all provisioned apps."
}
else
{
$Packages = $Packages | where {$_.Name -like $PackageFilter}
if ($Packages -eq $null)
{
echo "No provisioned apps match the specified filter."
exit
}
else
{
echo "Registering the provisioned apps that match $PackageFilter"
}
}
ForEach($Package in $Packages)
{
# get package name & path
$PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName
$PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))
# register the package
echo "Attempting to register package: $PackageName"
Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
}