w10install/image/CopyTools.cmd

86 lines
1.7 KiB
Batchfile
Raw Permalink 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.
2023-02-22 16:41:39 +01:00
echo killing Desktopinfo ...
taskkill /F /IM DesktopInfo64.exe 2>nul
echo.
2024-01-10 13:12:06 +01:00
echo saving desktopinfo.ini ...
copy /Y %TOOLS%\desktopinfo\desktopinfo.ini %SystemDrive%\ 1>nul 2>nul
2023-12-06 15:47:03 +01:00
echo.
2023-12-06 14:40:46 +01:00
2022-06-18 10:41:57 +02:00
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.
2024-09-10 12:46:04 +02:00
rem this tool is needed for the office installation ...
call unpack-officedeploymenttool.cmd
echo.
rem dont forget the shortcuts ...
call install-shortcuts.cmd
echo.
2022-06-18 10:41:57 +02:00
call install-git.cmd
echo.
2024-01-10 13:12:06 +01:00
echo moving desktopinfo.ini back to tools folder ...
move /Y %SystemDrive%\desktopinfo.ini %TOOLS%\desktopinfo 1>nul 2>nul
2023-12-06 14:40:46 +01:00
2023-02-20 18:21:41 +01:00
echo setting permissions for [ %TOOLS% ] ...
2023-02-17 11:55:36 +01:00
cd /D %SystemDrive%\
2023-02-20 09:29:45 +01:00
takeown /F %TOOLS% /R /A /D Y 1>nul
icacls %TOOLS% /inheritance:r
icacls %TOOLS% /grant Administrators:F /t /c /l 1>nul
icacls %TOOLS% /grant Users:RX /t /c /l 1>nul
2022-06-18 10:41:57 +02:00
echo.
2023-02-17 11:55:36 +01:00
echo ####### %0 #######
echo READY.
echo.
2023-02-22 16:41:39 +01:00