diff --git a/CustomSetup.cmd b/CustomSetup.cmd index 33175c8..f6d8ae6 100644 --- a/CustomSetup.cmd +++ b/CustomSetup.cmd @@ -2,10 +2,18 @@ rem this script puts everything in place ... set TOOLS=c:\tools -set SCRIPTS=%TOOLS%\scripts +set LOG=c:\CustomSetup.txt +set SCRIPTS=%TOOLS%\scripts +set BATCH=%SCRIPTS%\autoconfig-all.cmd + +if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1 +shift /1 echo ####### %0 ####### +date /t +time /t +echo. echo killing ssh agent ... taskkill /F /IM ssh-agent.exe @@ -13,35 +21,47 @@ taskkill /F /IM ssh.exe echo restart explorer ... taskkill /F /IM explorer.exe & start explorer.exe +echo. echo deleting %TOOLS% ... rd /S /Q %TOOLS% +echo. echo copying folder %TOOLS% ... robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL +echo. echo unpacking BGInfo ... %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\BGInfo.zip del /F %TOOLS%\BGInfo.zip 1>nul 2>nul +echo. echo unpacking TOTAL commander ... %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\totalcmd_951.zip del /F %TOOLS%\totalcmd_951.zip 1>nul 2>nul +echo. echo unpacking notepad++ ... %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\notepad++.zip del /F %TOOLS%\notepad++.zip 1>nul 2>nul +echo. echo unpacking ImapCopy ... %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\ImapCopy.zip del /F %TOOLS%\ImapCopy.zip 1>nul 2>nul +echo. echo unpacking MediaCreationTool ... %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\MediaCreationTool20H2.zip del /F %TOOLS%\MediaCreationTool20H2.zip 1>nul 2>nul - -echo ####### %0 ####### - echo. -call %SCRIPTS%\CustomSetup2.cmd + +echo starting %BATCH% ... +start cmd /C %BATCH% +echo. + +date /t +time /t +echo ####### %0 ####### +echo READY. diff --git a/scripts/CustomSetup2.cmd b/scripts/autoconfig-all.cmd similarity index 89% rename from scripts/CustomSetup2.cmd rename to scripts/autoconfig-all.cmd index 53582c5..4c8a3a8 100644 --- a/scripts/CustomSetup2.cmd +++ b/scripts/autoconfig-all.cmd @@ -4,9 +4,16 @@ rem this script is doing most of the work ... set T=c:\TEMP set TOOLS=c:\tools set SCRIPTS=%TOOLS%\scripts +set LOG=%SCRIPTS%\autoconfig-all.txt + +if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1 +shift /1 echo. echo ####### %0 ####### +date /t +time /t +echo. echo creating %T% ... mkdir %T% 1>nul 2>nul @@ -127,6 +134,12 @@ rem echo ENABLE firewall ... rem netsh advfirewall set allprofiles state on rem echo. +echo rebooting ... +shutdown -g -t 0 +echo. + +date /t +time /t echo ####### %0 ####### echo READY. -pause + diff --git a/scripts/uninstall-edge.cmd b/scripts/uninstall-edge.cmd index 18a180b..2c23933 100644 --- a/scripts/uninstall-edge.cmd +++ b/scripts/uninstall-edge.cmd @@ -7,11 +7,16 @@ set INSTALLER=Application\8*\Installer echo ####### %0 ####### %EDGEROOT%\%INSTALLER%\setup.exe --uninstall --system-level --verbose-logging --force-uninstall -rd /S /Q %EDGEROOT% 1>nul 2>nul -rd /S /Q %EDGEUPDATE% 1>nul 2>nul +echo cleanup ... +rd /S /Q %EDGEROOT% 1>nul 2>nul +rem rd /S /Q %EDGEUPDATE% 1>nul 2>nul del /F "%PUBLIC%\Desktop\Microsoft Edge.lnk" 1>nul 2>nul del /F "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" 1>nul 2>nul +echo block edge updates ... +reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EdgeUpdate" ^ + /v "DoNotUpdateToEdgeWithChromium" /d 1 /t REG_DWORD /f + echo ####### %0 #######