2023-01-01 18:27:29 +01:00
|
|
|
@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% (
|
2023-02-16 12:27:12 +01:00
|
|
|
FOR %%F in (%TOOLS%\%APPSFOLDER%\*.appxbundle, %TOOLS%\%APPSFOLDER%\*.appx, %TOOLS%\%APPSFOLDER%\*.msixbundle) do (
|
2023-01-01 18:27:29 +01:00
|
|
|
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-01 18:27:29 +01:00
|
|
|
)
|
2023-01-02 10:10:15 +01:00
|
|
|
|