From 28dd2d31c32534755b97c90064b4bbc1762b86cf Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Mon, 2 Jan 2023 10:10:15 +0100 Subject: [PATCH] bugfixing --- apps/.gitignore | 2 ++ apps/download-apps-from-source.cmd | 1 + tools/install-apps.cmd | 5 +++-- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 apps/.gitignore diff --git a/apps/.gitignore b/apps/.gitignore new file mode 100644 index 0000000..305f53d --- /dev/null +++ b/apps/.gitignore @@ -0,0 +1,2 @@ +storeapps/* + diff --git a/apps/download-apps-from-source.cmd b/apps/download-apps-from-source.cmd index 70d1acb..4240326 100644 --- a/apps/download-apps-from-source.cmd +++ b/apps/download-apps-from-source.cmd @@ -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 diff --git a/tools/install-apps.cmd b/tools/install-apps.cmd index be83515..ebe50e9 100644 --- a/tools/install-apps.cmd +++ b/tools/install-apps.cmd @@ -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 " :END +