bugfixing

This commit is contained in:
Michael H.G. Schmidt 2023-01-02 10:10:15 +01:00
parent 382132d9a6
commit 28dd2d31c3
3 changed files with 6 additions and 2 deletions

2
apps/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
storeapps/*

View File

@ -26,4 +26,5 @@ del /F /Q %APPSFOLDER%\*.BlockMap
del /F /Q %APPSFOLDER%\*x86*
del /F /Q %APPSFOLDER%\*arm*
del /F /Q %APPSFOLDER%\*.eappxbundle
del /F /Q %APPSFOLDER%\*.emsixbundle

View File

@ -6,12 +6,12 @@ IF %1.==. GOTO USAGE
rem folder present ?
IF EXIST %TOOLS%\%APPSFOLDER% (
FOR %%F in (%TOOLS%\%APPSFOLDER%\*%1*.appxbundle, %TOOLS%\%APPSFOLDER%\*%1*.appx) do (
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: [ %APPSFOLDER% ] does not exist, cannot install ...
echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ...
)
GOTO END
@ -19,3 +19,4 @@ GOTO END
echo "usage: %0 <Appname>"
:END