This commit is contained in:
Michael H.G. Schmidt 2020-12-20 19:59:09 +01:00
parent 070d7a3c20
commit 25c82a7ea8
2 changed files with 42 additions and 12 deletions

View File

@ -1,16 +1,27 @@
echo off
set T="c:\TEMP"
set TOOLS="c:\tools"
set SCRIPTS="c:\scripts"
echo ####### autounattend.cmd #######
echo getting 7zip and TOOLS archive from webserver ...
ftp -s:autounattend.ftp
echo deleting %TOOLS% and %SCRIPTS% ...
rd /S /Q %TOOLS%
rd /S /Q %SCRIPTS%
echo extracting TOOLS archive ...
7z x -aoa -oc:\ c:\tools.zip
echo creating directories ...
mkdir %T% 1>nul 2>nul
mkdir %TOOLS% 1>nul 2>nul
mkdir %SCRIPTS% 1>nul 2>nul
mkdir %SCRIPTS%\conf 1>nul 2>nul
mkdir %SCRIPTS%\desktop 1>nul 2>nul
mkdir %SCRIPTS%\tweaks 1>nul 2>nul
echo deleting c:\tools.zip ..
del c:\tools.zip
echo getting TOOLS from webserver ...
ftp -i -s:autounattend.ftp
echo ####### autounattend.cmd #######
timeout /t 3
echo STARTING setup script...
call %SCRIPTS%\1st-setup.cmd

View File

@ -1,11 +1,30 @@
open exabyte-systems.com
w10install
9054c6cf-c54c
binary
lcd c:\
get tools.zip
lcd c:\windows
get 7z.exe
get 7z.dll
cd tools
lcd c:\tools
mget *
cd ../scripts
lcd c:\scripts
mget *
cd conf
lcd c:\scripts\conf
mget *
cd ..
cd desktop
lcd c:\scripts\desktop
mget *
cd ..
cd tweaks
lcd c:\scripts\tweaks
mget *
bye