w10install/tools/install-apps.cmd

15 lines
446 B
Batchfile
Raw Permalink Normal View History

@echo off
set APPSFOLDER=apps\storeapps
set TOOLS=C:\tools
rem folder present ?
2023-01-01 19:42:32 +01:00
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 (
2023-01-02 10:10:15 +01:00
echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ...
)
2023-01-02 10:10:15 +01:00