TECHNICAL SOLUTIONS

How to Reset, Repair & Reinstall Windows 10 Store [2024]

Powershell Command: Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}

The Microsoft Store (formerly known as the Windows Store) is Microsoft’s official place to download apps. Windows apps are exclusively available on it. This makes it annoying when the Windows official store stops working or does not even open.

This is a step by step guide to help you fix the Microsoft Store. You canb either run the troubleshooter to automatically detect and repair Microsoft Store problems or clear the cache.

If your Windows 10 Store won’t load. Or if your store starts up but crashes after opening it. You’ll need to repair the problem before you are able to use apps on your laptop. These tips will help you repair Windows 10.

On Windows 10, when you want to use an app, all you have to do is download it from the microsoft store, where you can download video apps like netflix, facebook, spotify, games,music and other software.

Sometimes the Microsoft Store might have issues downloading or updating apps, some tiems your app will crash or the Store won’t open at all.

This guide will help you fix store errors, download issues by using Windows PowerShell to uninstall and reinstall the Microsoft Store, you can also solve other store problems by using the reset option.

In this troubleshooting guide, you’ll learn how to reset the Microsoft Store app to resolvethe most common issues on Windows 10.

This tutorial will help you fix the following issues:

You’ll also learn how to solve Microsoft Store error code 0x80131500 after opening the Microsoft Store.

Issues addressed in this tutorial:

microsoft store not working fix
microsoft store error fix
microsoft store windows 10 fix
microsoft store app windows 10 fix
microsoft store crash fix
microsoft store win 10 fix
microsoft store app fix
how to fix microsoft store couldn’t install tutorial
how to fix microsoft store can’t download solution
how to fix microsoft store windows 10 2020
microsoft store error something unexpected happened in windows 10 fix

This troubleshooting guide will work on Windows 10, windows 7, windows 8, operating systems and desktops, laptops, tables and computers manufactured by the following brands: , Dell, HP, Alienware, MSI, Toshiba, Acer, Lenovo, razer, huawei among others.

Link: https://www.microsoft.com/en-us/software-download/windows10

Command:

# Get all the provisioned packages
$Packages = (get-item ‘HKLM:SoftwareMicrosoftWindowsCurrentVersionAppxAppxAllUserStoreApplications’) | 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
}

source

how to repair windows 10

13 thoughts on “How to Reset, Repair & Reinstall Windows 10 Store [2024]

  • all apps are getting installed but netflix is not installing , the install button is not responding.PLS HELP!!!

  • I reset the app, and now it doesn't launch! plz help.

  • This app has been blocked by your system administrator…… please help how to fix it 🙁

  • when i do the wsreset, it says "youll need another app" what do i do?

  • You saved me bro very thankful to you. You saved me a lot. If there is a chance I will give unlimited likes

  • i have this problem: Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF9, Install failed. Please contact your software vendor.

    (Exception from HRESULT: 0x80073CF9)

    error 0x80070490: Unable to update the status for package

    windows.immersivecontrolpanel_10.0.2.1000_neutral_neutral_cw5n1h2txyewy (Clear=0x0, Set=0x400).

    NOTE: For additional information, look for [ActivityId] c7885ca9-045d-0000-37f8-89c75d04d601 in the Event Log or use

    the command line Get-AppPackageLog -ActivityID c7885ca9-045d-0000-37f8-89c75d04d601

    At line:1 char:28

    + … | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I …

    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo : WriteError: (C:WindowsImme…ppXManifest.xml:String) [Add-AppxPackage], IOException

    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand

  • It took about 5 minutes into the video for one of the solutions to work. Thank you!

  • when i reset windows store it disappeared off my pc and now i cant find or open it

  • Estoy pensando seriamente que la única forma de reparar la tienda será formateando mi PC y reinstalando Windows desde Cero. Compré el Game Pass ultimate y no he conseguido utilizar la app de Xbox porque la tienda simplemente no descarga nada.

Comments are closed.