w10install/tools/install-apps.cmd
2023-02-16 12:27:12 +01:00

15 lines
446 B
Batchfile

@echo off
set APPSFOLDER=apps\storeapps
set TOOLS=C:\tools
rem folder present ?
IF EXIST %TOOLS%\%APPSFOLDER% (
FOR %%F in (%TOOLS%\%APPSFOLDER%\*.appxbundle, %TOOLS%\%APPSFOLDER%\*.appx, %TOOLS%\%APPSFOLDER%\*.msixbundle) do (
echo processing ... [ %%F ]
dism /Online /Add-ProvisionedAppxPackage /PackagePath:"%%F" /SkipLicense
)
) else (
echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ...
)