w10install/tools/install-apps.cmd
Michael H.G. Schmidt 28dd2d31c3 bugfixing
2023-01-02 10:10:15 +01:00

23 lines
537 B
Batchfile

@echo off
set APPSFOLDER=apps\storeapps
set TOOLS=C:\tools
IF %1.==. GOTO USAGE
rem folder present ?
IF EXIST %TOOLS%\%APPSFOLDER% (
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 (
echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ...
)
GOTO END
:USAGE
echo "usage: %0 <Appname>"
:END