How to Fix Windows Store Error 0x80131500 in Windows 10 - [3 Solutions] 2024

preview_player
Показать описание
How to Repair Error Code: 0x80131500 While Installing Updates in Windows 10. How to Solve Windows App Install Error 0x80131500 in Windows 8. . Error Code 0x80131500 Windows 10 Solution. Microsoft Store Error 0x80131500 Fix.

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

Copy and Paste this 1:

Copy and paste this 2:

# 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
}
Рекомендации по теме
Комментарии
Автор

None of these worked. :(

Addendum 2020-04-30: After much frustration, I finally caved and changed my system region. Did you know that the Microsoft Store doesn't load if your region is set to Puerto Rico?

maraileres
Автор

I tried second one..and now my Microsoft Store is gone .. not showing.

satyajaiswal
Автор

I had tried everything to fix Microsoft Store error 0x8131500 and nothing worked until I saw the comment below for TLS 1.2. I now have my store Thank you

kencalrod
Автор

When i paste it type exit and enter then i restart my system my Store is not showing on the screen its will be blank box without logo and name

playmoment
Автор

I did the first command part on the PowerShell, and it opens a blue tab then closes, is there anyway to undo the command to have normal microsoft store?

theanimeplay
Автор

start>ie>options>internet options>enable tls 1.2 worked for me

stellastef
Автор

what an absolute life saver....just another tool to use when working on you so much

solution 4 was the trick for me...used powershell to uninstall all of microsoft's bloatware...but I needed it to play gears 5 xD


for anyone using solution 4....AS LONG AS YOU TYPED CORRECTLY, REGARDLESS OF WHAT OUTPUT IT SPITS AT YOU, FOLLOW THE NEXT STEP IN THE VIDEO. It can look deceiving when it will say something along the lines of "service already started" or "service not found" but I promise...just keep following along and itll bring everything back to life


Thanks again mate!

korn
Автор

1. Press Windows Key + X on the keyboard and then select “Command Prompt (Admin)” from the menu.

2. Stop the BITS, Cryptographic, MSI Installer and the Windows Update Services. To do this, type the following commands at a command prompt. Press the “ENTER” key after you type each command.

net stop wuauserv

net stop cryptSvc

net stop bits

net stop msiserver

3. Now rename the SoftwareDistribution and Catroot2 folder. You can do this by typing the following commands in the Command Prompt. Press the “ENTER” key after you type each command.

ren SoftwareDistribution.old

ren C:\Windows\System32\catroot2 Catroot2.old

4. Now, let’s restart the BITS, Cryptographic, MSI Installer and the Windows Update Services. Type the following commands in the Command Prompt for this. Press the ENTER key after you type each command.

net start wuauserv

net start cryptSvc

net start bits

net start msiserver

5. Type Exit in the Command Prompt to close it and then restart the computer.

6.After restarting the computer, now retry to install Windows Updates.

sinobi
Автор

The powershell solution worked for me
.
I'm tired of Microsoft being so unintuitive on repairing their software. I truly helpful company would produce a patch, not have to instruct users, regardless of technical ability, how to repair their software through powershell like their using a Linux distro. It's rediculous

levibazen
Автор

Damn, I already followed all the solutions and it still didn't work..why??
All apps I wanted to install are still error :(

infinitysagaart
Автор

The second solution somehow made it worse :(

loictruyen
Автор

my windows doesn't show windows store only show store and no show reset option

pankajchandankhede
Автор

For those still facing this issue. I've tried several times all of the solutions on a bunch of different videos. Nothing worked. Turns out my antivirus (Kaspersky) was blocking somehow all of the traffic from MS Apps, including the store.

Closing the antivirus everything went back to normal. Posting cause it may help someone.

acidfrehley
Автор

Seriously I can't believe this- after using solution 2 I can't even open the store at all! Do sth 'bout it

maddieserra
Автор

None of them seemed to work for me.
I used a destroy windows 10 spying app, and it destroyed windows store. I don't know if this is irreversable but I am trying to download some apps.

jaysgarage
Автор

Hello everyone.If you tried all that solutions and it still didn't solve the problem try this :
Start menu > settings > network > reset the network
That did the job for me! Microsoft Store works great again!

sakis
Автор

It keeps telling me access is denied when I try to run the ren softwaredistribution.old command, yes the cmd is open in administrator mode.

EKGraphics
Автор

Thank you very much! With your last tip I solved my problem! Thanks again!

DoNaSbaR
Автор

none of these worked for me unfortunately, and tried the "use TLS1.2" trick as well, still didnt work

griffboy
Автор

resetting proxy server setting to auto detect in Microsoft Edge worked for me. Had issues where internet connections were hit and miss.

tomzuby