This commit is contained in:
Michael H.G. Schmidt 2021-01-12 17:01:34 +01:00
parent 9cd831d39f
commit a9af282683
11 changed files with 243 additions and 202 deletions

View File

@ -1,15 +1,12 @@
@echo off @echo off
set T=c:\TEMP rem this script puts everything in place ...
set TOOLS=c:\tools set TOOLS=c:\tools
set SCRIPTS=%TOOLS%\scripts
echo ####### %0 ####### echo ####### %0 #######
rem echo DISABLE firewall ...
rem netsh advfirewall set allprofiles state off
echo creating TEMP directory ...
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
@ -20,12 +17,9 @@ taskkill /F /IM explorer.exe & start explorer.exe
echo deleting %TOOLS% ... echo deleting %TOOLS% ...
rd /S /Q %TOOLS% rd /S /Q %TOOLS%
echo copying folder tools to %TOOLS% ... echo copying folder %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL
rem cd to scripts folder ...
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 /F %TOOLS%\BGInfo.zip 1>nul 2>nul del /F %TOOLS%\BGInfo.zip 1>nul 2>nul
@ -46,96 +40,8 @@ echo unpacking MediaCreationTool ...
%TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\MediaCreationTool20H2.zip %TOOLS%\7z x -aoa -o%TOOLS% %TOOLS%\MediaCreationTool20H2.zip
del /F %TOOLS%\MediaCreationTool20H2.zip 1>nul 2>nul del /F %TOOLS%\MediaCreationTool20H2.zip 1>nul 2>nul
echo installing GIT ...
call install-git.cmd
echo setting GIT_EDITOR variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v GIT_EDITOR ^
/t REG_EXPAND_SZ ^
/d "%TOOLS%\vim.exe" ^
/f
echo setting GIT_SSH variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v GIT_SSH ^
/t REG_EXPAND_SZ ^
/d "%TOOLS%\usr\bin\ssh.exe" ^
/f
rem copy files in deploy folder to tools directory ...
copy /Y deploy\* %TOOLS%
rem create directories for current user ...
mkdir %USERPROFILE%\workspace 1>nul 2>nul
mkdir %USERPROFILE%\.ssh 1>nul 2>nul
copy /Y %TOOLS%\ssh_config %USERPROFILE%\.ssh\config
rem installing startup links ...
call install-logonscript.cmd
rem installing desktop icons ...
call install-desktopicons.cmd
rem installing tweaks ...
call install-tweaks.cmd
rem changing power configuration ...
call install-powertweaks.cmd
rem uninstall OneDrive completely ...
call uninstall-onedrive.cmd
rem uninstall Edge completely ...
call uninstall-edge.cmd
rem allow execution of any powershell script ...
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
powershell -Command ^
"$T=Get-ExecutionPolicy ; if ($T -eq 'Bypass') { ^
write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^
} ^
else { ^
write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^
}"
echo.
rem uninstall some Apps (but keep the store) ...
powershell -Command .\uninstall-apps.ps1
echo setting PATH variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v PATH ^
/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++" ^
/f
rem install openshell (fuck you microsoft) ...
call install-openshell.cmd
rem install Mozilla Firefox (fuck you google) ...
call install-firefox.cmd
rem install F-Secure Antivirus ...
call install-antivir.cmd
rem disable autologon for support user ...
call disable-autologon.cmd
rem disable logon screen background ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" ^
/v DisableLogonBackgroundImage ^
/t REG_DWORD /d 1 /f
rem this must be done as late as possible ... stupid os problem
echo cleanup startmenu and tiles ...
powershell -Command .\cleanup-tiles.ps1
call cleanup-startmenu.cmd
rem echo ENABLE firewall ...
rem netsh advfirewall set allprofiles state on
echo ####### %0 ####### echo ####### %0 #######
echo READY.
pause echo.
call %SCRIPTS%\CustomSetup2.cmd

View File

@ -52,12 +52,17 @@ if EXIST %SOURCES%\install_FINAL.esd (
move /Y %SOURCES%\install_FINAL.esd %SOURCES%\install_FINAL_copy.esd move /Y %SOURCES%\install_FINAL.esd %SOURCES%\install_FINAL_copy.esd
) )
for %%P in (tools software scripts) do ( echo.
if EXIST tools (
echo copying folder tools to drive %USBDRIVE% ...
robocopy tools %USBDRIVE%\tools /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL /XF .gitignore
)
for %%P in (software scripts) do (
if EXIST %%P ( if EXIST %%P (
echo. echo.
echo copying folder %%P to drive %USBDRIVE% ... echo copying folder %%P to drive %USBDRIVE%\tools ...
robocopy %%P %USBDRIVE%\%%P /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL /XF .gitignore robocopy %%P %USBDRIVE%\tools\%%P /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL /XF .gitignore
del /F %USBDRIVE%\%%P\.gitignore 1>nul 2>nul
) )
) )

116
scripts/CustomSetup2.cmd Normal file
View File

