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

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

  1. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
  2. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    And one thing is that camera works from winget or store only if I install your normal add store LTSC 2021 script not lite or dynamic version. I tested on another machine.
     
  3. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,326
    2,507
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
  5. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,326
    2,507
    120
    Wsreset -i minimal install

    Not work for windows 11 iot ltsc or ltsc 2024 ( work fines on windows 10 iot ltsc 2021.. )
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    How can I download latest store apps licence XML files ?
     
  7. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
  8. migascalp

    migascalp MDL Senior Member

    Sep 18, 2009
    438
    740
    10
    Yes, never had any problems with my use.
     
  9. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
  10. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    now I tried with Xbox identity which displayed in error code (
    The package can only be installed
    on the following device families: Windows.Xbox.Family)
    on my previous ltsc install but not today (
    The package can only be installed
    on the following device families: Windows.Team).
     

    Attached Files:

  11. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,188
    90,645
    340
    Use msixbundle not Emsixbundle
     
  12. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    Worked like magic. Thank you so much.
     
  13. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    For dependenciespackagepath in ps command do I have to mention x86 versions too besides x64 ? Because there too many for one app.
     
  14. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,188
    90,645
    340
    For Windows 11, not needed

    for Wndows 10, it vary
    at least add x86 for VCLibs
     
  15. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    Sir I found this quickest way on learn microsoft.com Add-AppxProvisionedPackage -Online -FolderPath "c:\Appx". According to the webpage - This command adds the app package, dependency packages, and license file from the c:\Appx folder to the running Windows operating system. The package will be installed for the current user and any new user account created on the computer. Is this right?
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,188
    90,645
    340
    I never added a folder
    you can try
     
  17. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    It didn't work. Gives some stupid errors I forgot. Anyway leave it. I did it traditional way like "add-appxprovisionedpackage -0nline -packagepath -dependencypackagepath -licensepath". I included all 8 dependencies But gives error - Cannot bind parameter because parameter 'x' is specified more than once. To provide multiple values to parameters that can accept multiple values, use the array syntax. For example, "-parameter value1,value2,value3". What is the correct command to add multiple dependencies?
     
  18. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,188
    90,645
    340
    Start command prompt as administrator (not Windows Terminal), and run:
    Code:
    cd "C:\Appx"
    
    set "psc=PowerShell -nop -ep Bypass"
    
    set "pkg=Microsoft.WindowsCamera_2022.2408.1.0_neutral_~_8wekyb3d8bbwe.msixbundle"
    set "dep=Microsoft.VCLibs.140.00_14.0.33519.0_x64__8wekyb3d8bbwe.appx,Microsoft.VCLibs.140.00_14.0.33519.0_x86__8wekyb3d8bbwe.appx,Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64__8wekyb3d8bbwe.appx,Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx,Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx"
    
    %psc% Add-AppxProvisionedPackage -Online -PackagePath %pkg% -DependencyPackagePath %dep% -LicensePath Microsoft.WindowsCamera_8wekyb3d8bbwe.xml -Regions All
    
    for %i in (%dep%) do (%psc% Add-AppxPackage -Path %i -ForceApplicationShutdown)
    
    %psc% Add-AppxPackage -Path %pkg%
    
     
  19. Rocky420

    Rocky420 MDL Novice

    Dec 13, 2009
    39
    2
    0
    Done. I wasted time on stupid microsoft documentation should have asked you first. Earlier when you said to use msixbundle then it was fine with add-appxpackge (current user) but this provision thing was real pain. Many thanks again for saving my time.