w10install/scripts/unpack-zipfiles.cmd

106 lines
1.9 KiB
Batchfile
Raw Normal View History

2021-02-27 23:43:40 +01:00
@echo off
set TOOLS=c:\tools
set SOFTWARE=..\software
set T=c:\TEMP
echo ####### %0 #######
rem ###################################
rem MAIN loop ( unzip archives ) ...
rem ###################################
for %%A in (
bginfo
curl
imapcopy
installwimtweak
offlineregistryfinder
rclone
2021-03-06 00:09:40 +01:00
regscanner
2021-02-27 23:43:40 +01:00
restic
vim
winscp
wub
) do (
2021-02-28 14:10:59 +01:00
if NOT EXIST %SOFTWARE%\%%A.zip (
2021-02-27 23:43:40 +01:00
echo WARNING: %SOFTWARE%\%%A.zip not found!
2021-02-28 14:10:59 +01:00
) else (
echo unpacking %%A.zip ...
%TOOLS%\7z e -y -aoa -o%T%\%%A %SOFTWARE%\%%A.zip
2021-02-27 23:43:40 +01:00
)
)
echo.
echo ###################################
echo move files to tools folder
echo ###################################
2021-02-27 20:07:28 +01:00
echo.
2021-02-27 23:43:40 +01:00
echo BGinfo ...
mkdir %TOOLS%\bginfo 2>nul
2021-02-28 21:25:39 +01:00
move /Y %T%\bginfo\Bginfo64.exe %TOOLS%\bginfo
2021-02-28 15:24:20 +01:00
copy /Y config\config.bgi %TOOLS%\bginfo
2021-02-27 23:43:40 +01:00
rd /S /Q %T%\bginfo 2>nul
2021-02-27 20:07:28 +01:00
echo.
2021-02-27 23:43:40 +01:00
echo CURL
move /Y %T%\curl\curl.exe %TOOLS%
move /Y %T%\curl\libcurl*.dll %TOOLS%
move /Y %T%\curl\curl-ca-bundle.crt %TOOLS%
rd /S /Q %T%\curl
2021-02-27 20:07:28 +01:00
echo.
2021-02-27 23:43:40 +01:00
echo ImapCopy
mkdir %TOOLS%\imapcopy 2>nul
move /Y %T%\imapcopy\* %TOOLS%\imapcopy
rd /S /Q %T%\imapcopy
2021-02-27 20:07:28 +01:00
echo.
2021-02-27 23:43:40 +01:00
echo InstallWimTweak
move /Y %T%\installwimtweak\* %TOOLS%
rd /S /Q %T%\installwimtweak
echo.
echo OfflineRegistryFinder
move /Y %T%\offlineregistryfinder\*.exe %TOOLS%
rd /S /Q %T%\offlineregistryfinder
2021-02-28 15:24:20 +01:00
copy /Y config\OfflineRegistryFinder.cfg %TOOLS%
2021-02-27 23:43:40 +01:00
echo.
echo RClone
move /Y %T%\rclone\rclone.exe %TOOLS%
rd /S /Q %T%\rclone
echo.
2021-03-06 00:09:40 +01:00
echo RegScanner
move /Y %T%\regscanner\*.exe %TOOLS%
rd /S /Q %T%\regscanner
echo.
2021-02-27 23:43:40 +01:00
echo Restic
move /Y %T%\restic\*.exe %TOOLS%\restic.exe
rd /S /Q %T%\restic
echo.
echo VIM
move /Y %T%\vim\vim.exe %TOOLS%
rd /S /Q %T%\vim
echo.
echo WinSCP
move /Y %T%\winscp\*.exe %TOOLS%
rd /S /Q %T%\winscp
echo.
echo WUB - Windows update blocker
move /Y %T%\wub\wub_x64.exe %TOOLS%\wub.exe
rd /S /Q %T%\wub
echo.
echo ####### %0 #######