@ -0,0 +1,116 @@
@echo off
rem this script is doing most of the work ...
set T=c:\TEMP
set TOOLS=c:\tools
set SCRIPTS=%TOOLS%\scripts
echo ####### %0 #######
echo creating %T% ...
mkdir %T% 1>nul 2>nul
echo cd to %SCRIPTS% ...
cd /D %SCRIPTS%
echo moving files in deploy folder to %TOOLS% ...
move /Y deploy\* %TOOLS% 1>nul 2>nul
rmdir deploy 1>nul 2>nul
rem #######################
rem ### GLOBAL settings ###
rem #######################
rem echo DISABLE firewall ...
rem netsh advfirewall set allprofiles state off
rem allow execution of any powershell script ...
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
powershell -Command ^
"$T=Get-ExecutionPolicy ; if ($T -eq 'Bypass') { ^
write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^
} ^
else { ^
write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^
}"
echo.
echo setting PATH variable ( for all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v PATH ^
/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++" ^
/f
rem changing power configuration ...
call modify-powersettings.cmd
rem installing tweaks ...
call install-tweaks.cmd
rem #######################
rem ### UNINSTALL tasks ###
rem #######################
echo uninstall ALL Apps (but keep the store) ...
powershell -Command .\uninstall-apps.ps1
rem uninstall OneDrive completely ...
call uninstall-onedrive.cmd
rem uninstall Edge completely ...
call uninstall-edge.cmd
rem #####################
rem ### INSTALL tasks ###
rem #####################
rem install logon script ...
call install-logonscript.cmd
rem install desktop icons ...
call install-desktopicons.cmd
rem install GIT ...
call install-git.cmd
rem install openshell (fuck you microsoft) ...
call install-openshell.cmd
rem install Mozilla Firefox (fuck you google) ...
call install-firefox.cmd
rem install F-Secure Antivirus ...
call install-antivir.cmd
rem #####################
rem ### DISABLE tasks ###
rem #####################
echo disabling logon screen background ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" ^
/v DisableLogonBackgroundImage ^
/t REG_DWORD /d 1 /f
rem disable autologon for support user ...
call disable-autologon.cmd
rem #####################
rem ### CLEANUP tasks ###
rem #####################
rem this must be done as late as possible ... stupid os problem
echo cleanup all the tiles ...
powershell -Command .\cleanup-tiles.ps1
rem this one cleans the startmenu and removes dead entries ... stupid os problem #2
call cleanup-startmenu.cmd
rem echo ENABLE firewall ...
rem netsh advfirewall set allprofiles state on
echo ####### %0 #######
echo READY.
pause

View File

@ -1,5 +1,4 @@
@echo off @echo off
set TOOLS=c:\tools set TOOLS=c:\tools
echo ####### %0 ####### echo ####### %0 #######
@ -20,7 +19,7 @@ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Hi
rem refresh desktop (W10 style) rem refresh desktop (W10 style)
ie4uinit.exe -show ie4uinit.exe -show
echo remove wallpaper ... echo removing wallpaper ...
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
@ -30,6 +29,11 @@ echo set desktop colour ...
echo starting BGInfo ... echo starting BGInfo ...
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0 %TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
echo creating some directories and files for current user ...
mkdir %USERPROFILE%\workspace 1>nul 2>nul
mkdir %USERPROFILE%\.ssh 1>nul 2>nul
copy /Y %TOOLS%\scripts\config\ssh_config.txt %USERPROFILE%\.ssh\config
echo start workstation service ... echo start workstation service ...
net start workstation 1>nul 2>nul net start workstation 1>nul 2>nul
net config workstation net config workstation

View File

@ -1,6 +1,6 @@
@echo off @echo off
set CONF=deploy\firefox set CONF=config\firefox
set SCRIPTS=..\..\scripts set SCRIPTS=..\..\scripts
set SOFTWARE=..\software\firefox set SOFTWARE=..\software\firefox

View File

@ -1,7 +1,8 @@
@echo off @echo off
set CONFIG=install-git.txt set CONFIG=config\install-git.txt
set EXE=..\software\Git-2.29.0-64-bit.exe set EXE=..\software\Git-2.29.0-64-bit.exe
set TOOLS=c:\tools
echo ####### %0 ####### echo ####### %0 #######
@ -12,5 +13,19 @@ taskkill /F /IM ssh.exe
echo installing GIT ... echo installing GIT ...
%EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo setting GIT_EDITOR variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v GIT_EDITOR ^
/t REG_EXPAND_SZ ^
/d "%TOOLS%\vim.exe" ^
/f
echo setting GIT_SSH variable (all users) ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
/v GIT_SSH ^
/t REG_EXPAND_SZ ^
/d "%TOOLS%\usr\bin\ssh.exe" ^
/f
echo ####### %0 ####### echo ####### %0 #######

View File

@ -1,6 +1,4 @@
@echo off @echo off
set SOURCE=deploy/logon.cmd
set TOOLS=c:\tools set TOOLS=c:\tools
set TARGET="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Startup" set TARGET="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Startup"
@ -10,10 +8,7 @@ rem cleanup ...
del /Q /F %TARGET%\logon* 1>nul 2>nul del /Q /F %TARGET%\logon* 1>nul 2>nul
del /Q /F %TOOLS%\logon.cmd 1>nul 2>nul del /Q /F %TOOLS%\logon.cmd 1>nul 2>nul
echo copy logon.cmd to %TOOLS% ... echo creating link for logon script...
copy /Y %SOURCE% %TOOLS%
echo create link for logon script...
mklink %TARGET%\logon.cmd %TOOLS%\logon.cmd mklink %TARGET%\logon.cmd %TOOLS%\logon.cmd
echo create link on desktop... echo create link on desktop...