WIN 10 LTSC 1809 Win Store script

Discussion in 'Windows 10' started by Bakul, Dec 20, 2018.

  1. Bakul

    Bakul MDL Novice

    Feb 9, 2018
    6
    1
    0
    I've downloaded the script and ran it as Admin.
    What are the next steps? I don't see the store icon on status bar..
    Any other settings I need to change to access the store?
    Any help appreciated..
     
  2. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,247
    94,633
    450
  3. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    #3 GodHand, Dec 20, 2018
    Last edited: Dec 20, 2018
    The Store should be in your Start Menu immediately after side-loading it. Likewise, if you click on the Immersive Control Panel > All Settings > Apps, it should show Microsoft Store in the list.

    Additionally, you can use PowerShell to check if it's staged or not (it shouldn't be). Use the following:

    Code:
    Get-AppxPackage -Name Microsoft.WindowsStore | Select-Object -ExpandProperty IsPartiallyStaged
    The return value of "False" should return. If "True" is returned, then you need to register the application:

    Code:
    Get-AppxPackage -AllUsers "Microsoft.DesktopAppInstaller" | ForEach-Object -Process { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" }
    
    Get-AppxPackage -AllUsers "Microsoft.WindowsStore" | ForEach-Object -Process { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" }
    
    If these still do not present you with the Windows Store, then an error occurred when it was side-loaded.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Bakul

    Bakul MDL Novice

    Feb 9, 2018
    6
    1
    0
    Thank you so much for your reply.
    I tried to check if it is staged or not using your provided code. It just returns the prompt and no values (True or False). Am I doing something wrong?
    I have to do this while logged into MS account or local account works?
     
  5. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Bakul

    Bakul MDL Novice

    Feb 9, 2018
    6
    1
    0
    It just shows same line second time as the prompt before..
     
  7. Bakul

    Bakul MDL Novice

    Feb 9, 2018
    6
    1
    0
    I'm not able to insert the screen grab here for some reason though I have it on my desktop..
     
  8. Bakul

    Bakul MDL Novice

    Feb 9, 2018
    6
    1
    0
    EDIT:

    I tried installing second time and it is now working!
    |Thanks for your time and advice..
     
  9. Bakul

    Bakul MDL Novice

    Feb 9, 2018
    6
    1
    0
    Confirmed!
    I now have Windows Store up and running..
     
  10. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    Glad you got it working!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...