w10install/CustomSetup.cmd

42 lines
741 B
Batchfile
Raw Normal View History

2021-01-10 16:50:35 +01:00
@echo off
2021-01-12 17:01:34 +01:00
rem this script puts everything in place ...
2021-01-10 16:50:35 +01:00
2021-01-12 17:01:34 +01:00
set TOOLS=c:\tools
2021-02-27 21:16:12 +01:00
set BATCH=%TOOLS%\scripts\autoconfig-all.cmd
2021-02-03 06:49:13 +01:00
set LOG=c:\CustomSetup.txt
del /F %LOG% 1>nul 2>nul
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1
echo ####### %0 #######
date /t
time /t
echo.
2021-01-10 16:50:35 +01:00
echo killing ssh agent ...
taskkill /F /IM ssh-agent.exe
taskkill /F /IM ssh.exe
echo restart explorer ...
taskkill /F /IM explorer.exe & start explorer.exe
2021-01-12 20:23:36 +01:00
echo.
2021-01-10 16:50:35 +01:00
echo deleting %TOOLS% ...
rd /S /Q %TOOLS%
2021-01-12 20:23:36 +01:00
echo.
2021-01-10 16:50:35 +01:00
2021-02-27 21:16:12 +01:00
echo copying folder %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL
echo.
2021-01-12 20:23:36 +01:00
echo starting %BATCH% ...
2021-01-14 00:03:49 +01:00
call %BATCH%
2021-01-10 16:50:35 +01:00
echo.
2021-01-12 20:23:36 +01:00
2021-02-03 06:49:13 +01:00
date /t
time /t
2021-01-12 20:23:36 +01:00
echo ####### %0 #######
echo READY.
2021-01-14 00:03:49 +01:00
echo.