w10install/tools/install-apps.cmd

23 lines
537 B
Batchfile
Raw Normal View History

@echo off
set APPSFOLDER=apps\storeapps
set TOOLS=C:\tools
IF %1.==. GOTO USAGE
rem folder present ?
2023-01-01 19:42:32 +01:00
IF EXIST %TOOLS%\%APPSFOLDER% (
2023-01-02 10:10:15 +01:00
FOR %%F in (%TOOLS%\%APPSFOLDER%\*%1*.appxbundle, %TOOLS%\%APPSFOLDER%\*%1*.appx, %TOOLS%\%APPSFOLDER%\*%1*.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 ...
)
GOTO END
:USAGE
echo "usage: %0 <Appname>"
:END
2023-01-02 10:10:15 +01:00