.
This commit is contained in:
parent
f3b27ad9fd
commit
ac730761a4
@ -167,7 +167,7 @@ setx PATH %SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMR
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
# 3 Clone this repository
|
# 3. Clone this repository
|
||||||
|
|
||||||
```dos
|
```dos
|
||||||
cd /D %USERPROFILE%
|
cd /D %USERPROFILE%
|
||||||
@ -177,3 +177,4 @@ git clone https://github.com/mhgschmidt/w10install.git
|
|||||||
cd w10install
|
cd w10install
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
30
software/download-software.cmd
Normal file
30
software/download-software.cmd
Normal 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
|
||||||
|
)
|
||||||
|
|
||||||
|
)
|
1
software/softwarelist.csv
Normal file
1
software/softwarelist.csv
Normal file
@ -0,0 +1 @@
|
|||||||
|
http://download.spotify.com/SpotifyFullSetup.exe spotify.exe
|
|
@ -204,4 +204,3 @@ move /Y Packages.txt Packages-AFTER.txt
|
|||||||
|
|
||||||
rem showing packages ...
|
rem showing packages ...
|
||||||
dir Packages*.txt
|
dir Packages*.txt
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user