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.
Latest full store package more up to date.... https://forums.mydigitallife.net/th...ises-sku-ltsb-ltsc.70741/page-63#post-1837890
Thank you. Will try later. And can you tell if wsreset -i works the same way like these script , I mean all dependencies install automatically?
Wsreset -i minimal install Not work for windows 11 iot ltsc or ltsc 2024 ( work fines on windows 10 iot ltsc 2021.. )
You can find in 22H2 iso. https://forums.mydigitallife.net/th...-without-adding-the-store.84860/#post-1719128
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).
For dependenciespackagepath in ps command do I have to mention x86 versions too besides x64 ? Because there too many for one app.
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?
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?
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%
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.