[GUIDE] Add Store to Windows 10 EnterpriseS SKU (LTSB/LTSC)

Discussion in 'Windows 10' started by Tito, Aug 9, 2016.

  1. rjbprime

    rjbprime MDL Novice

    Jul 27, 2014
    3
    0
    0
    #681 rjbprime, Oct 17, 2018
    Last edited: Oct 17, 2018
    @abbodi1406 : I have a question regarding your October 7th 2018 script. I installed 1809 LTSC EN-US to my laptop, used KMS_VL_ALL to activate. Installed drivers for my laptop, then changed the DNS to 1.1.1.1/1.0.0.1, as I don't like my ISP DNS, then installed the Oct 7th script to install MS Store. There were no errors when installing.

    Rebooted, started the store, and it says MS Store needs to be online, looks like its not, with error 0x80072EFD. Used the powershell command in the very first post of the this thread, rebooted, same error. Tried WSReset, same error.

    I am online, as I'm posting from said laptop, so I am unsure on how to proceed.

    Please help.
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    I don't know, the error seem random
     
  3. rjbprime

    rjbprime MDL Novice

    Jul 27, 2014
    3
    0
    0
    How would I go about removing the store related files, and starting again, without reformatting? Apart from the store, I have it set up how I would like, and would hate to start from scratch.
     
  4. Hijacks

    Hijacks MDL Novice

    Apr 14, 2017
    2
    0
    0
    #684 Hijacks, Oct 17, 2018
    Last edited: Oct 19, 2018
    Please don't hit me (and not ask why i use LTSC Version then) but i'm only interested if it is possible to get Cortana working on LTSC release and how.
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    Run powershell as admin:
    Code:
    Get-AppXPackage -Name "*WindowsStore*" | Foreach {Remove-AppxPackage $_.PackageFullName}
    Get-AppxProvisionedPackage -Online | Where DisplayName -eq Microsoft.WindowsStore | Remove-AppxProvisionedPackage -Online
    
     
  6. HansR

    HansR MDL Novice

    Oct 22, 2009
    1
    0
    0
    I have no problems getting MicrosoftStore-RS5.7z to work on LTSC 2019, but on LTSC N 2019 the store opens and closes promptly. Same computer, and tried several times a clean install.
    Could it be the license xml's are targeted at LTSC 2019 and not at the N edition? (Just as the N version has its own product key)
     
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    No, Appx licenses are universal

    it could be related to missing media foundation components in N editions
     
  8. free1975yuly

    free1975yuly MDL Expert

    Aug 24, 2011
    1,830
    160
    60
    The same here: Installs but when I want to open it always crashes.
     
  9. Hijacks

    Hijacks MDL Novice

    Apr 14, 2017
    2
    0
    0
    I want to deploy windows ltsb with store and some apps like camera and photos with this Script (neowin.net/forum/topic/1317186-store-apps-on-ltsb-now-possible-the-best-of-both-worlds/)
    It works but the Apps only appaer at Start on Administrator account and not for e.g. a Test User.
    I got it worked for one time and the apps where visible at Startmenu on the Test account i created after running this script and installed the apps. But the second time i can't get it to work.
    Can somebody help me how I can install the Apps for all Users.(available for new created Users)
     
  10. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    Did you try the packages linked in first post?
     
  11. laoperz

    laoperz MDL Novice

    May 29, 2017
    1
    0
    0
    #691 laoperz, Oct 22, 2018
    Last edited: Oct 22, 2018
    is there a way to fix this?

    i installed the store & the xbox app now, but i get error 0x409 0x80131519 when i open te xbox app, cant sign in. googled info about it but all the solutions didnt work for me. followed info on page 25: uninstall everything and re-install everything but xboxidentityprovider and use a different version (install Microsoft.XboxIdentityProvider_2017.523.613.0_neutral_~_8wekyb3d8bbwe from page25) now the error changed to 0x409 0x80070002

    im out of ideas.
     
  12. H1uman

    H1uman MDL Novice

    Dec 28, 2017
    13
    3
    0
    hey.. so i downloaded the MicrosoftStore-RS5 archive, and the store got installed and opened successfully, but it shows no taskbar icon, and when i try to install an app it gives me an error, "we'll try shortly" how to fix that??
     
  13. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
  14. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    Right-click and run Add-Store.cmd as administrator

    if you previously had failure installation or other methods, clean all Apps
    run in admin powershell
    Code:
    Get-AppxPackage | Remove-AppxPackage
    Get-AppxProvisionedPackage -Online | Foreach {Remove-AppxProvisionedPackage -PackageName "$($_.PackageName)" -Online}
    reboot then try Add-Store.cmd again
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    You only need step 1, then right-click on Add-Store.cmd and 'Run as administrator '
     
  16. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
    Do i need the App Installer? What does it do? Can it be added later after adding Windows Store?
     
  17. zoezh

    zoezh MDL Novice

    Oct 30, 2018
    1
    0
    0
    if that the solution for adding the missing store.. so how about to remove it back?
     
  18. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,736
    340
    All apps
    Code:
    Get-AppXPackage | Foreach {Remove-AppxPackage $_.PackageFullName}
    Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online
    Specific
    Code:
    Get-AppXPackage -Name "*WindowsStore*" | Foreach {Remove-AppxPackage $_.PackageFullName}
    Get-AppxProvisionedPackage -Online | Where DisplayName -eq Microsoft.WindowsStore | Remove-AppxProvisionedPackage -Online
    execute in powershell as administrator