Create some scripts to manage Apps... #75
This commit is contained in:
parent
e94a496991
commit
bfe18fd9d1
21
tools/install-apps.cmd
Normal file
21
tools/install-apps.cmd
Normal 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
|
Loading…
Reference in New Issue
Block a user