This commit is contained in:
Michael H.G. Schmidt 2023-01-01 18:04:13 +01:00
parent dd1817170a
commit e94a496991
3 changed files with 29 additions and 2 deletions

View File

@ -39,6 +39,28 @@ echo.
rem go back ... rem go back ...
cd .. cd ..
rem check for apps directory ...
if NOT EXIST apps (
echo ERROR: directory [ apps ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd apps
)
echo ================================================
echo START download of APPS from SOURCE sites ...
echo ================================================
date /t
time /t
echo.
call download-apps-from-source.cmd
echo.
rem go back ...
cd ..
echo. echo.
date /t date /t
time /t time /t

View File

@ -139,7 +139,7 @@ if EXIST software (
/XF *.iso /XF *.txt /XF *.cmd /XF *.csv /XF .gitignore /XD .git /XF *.iso /XF *.txt /XF *.cmd /XF *.csv /XF .gitignore /XD .git
) )
for %%P in (drivers scripts source optional personal company) do ( for %%P in (drivers scripts source optional personal company apps) do (
if EXIST %%P ( if EXIST %%P (
echo. echo.
echo copying folder [ %%P ] to %USBDRIVE%\tools ... echo copying folder [ %%P ] to %USBDRIVE%\tools ...

View File

@ -17,8 +17,13 @@ rem ###################################
FOR /F "tokens=1" %%E in (%LISTFILE%) do ( FOR /F "tokens=1" %%E in (%LISTFILE%) do (
echo URL = [ %%E ] echo URL = [ %%E ]
powershell -command .\Download-AppxFromStore.ps1 %%E %APPSFOLDER% rem powershell -command .\Download-AppxFromStore.ps1 %%E %APPSFOLDER%
echo. echo.
) )
echo Cleanup ...
del /F /Q %APPSFOLDER%\*.BlockMap
del /F /Q %APPSFOLDER%\*x86*
del /F /Q %APPSFOLDER%\*arm*
del /F /Q %APPSFOLDER%\*.eappxbundle