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 +