This commit is contained in:
Michael H.G. Schmidt 2021-01-10 16:50:35 +01:00
parent 03aca37e7d
commit 467f2fd55c
2 changed files with 163 additions and 163 deletions

View File

@ -1,131 +1,131 @@
@echo off @echo off
set T=c:\TEMP set T=c:\TEMP
set TOOLS=c:\tools set TOOLS=c:\tools
echo ####### %0 ####### echo ####### %0 #######
rem echo DISABLE firewall ... rem echo DISABLE firewall ...
rem netsh advfirewall set allprofiles state off rem netsh advfirewall set allprofiles state off
echo creating TEMP directory ... echo creating TEMP directory ...
mkdir %T% 1>nul 2>nul mkdir %T% 1>nul 2>nul
echo killing ssh agent ... echo killing ssh agent ...
taskkill /F /IM ssh-agent.exe taskkill /F /IM ssh-agent.exe
taskkill /F /IM ssh.exe taskkill /F /IM ssh.exe
echo restart explorer ... echo restart explorer ...
taskkill /F /IM explorer.exe & start explorer.exe taskkill /F /IM explorer.exe & start explorer.exe
echo deleting %TOOLS% and %SCRIPTS% ... echo deleting %TOOLS% ...
rd /S /Q %TOOLS% rd /S /Q %TOOLS%
echo copying folder tools to %TOOLS% ... echo copying folder tools to %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL
rem cd to scripts folder ... rem cd to scripts folder ...
cd scripts cd scripts
echo unpacking BGInfo ... echo unpacking BGInfo ...
%TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\BGInfo.zip %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\BGInfo.zip
del /Q %TOOLS%\BGInfo.zip 1>nul 2>nul del /Q %TOOLS%\BGInfo.zip 1>nul 2>nul
echo unpacking TOTAL commander ... echo unpacking TOTAL commander ...
%TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\totalcmd.zip %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\totalcmd.zip
del /Q %TOOLS%\totalcmd.zip 1>nul 2>nul del /Q %TOOLS%\totalcmd.zip 1>nul 2>nul
echo unpacking notepad++ ... echo unpacking notepad++ ...
%TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\notepad++.zip %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\notepad++.zip
del /Q %TOOLS%\notepad++.zip 1>nul 2>nul del /Q %TOOLS%\notepad++.zip 1>nul 2>nul
echo unpacking ImapCopy ... echo unpacking ImapCopy ...
%TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\ImapCopy.zip %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\ImapCopy.zip
del /Q %TOOLS%\ImapCopy.zip 1>nul 2>nul del /Q %TOOLS%\ImapCopy.zip 1>nul 2>nul
echo installing GIT ... echo installing GIT ...
call install-git.cmd call install-git.cmd
echo setting GIT_EDITOR variable (all users) ... echo setting GIT_EDITOR variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^ reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v GIT_EDITOR ^ /v GIT_EDITOR ^
/t REG_EXPAND_SZ ^ /t REG_EXPAND_SZ ^
/d "%TOOLS%\vim.exe" ^ /d "%TOOLS%\vim.exe" ^
/f /f
echo setting GIT_SSH variable (all users) ... echo setting GIT_SSH variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^ reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v GIT_SSH ^ /v GIT_SSH ^
/t REG_EXPAND_SZ ^ /t REG_EXPAND_SZ ^
/d "%TOOLS%\usr\bin\ssh.exe" ^ /d "%TOOLS%\usr\bin\ssh.exe" ^
/f /f
rem copy files in deploy folder to tools directory ... rem copy files in deploy folder to tools directory ...
copy /Y deploy\* %TOOLS% copy /Y deploy\* %TOOLS%
rem create directories for current user ... rem create directories for current user ...
mkdir %USERPROFILE%\workspace 1>nul 2>nul mkdir %USERPROFILE%\workspace 1>nul 2>nul
mkdir %USERPROFILE%\.ssh 1>nul 2>nul mkdir %USERPROFILE%\.ssh 1>nul 2>nul
copy /Y %TOOLS%\ssh_config %USERPROFILE%\.ssh\config copy /Y %TOOLS%\ssh_config %USERPROFILE%\.ssh\config
rem installing startup links ... rem installing startup links ...
call install-logonscript.cmd call install-logonscript.cmd
rem installing desktop icons ... rem installing desktop icons ...
call install-desktopicons.cmd call install-desktopicons.cmd
rem installing tweaks ... rem installing tweaks ...
call install-tweaks.cmd call install-tweaks.cmd
rem changing power configuration ... rem changing power configuration ...
call install-powertweaks.cmd call install-powertweaks.cmd
rem uninstall OneDrive completely ... rem uninstall OneDrive completely ...
call %SCRIPTS%\uninstall-onedrive.cmd call uninstall-onedrive.cmd
rem uninstall Edge completely ... rem uninstall Edge completely ...
call %SCRIPTS%\uninstall-edge.cmd call uninstall-edge.cmd
rem allow execution of any powershell script ... rem allow execution of any powershell script ...
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine" powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
powershell -Command ^ powershell -Command ^
"$T=Get-ExecutionPolicy ; if ($T -eq 'Bypass') { ^ "$T=Get-ExecutionPolicy ; if ($T -eq 'Bypass') { ^
write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^ write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^
} ^ } ^
else { ^ else { ^
write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^ write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^
}" }"
echo. echo.
rem uninstall some Apps (but keep the store) ... rem uninstall some Apps (but keep the store) ...
powershell %SCRIPTS%\uninstall-apps.ps1 powershell uninstall-apps.ps1
echo setting PATH variable (all users) ... echo setting PATH variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^ reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v PATH ^ /v PATH ^
/t REG_EXPAND_SZ ^ /t REG_EXPAND_SZ ^
/d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin;%TOOLS%\notepad++" ^ /d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin;%TOOLS%\notepad++" ^
/f /f
echo cleanup startmenu ... echo cleanup startmenu ...
call %SCRIPTS%\cleanup-startmenu.cmd call cleanup-startmenu.cmd
powershell -Command %SCRIPTS%\cleanup-tiles.ps1 powershell -Command cleanup-tiles.ps1
rem install openshell (fuck you microsoft) ... rem install openshell (fuck you microsoft) ...
call %SCRIPTS%\install-openshell.cmd call install-openshell.cmd
rem install Mozilla Firefox (fuck you google) ... rem install Mozilla Firefox (fuck you google) ...
call %SCRIPTS%\install-firefox.cmd call install-firefox.cmd
rem install F-Secure Antivirus ... rem install F-Secure Antivirus ...
call %SCRIPTS%\install-antivir.cmd call install-antivir.cmd
rem echo ENABLE firewall ... rem echo ENABLE firewall ...
rem netsh advfirewall set allprofiles state on rem netsh advfirewall set allprofiles state on
rem disable autologon for support user ... rem disable autologon for support user ...
call %SCRIPTS%\disable-autologon.cmd call disable-autologon.cmd
echo ####### %0 ####### echo ####### %0 #######
echo READY. echo READY.
pause pause

View File

@ -1,32 +1,32 @@
@echo off @echo off
set LOG=c:\StartCustomSetup.txt set LOG=c:\StartCustomSetup.txt
set BATCH=CustomSetup.cmd set BATCH=CustomSetup.cmd
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1 if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1 shift /1
echo ####### %0 ####### echo ####### %0 #######
date /t date /t
time /t time /t
echo. echo.
for %%D in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do ( for %%D in (A B D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
if EXIST %%D:\%BATCH% ( if EXIST %%D:\%BATCH% (
echo EXECUTING %%D:\%BATCH% ... echo EXECUTING %%D:\%BATCH% ...
cd /D %%D:\ cd /D %%D:\
start cmd /C %BATCH% start cmd /C %BATCH%
GOTO END GOTO END
) else ( ) else (
echo INFO: %BATCH% not found on drive %%D! echo INFO: %BATCH% not found on drive %%D!
) )
) )
:END :END
echo. echo.
date /t date /t
time /t time /t
echo ####### %0 ####### echo ####### %0 #######