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

Поделиться
HTML-код
  • Опубликовано: 27 июн 2024
  • 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:
    Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}
    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
    }
  • НаукаНаука

Комментарии • 537

  • @maraileres9302
    @maraileres9302 4 года назад +352

    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?

    • @kennethgilderubio9140
      @kennethgilderubio9140 4 года назад +15

      You saved me a lot of trouble thanks for that. I just fixed the region and now its working.

    • @cartman7932
      @cartman7932 4 года назад +11

      Wow I tried ALL OF THEM then checked comments! This worked!!!

    • @luzfalu4933
      @luzfalu4933 4 года назад +8

      wow!! i don't know how long I've been looking. thank you!!!

    • @liridonselmani4830
      @liridonselmani4830 4 года назад +3

      Thank you kind Stranger

    • @Lapkappa
      @Lapkappa 4 года назад +3

      Wow Thanks, You made my life!
      Now I will get WINDOWS MIXED REALITY! :D
      THANK YOU SO MUCH
      btw here's your like XD

  • @kencalrod4847
    @kencalrod4847 4 года назад +2

    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 back!!!!! Thank you

  • @GrubbJunker
    @GrubbJunker 5 лет назад +2

    Thank you very much. The Powershell command worked.

  • @DoNaSbaR
    @DoNaSbaR 5 лет назад +10

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

    • @TechFixIT
      @TechFixIT  5 лет назад +1

      Nice, I'm glad you were able to fix your PC 👍

    • @MineAge
      @MineAge 4 года назад

      @@TechFixIT how about if microsoft store was 117kb? I see you 2:41 you was 2mb+

    • @MineAge
      @MineAge 4 года назад

      @@TechFixIT i think someone mess with system

  • @aa-qe1ne
    @aa-qe1ne 3 года назад +4

    The last solution worked for me Thank you!

  • @raiderken44tt
    @raiderken44tt 4 года назад +2

    Thank you so much! The 3rd one worked for me.

    • @TechFixIT
      @TechFixIT  4 года назад

      I'm glad that it worked for you 👍

  • @digigarb
    @digigarb 5 лет назад +6

    Thanks so much! First 2 steps worked for me!

    • @TechFixIT
      @TechFixIT  5 лет назад +1

      Good to know😄👍

  • @remyrat3992
    @remyrat3992 2 года назад +3

    It worked! Thanks! You earned a sub!

  • @abhinavdubal201
    @abhinavdubal201 2 года назад

    After hours of searching for something that would help this video saved me it also fixed my spotify offline mode problem thanks.

  • @levibazen608
    @levibazen608 4 года назад +4

    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

  • @gabrielsenna5616
    @gabrielsenna5616 4 года назад +11

    Thanks dude, the last one worked for me, been having this problem for some days now and this video really helped me. Have your like!

  • @alvyahammed3047
    @alvyahammed3047 3 года назад +1

    The PowerShell-Admin Command worked bro Thanks!!

  • @adityakotnala4529
    @adityakotnala4529 2 года назад +1

    thanx bro your 1 trick was very helpful

  • @user-bt4wi2io8n
    @user-bt4wi2io8n 3 года назад

    Option 1 worked for me tysm u deserve a like Mr

  • @sinobi4526
    @sinobi4526 Год назад +1

    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 C:\Windows\SoftwareDistribution 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.

  • @matthewrice33
    @matthewrice33 2 года назад

    Thank you so much this fixed my problem

  • @korn1094
    @korn1094 4 года назад +5

    what an absolute life saver....just another tool to use when working on comps......thank 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!

    • @TechFixIT
      @TechFixIT  4 года назад

      You're welcome I'm glad you were able to fix your store de 👍

    • @cassius4186
      @cassius4186 2 года назад

      nope it didn't

  • @wypoor
    @wypoor 3 года назад +2

    Done by second solution. Thank you!

  • @EnAhkami
    @EnAhkami 4 года назад +2

    last solution was excellent! worked for me tnx!

    • @TechFixIT
      @TechFixIT  4 года назад

      Good to hear 😀👍

  • @adamkozlowski2076
    @adamkozlowski2076 2 года назад

    Thanks muchly ! Resolved with the 1 code.

  • @EKGraphics767
    @EKGraphics767 4 года назад +5

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

  • @adiyenedits4990
    @adiyenedits4990 2 года назад

    All these things not worked so I Updated my windows and cleared this issue😎🙌

  • @heuuuh
    @heuuuh 5 лет назад +2

    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.

  • @stellastef9302
    @stellastef9302 3 года назад +2

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

    • @michaeldevargas8295
      @michaeldevargas8295 3 года назад +1

      I appreciate this comment more than anything I’ve looked at the past 3 days

  • @thefourthrealm79
    @thefourthrealm79 3 года назад

    Thanks ! method #2 did it for me

  • @jlocana1
    @jlocana1 3 года назад +1

    thanks so MUCH mara i was all day trying yo fix it

  • @sakis276
    @sakis276 3 года назад +3

    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!

  • @satyajaiswal3463
    @satyajaiswal3463 Год назад +2

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

  • @drzeworyj
    @drzeworyj 4 года назад +4

    try fixing/toggling your time and region settings, it was really simple and it helped me!

    • @TechFixIT
      @TechFixIT  4 года назад +2

      Good tip, thank you 👍

    • @MyGoofyman
      @MyGoofyman 4 года назад +5

      @@TechFixIT nothing working for me, plis help my, Im start turn me crazy

    • @silentviper4717
      @silentviper4717 4 года назад

      Thx worked for me

    • @wqyzrr2490
      @wqyzrr2490 2 года назад

      @@MyGoofyman what version of windows you use?

  • @salvadorianlivinginusa6660
    @salvadorianlivinginusa6660 Год назад +1

    Muchas gracias por la ayuda amigo me funciono ❤️❤️❤️❤️❤️

  • @acidfrehley
    @acidfrehley Год назад +1

    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.

    • @MugzD
      @MugzD Год назад +1

      omg thanks you for posting this!! Cuz ive tried everything and nothing worked..and when i saw that we had same anti-virus..this comment fixed my issues..thank you!

  • @lieutenantbean9853
    @lieutenantbean9853 4 года назад +1

    thank god the last one worked I was so worried thank you

  • @mister-Kayne
    @mister-Kayne 3 года назад +2

    I was good until I went into doing the instructions on windows powershell. I am a screen reader user, in the start menu when I got the result for powershell I used the ALT key to get the sub menu options and hit enter on run as administrator after which I have no idea what happened I think it opened a bing document which according to me is using Microsoft Edge. Will investigate further and revert. Thank you for the step by step instructions by voice. I am print disabled and instructions like yours really help me get out of sticky situations on my computer

  • @brunamizumoto6285
    @brunamizumoto6285 4 года назад +1

    Fantastic! It worked! Thanks!

    • @TechFixIT
      @TechFixIT  4 года назад

      Good to hear 😁👍

  • @theanimeplay
    @theanimeplay 2 года назад

    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?

  • @nanibug6452
    @nanibug6452 5 лет назад +2

    the 3rd one better but not seems good if u have much info

  • @onezaalvi9866
    @onezaalvi9866 Год назад

    Watched tons of vid. But this one helped!

  • @infinitysagaart2867
    @infinitysagaart2867 2 года назад +3

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

  • @c0d214
    @c0d214 4 года назад +3

    Thank you so much! The 3rd one worked for me :)

  • @tomzuby1860
    @tomzuby1860 5 лет назад +3

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

    • @TechFixIT
      @TechFixIT  5 лет назад

      I'm glad you were able to fix your problem👍

    • @bachmagiao
      @bachmagiao 3 года назад

      You are great, finally it worked

  • @senrigan144
    @senrigan144 2 года назад

    Thanks, it's WORKED for me

  • @Oversurge_
    @Oversurge_ 4 года назад

    i got access denied on closing catroot2 any help?
    i know my problm is that i accidently deleted user folder when i was super drunk and needed space. because i had 2 users

  • @sharankumar3664
    @sharankumar3664 2 года назад

    The powershell solution worked for me!!!

  • @navinprakash7353
    @navinprakash7353 Год назад

    The 3 step works thank you!!

  • @edenpuna9302
    @edenpuna9302 2 года назад

    Thankyou so much , biggest help thankyou, thankyou, thankyou !

  • @torchlord11
    @torchlord11 4 года назад

    My "net stop Msiserver" said it wasn't started, then
    the next step "Ren C:\windows\softwaredistribution softwaredistribution.old says "Access denied"....
    Even though cryptsvc was successfully stoped early it some how had already been started when I typed "net start cryptsvc".
    The use Tsl 1.2 didn't work.
    Microsoft Edge proxy was already set to auto detect. Didn't help me.

  • @playmoment7547
    @playmoment7547 2 года назад

    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

  • @TheOtagam
    @TheOtagam 4 года назад

    Thank you
    This video fix my problem

  • @ahsanhabib289
    @ahsanhabib289 3 года назад

    Thank you so much bro.u r a legend

  • @shahidullahkhan6485
    @shahidullahkhan6485 5 лет назад +5

    Nothing happened

  • @SouSporting
    @SouSporting 4 года назад

    tried all 3 methods and it didn't work, i tried the advanced options on IE and still not working... As far as i know i don't have any other issues, its really just the MS store.

  • @arjaymckenzie6964
    @arjaymckenzie6964 4 года назад +1

    My fix: Windows 10. I had to go to Settings>Accounts>Family & Other Users. I noticed next to one of the accounts it said 'Can't Sign In'. I clicked on the account and clicked Allow and now everything works fine.

    • @keithc
      @keithc 4 года назад +1

      This worked for me. Thank you! 👍

  • @kirbo404
    @kirbo404 Год назад

    I don't know if you will see this but i tried all of the techniques in the video and none worked, what else do I do?

  • @rafaelcomar7929
    @rafaelcomar7929 4 года назад

    Works perfectly

  • @griffboy
    @griffboy 4 года назад +9

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

  • @65infanteria
    @65infanteria 2 года назад

    on step#4 when typing the softwaredistribution line I get the message "access denied"

  • @viralvideoph1209
    @viralvideoph1209 7 месяцев назад

    Its working now first try in 2023❤

  • @Unclelovesuwu
    @Unclelovesuwu 4 года назад +3

    the first solution worked for me! tysm mate :'D

    • @TechFixIT
      @TechFixIT  4 года назад

      You're very welcome!👍

  • @URUQ7
    @URUQ7 3 года назад

    THX last one worked for me :)

  • @m.likopuha5436
    @m.likopuha5436 4 года назад

    Thank you very much! Option #2 worked for me.

  • @andahalom1639
    @andahalom1639 2 года назад +2

    This video just saved my life right now...Thank You very much!

  • @loictruyen4532
    @loictruyen4532 Год назад +2

    The second solution somehow made it worse :(

    • @loictruyen4532
      @loictruyen4532 Год назад +1

      It's like the Microsoft store is just gone now

  • @DotorGac
    @DotorGac 3 года назад +1

    BTW, checking TLS 1.2 in Internet Options -> Advanced did it for me, which is not on this video but in the comments section!

    • @skyaj5145
      @skyaj5145 3 года назад

      So I need to make shure its on

    • @lbYi
      @lbYi 3 года назад

      Thanks a bunch! You saved me!

    • @Nozh72
      @Nozh72 2 года назад

      THANK YOU! Only this option worked for me!

  • @ReefnutAdventures
    @ReefnutAdventures 4 года назад +1

    Solution #3 worked! Thank you!!

    • @TechFixIT
      @TechFixIT  4 года назад

      Glad I could help 👍

  • @ShahidKhan-gd8oh
    @ShahidKhan-gd8oh 2 года назад

    SOLUTION#4, At the end...an error appeared as the term "wuauclt.exe" is not recognized, try again. WTH. Nothing worked for me. Plzzzz assist...

  • @alnoneatall
    @alnoneatall 2 года назад

    when i paste this "Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}" i lost my ms store..how i can get back

  • @iswandyfxatan6845
    @iswandyfxatan6845 2 года назад

    Bro i use the second method but suddenly my keyboard got problem its cannot typing what happen?

  • @marcoantoniomuzulflores6391
    @marcoantoniomuzulflores6391 Год назад

    I solved it in a different way, there reason I was having that error was because my windows store was outdated, so in the right corner i chose an option that said library, i clicked it and i searched for windows store and after that it was solved

  • @saranya2351
    @saranya2351 3 года назад +1

    First solution work for me tq

  • @BlockyToo
    @BlockyToo 2 года назад +1

    can someone tell me how to undo the thing in solution 2 it broke my windows store

  • @sunsetsunrise4934
    @sunsetsunrise4934 2 года назад

    So I've been having this error code and i just realized i have the gamefirst V installed and I had some options on block like others and users defined. I unblocked them and bam my windows store worked again... silly mistake.

  • @crackerjack7064
    @crackerjack7064 4 года назад +7

    None of these worked... pls help.i need to instantly a single freaking app. The one time I want to install something the stupid thing doesnt work and I needed to install it by tonight.

    • @MCDComputer
      @MCDComputer 4 года назад +1

      another tip worked for me: ie -> internet options -> advance -> tick "use TLS1.2"

    • @jmwang42
      @jmwang42 4 года назад

      @@MCDComputer Thanks so much! After I tired other 10+ ways this one worked!

  • @surjomama
    @surjomama Год назад

    Thank You Man it's worked

  • @nuevorey9419
    @nuevorey9419 2 года назад

    3rd time on ur chnnl. lets see , i did all steps & restarted it .
    but store didnt opened. now after 12 am i am gonna connect my
    window10 10240 version to update.
    lets see that gonna work or not.
    until then see ayaa

  • @maddieserra
    @maddieserra 3 года назад +1

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

  • @noonereally0007
    @noonereally0007 4 года назад +6

    All of them didnt work, may it be cs i added some vpn apps ?

  • @yogeshpatil9642
    @yogeshpatil9642 3 года назад

    Did all as per ur suggestions but still showing same error code

  • @cdrcrash468
    @cdrcrash468 4 года назад

    The First one doesn't even reset the store for me sadly, and everytime I do the powershell option it says Access denied

    • @ICReaT1VI
      @ICReaT1VI 4 года назад

      use powershell as admin(right click on powershell)

  • @pebeqhdproductions8079
    @pebeqhdproductions8079 2 года назад

    How long takes step 3?

  • @joaorodrigues8721
    @joaorodrigues8721 2 года назад

    Thank u so much it works :D

  • @stephanboxall4541
    @stephanboxall4541 2 года назад

    So good; simple, nice accent and great font.

  • @duogalangpandu
    @duogalangpandu 5 месяцев назад

    hey,i try to use you 1st stios but why why Microsoft store is eror,wont even open

  • @xxx_darkvolt1539
    @xxx_darkvolt1539 3 года назад

    It didn’t work for me my type bar won’t let me type in it to find things

  • @dithkh7269
    @dithkh7269 4 года назад

    Thanks you so much 🥰

    • @TechFixIT
      @TechFixIT  4 года назад

      You’re welcome 😊

  • @alexandros.s7169
    @alexandros.s7169 4 года назад +1

    I solved the problem when I went to internet options from control panel clicked advanced and then I clicked reset advanced settings

  • @thatmessedupguy8789
    @thatmessedupguy8789 Год назад

    THX SO MUCH

  • @josef.medinarobles358
    @josef.medinarobles358 5 лет назад

    when I type "net stop msiserver" it throws a message that says "The Windows Installer service is not started"

    • @TechFixIT
      @TechFixIT  5 лет назад

      Keep typing the commands, the following ones will attempt to reactivate it.

  • @Ak_vlogs414
    @Ak_vlogs414 10 месяцев назад

    Thanks

  • @LobsterWave
    @LobsterWave Год назад +1

    didn’t repaired :/

  • @nikolinacalasan2095
    @nikolinacalasan2095 4 года назад

    Please, help. First two solution don't work for me. I am now on 3rd option. But when I write comand NET STOP BITS, it says: the Background intelligent Transfer Service service is not started
    What to do now?

    • @TechFixIT
      @TechFixIT  4 года назад

      Then continue with the commands 👍

  • @dashgamingx
    @dashgamingx 5 лет назад +4

    no solution for me, neither in the coments... :/

  • @medlmn363
    @medlmn363 3 года назад +1

    non of this will work the only reason microsoft store is not working is because your reagion is not supported try changing it in you settings

  • @jiezhangjzmobee8102
    @jiezhangjzmobee8102 5 лет назад

    When I enter the "softwaredistribution" and "catroot2" lines, my access was denied. Please advice. I did run at Admin.

    • @xmimicx21
      @xmimicx21 5 лет назад

      I am having this same issue were you able to get it resolved? so far I have tried all solutions but none have worked.

    • @jiezhangjzmobee8102
      @jiezhangjzmobee8102 5 лет назад

      ​@@xmimicx21 I tried everything I could find on RUclips and one of them did the trick. Good luck!

    • @drzeworyj
      @drzeworyj 4 года назад

      @@xmimicx21 you need to change security settings in this particular folder so 'users' can have full control too

  • @elischupbach5162
    @elischupbach5162 4 года назад +3

    #2 Actually worked. My MS store was really messed up.

    • @elischupbach5162
      @elischupbach5162 4 года назад +2

      Nevermind. It doesn't work- fixes logging into MS store but once you search for an app or try to click on a featured it spins.

    • @shaidreemurr5716
      @shaidreemurr5716 3 года назад +1

      y'know if ur having trouble with the MS store bug don't set it up as puerto rico lol

  • @Tinnace
    @Tinnace 3 года назад

    None of these work pls help im just tryba install nvidia control center

  • @jenny321m
    @jenny321m 4 года назад

    For the people for whom these tips didn’t help. You have to search for problems in the control panel and in my case it was my proxy which cause these problems

  • @bernapatch
    @bernapatch 4 года назад +1

    Nothing worked for me in hours. But the solution i found after 3 hours was the access to microsoft. The fu***** dns was wrong. Just set your ip and dns to 8 8 8 8 / 8 8 4 4

  • @ke2za
    @ke2za 5 лет назад

    i still can't copen it and i can't even go into microsoft webistes

  • @Mostafa.protin
    @Mostafa.protin 10 месяцев назад

    1:33 made microsoft store at mine even worse!

  • @mehryv8254
    @mehryv8254 Год назад

    Hi !I tried the solution 2 but my ms store name change into something, and everytime I open it , there was a error pooping up, please help how to fix it, cause my ms store cant open anymore