w10install/image/CopyTools.cmd

74 lines
1.5 KiB
Batchfile
Raw Normal View History

2022-06-18 10:41:57 +02:00
@echo off
rem this script copies the tools folder ...
2023-02-16 13:37:41 +01:00
set T=%SystemDrive%\TEMP
set TOOLS=%SystemDrive%\tools
2022-06-18 10:41:57 +02:00
set SCRIPTS=%TOOLS%\scripts
echo ####### %0 #######
echo killing ssh agent ...
2023-02-17 11:55:36 +01:00
taskkill /F /IM ssh-agent.exe 2>nul
taskkill /F /IM ssh.exe 2>nul
2023-02-15 19:05:06 +01:00
echo.
echo killing WinAuth ...
2023-02-17 11:55:36 +01:00
taskkill /F /IM WinAuth.exe 2>nul
echo.
echo installing permissions script ...
copy /Y tools\scripts\set-permissions.cmd %SystemDrive%
takeown /F %SystemDrive%\set-permissions.cmd /A
icacls %SystemDrive%\set-permissions.cmd /inheritance:r
icacls %SystemDrive%\set-permissions.cmd /grant Administrators:F
icacls %SystemDrive%\set-permissions.cmd /grant Users:RX
2022-06-18 10:41:57 +02:00
echo.
echo deleting %TOOLS% ...
2023-02-17 11:55:36 +01:00
takeown /F %TOOLS% /R /D Y 1>nul
rd /S /Q %TOOLS% 2>nul
2022-06-18 10:41:57 +02:00
echo.
echo copying folder %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /V /NJH /NFL
echo.
echo creating %T% ...
mkdir %T% 1>nul 2>nul
echo.
echo cd to %SCRIPTS% ...
cd /D %SCRIPTS%
echo.
rem 7-zip is essential for other scripts ...
call unpack-7zip.cmd
echo.
rem windows update blocker is in the zipfiles ...
call unpack-zipfiles.cmd
echo.
rem put vnc in place ...
call unpack-vnc.cmd
echo.
rem copy some other stuff ...
call copy-executables.cmd
echo.
call install-git.cmd
echo.
2023-02-17 11:55:36 +01:00
rem remove duplicate permissions script ...
del /F /Q set-permissions.cmd
2023-02-16 13:37:41 +01:00
rem set ALL permissions ...
2023-02-17 11:55:36 +01:00
cd /D %SystemDrive%\
call set-permissions.cmd
2022-06-18 10:41:57 +02:00
echo.
2023-02-17 11:55:36 +01:00
echo ####### %0 #######
echo READY.
echo.