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

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

  1. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
    You mean Windows Spotlight?
    that's part of ContentDeliveryManager, and controlled by product policy
    cannot be changed
     
  2. crypticus

    crypticus MDL Senior Member

    Jun 29, 2015
    317
    142
    10
    #722 crypticus, Nov 22, 2018
    Last edited: Nov 22, 2018
    yes spotlight that shows images on lockscreen. can't we change contentdeliverymanager of ltsc with pro version to get it? cuz i can delete the contentdeliverymanager it is a component just like microsoft store and other apps. can u have a look at it?
     
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
    It's already the same package in all editions, but the config is controlled by license policies
    removing and adding won't change it

    Code:
    EnterpriseS
    ContentDeliveryManager-License-ContentDeliveryAllowed=0
    
    Education
    ContentDeliveryManager-License-ContentDeliveryAllowed=1
    
    Enterprise
    ContentDeliveryManager-License-ContentDeliveryAllowed=2
    
    Pro
    ContentDeliveryManager-License-ContentDeliveryAllowed=3
    
    Pro Workstation
    ContentDeliveryManager-License-ContentDeliveryAllowed=5
    
     
  4. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
    I installed MicrosoftStore-RS5.7z and it failed. How to completely remove everything so i can start over?
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
  6. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
  7. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
    #727 WinFree, Nov 25, 2018
    Last edited: Nov 25, 2018
    Anyone care to explain the link about the part of removing app packages and store app in details would be very appreciated.

    https://forums.mydigitallife.net/posts/1468779
     
  8. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
    Run Windows Powershell as administrator
    copy and paste these two commands one by one and paste
    Code:
    Get-AppXPackage | Foreach {Remove-AppxPackage $_.PackageFullName}
    Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online
    restart computer
     
  9. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
    Thanks. I installed MicrosoftStore-RS5.7z with all packages included. Does your 2 command remove both apps and Windows Store?
     
  10. adric

    adric MDL Expert

    Jul 30, 2009
    1,238
    1,297
    60
    Is there any way to clean out apps from the store library that I'm never going to use or apps that were tried, but found to be garbage? Restoring a previous image doesn't even help undoing entries in the library.
     
  11. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    752
    60
    If anyone cares to mount his install.wim, and add MSStore I wrote a batch file to do that with DISM. Translation to PS would be appreciated. I shortened names, and you will need to alter paths, but it should be very understandable.
    Code:
    Set STORE=Mods\Bin\Store\Microsoft.WindowsStore.AppxBundle
    Set Framework6X64=Mods\Bin\Store\Microsoft.NET.Native.Framework.1.7_x64.Appx
    Set Framework6X86=Mods\Bin\Store\Microsoft.NET.Native.Framework.1.7_x86.Appx
    Set Runtime6X64=Mods\Bin\Store\Microsoft.NET.Native.Runtime.1.7_x64.Appx
    Set Runtime6X86=Mods\Bin\Store\Microsoft.NET.Native.Runtime.1.7_x86.Appx
    Set VCLibsX64=Mods\Bin\Store\Microsoft.VCLibs_x64.Appx
    Set VCLibsX86=Mods\Bin\Store\Microsoft.VCLibs_x86.Appx
    Set PurchaseApp=Mods\Bin\Store\Microsoft.StorePurchaseApp.AppxBundle
    Set Appinstaller=Mods\Bin\Store\Microsoft.DesktopAppInstaller.AppxBundle
    Set XboxIdentity=Mods\Bin\Store\Microsoft.XboxIdentityProvider.AppxBundle
    
    DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%STORE% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /DependencyPackagePath:%FRAMEWORK6X64% /DependencyPackagePath:%FRAMEWORK6X86% /DependencyPackagePath:%RUNTIME6X64% /DependencyPackagePath:%RUNTIME6X86% /LicensePath:Mods\Bin\Store\Microsoft.WindowsStore.xml
    DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%APPINSTALLER% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /DependencyPackagePath:%FRAMEWORK6X64% /DependencyPackagePath:%FRAMEWORK6X86% /DependencyPackagePath:%RUNTIME6X64% /DependencyPackagePath:%RUNTIME6X86% /LicensePath:Mods\Bin\Store\Microsoft.StorePurchaseApp.xml
    DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%APPINSTALLER% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /DependencyPackagePath:%FRAMEWORK6X64% /DependencyPackagePath:%FRAMEWORK6X86% /DependencyPackagePath:%RUNTIME6X64% /DependencyPackagePath:%RUNTIME6X86% /LicensePath:Mods\Bin\Store\Microsoft.DesktopAppInstaller.xml
    DISM /Image:%MOUNT% /Add-ProvisionedAppxPackage /PackagePath:%XBOXIDENTITY% /DependencyPackagePath:%VCLIBSX64% /DependencyPackagePath:%VCLIBSX86% /LicensePath:Mods\Bin\Store\Microsoft.XboxIdentityProvider.xml
    
    Set STORE=
    Set Framework6X64=
    Set Framework6X86=
    Set Runtime6X64=
    Set Runtime6X86=
    Set VCLibsX64=
    Set VCLibsX86=
    Set PurchaseApp=
    Set Appinstaller=
    Set XboxIdentity=
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. phamtrungh

    phamtrungh MDL Novice

    Jul 29, 2011
    24
    1
    0
    Where can I download latest StorePurchaseApp appx file? Latest version is "Microsoft.StorePurchaseApp_11810.1001.10.0_x64__8wekyb3d8bbwe" and "Microsoft.StorePurchaseApp_11810.1001.1013.0_neutral_~_8wekyb3d8bbwe" but in Store and on store.rg-adguard.net (FamilyPackageName: Microsoft.StorePurchaseApp_8wekyb3d8bbwe) does not found :(
     
  13. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
    Use CategoryID 214308d7-4262-449d-a78d-9a2306144b11
     
  14. phamtrungh

    phamtrungh MDL Novice

    Jul 29, 2011
    24
    1
    0
    Great news. Thank u bro for the quick reply!

    Your instruction is detailed, and it works perfectly.
    But I tried another way, uninstall all Universal apps, and sideload all necessary files by writing ps1 script, just Add-AppxPackage commands.
    It actually works, no use your cmd commands. Try to download apps and run, ok for now. Beside DesktopAppInstaller 1.0.20921.0 doesn't make crash like you said.

    Is it ok for the long run, will I meet any issues? I'm really appreciated!
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
    Whatever work is good :)

    just Add-AppxPackage install the app for current user only
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,110
    84,114
    340
  17. phamtrungh

    phamtrungh MDL Novice

    Jul 29, 2011
    24
    1
    0
    #739 phamtrungh, Nov 30, 2018
    Last edited: Nov 30, 2018
    Sorry, I mean App Installer. I just need CategoryID for App Installer and Xbox Identity Provider (for complete updated Store). I'll use DISM iso image offline.

    And those dependencies like Microsoft.WinJS and
    Microsoft.Media.PlayReadyClient are needed to install old win8.1 app in windows 10? I'm collecting all dependencies to install at once.
     
  18. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    752
    60
    That would be so awesome!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...