How to Reinstall Microsoft Store in Windows 10 - (2024)

TechFixIT
TechFixIT
9.9 هزار بار بازدید - 2 سال پیش - How to Reset, Repair and
How to Reset, Repair and Reinstall Windows 10 Store.

Windows 10 comes with many built-in Store apps that may not be useful to you. As you may have known, PowerShell allows you to uninstall individual apps or all apps using a single command.

If you had used the following command to uninstall all bundled apps in Windows 10, you should have noticed that the much useful “Windows Store” app (now known as “Microsoft Store”) is one of those removed apps.

Issues resolved in this tutorial:
reinstall windows 10 store apps manually
reinstall windows 10 store apps
reinstall windows 10 store apps powershell
reinstall windows 10 microsoft store
how to install ms store in windows 10
reinstall microsoft store in windows 10 powershell
how to reinstall microsoft store app windows 10
how to reinstall microsoft store for windows 10
how to reinstall windows 10 store
reinstall microsoft store in windows 10
how to reinstall microsoft store on windows 10

Since the introduction of Windows 10 , it comes with some default features that let you delete apps either one by one, or the entire Microsoft Store App. Sometimes, you may face issues like a specific app not working or when the Microsoft Store app stops working. In such situations, you would need to reinstall all apps (including the Store app) that come built-in with the Windows 10 OS or the individual Microsoft Store app. You may also want to restore an app if you have accidentally deleted it somehow. Here in this post, we have shown a few updated ways on how to reinstall Microsoft Store app on Windows 10 or the individual apps. Let’s see how.

This troubleshooting guide will work Windows 11 operating systems (Home, Professional, Enterprise, Education) and desktops, laptops, tables and computers manufactured by the following brands:  Asus, Dell, HP, MSI, Alienware, MSI, Toshiba, Acer, Lenovo, razer, huawei, dynabook , vaio, surface among others.

Link:https://www.microsoft.com/en-us/softw...

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
}
2 سال پیش در تاریخ 1400/12/15 منتشر شده است.
9,919 بـار بازدید شده
... بیشتر