Reinstall Microsoft Store in Windows 10 [2020]

208 Aufrufe
Published
This tutorial will help you restore Windows Store in Windows 10 after removing it or it has become corrupted via PowerShell

Reinstall Microsoft Store, windows 10 Reinstall Microsoft Store , Reinstall Microsoft Store windows 10, Reinstall Microsoft Store in Windows 10.

Do you have Microsoft store issues then this is the tutorial for you. In this video i'm going to show you how to reinstall the windows store" or microsoft store your PC.

This tutorial fixes the following issues:

windows 10 Reinstall Microsoft Store solution.
windows 10 Reinstall windows Store .
fix Reinstall Microsoft Store windows 10.

Works on Laptops, PCs and Tablets made by Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware.

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
}
Kategorien
Windows Reparieren
Kommentare deaktiviert.