Create some scripts to manage Apps... #75

This commit is contained in:
Michael H.G. Schmidt 2023-01-01 18:27:29 +01:00
parent e94a496991
commit bfe18fd9d1

21
tools/install-apps.cmd Normal file
View File

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