This commit is contained in:
Michael H.G. Schmidt 2021-02-21 15:43:09 +01:00
parent f3b27ad9fd
commit ac730761a4
4 changed files with 33 additions and 2 deletions

View File

@ -167,7 +167,7 @@ setx PATH %SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMR
```
# 3 Clone this repository
# 3. Clone this repository
```dos
cd /D %USERPROFILE%
@ -177,3 +177,4 @@ git clone https://github.com/mhgschmidt/w10install.git
cd w10install
```

View File

@ -0,0 +1,30 @@
@echo off
set LISTFILE=softwarelist.csv
IF NOT EXIST %LISTFILE% (
echo ERROR: %LISTFILE% not found!
exit /b
)
rem ###################################
rem MAIN loop ( download software ) ...
rem ###################################
FOR /F "tokens=1,2 delims=, " %%E in (%LISTFILE%) do (
echo getting: [ %%E ] from [ %%F ]
curl -L %%E --output %%F
IF %%~zF == 0 (
echo ERROR: size of %%F is 0 bytes
del /F %%F
) ELSE (
echo INFO: size of %%F is %%~zF bytes
)
if NOT EXIST %%F (
echo ERROR: couldn't get %%F!
exit /b
)
)

View File

@ -0,0 +1 @@
http://download.spotify.com/SpotifyFullSetup.exe spotify.exe
1 http://download.spotify.com/SpotifyFullSetup.exe spotify.exe

View File

@ -204,4 +204,3 @@ move /Y Packages.txt Packages-AFTER.txt
rem showing packages ...
dir Packages*.txt