w10install/scripts/unpack-zipfiles.cmd

226 lines
4.7 KiB
Batchfile
Raw Normal View History

2021-02-27 23:43:40 +01:00
@echo off
2023-02-20 09:24:42 +01:00
set T=%SystemDrive%\TEMP
set TOOLS=%SystemDrive%\tools
2021-02-27 23:43:40 +01:00
set SOFTWARE=..\software
echo ####### %0 #######
rem ###################################
rem MAIN loop ( unzip archives ) ...
rem ###################################
for %%A in (
2022-06-19 23:00:02 +02:00
cmail
2021-02-27 23:43:40 +01:00
curl
2023-02-21 14:19:36 +01:00
desktopinfo
2022-12-29 16:47:44 +01:00
devmanview
2021-02-27 23:43:40 +01:00
imapcopy
2022-12-29 16:47:44 +01:00
nsudo
2021-02-27 23:43:40 +01:00
offlineregistryfinder
rclone
2023-01-01 13:27:28 +01:00
registryfinder
2021-03-06 00:09:40 +01:00
regscanner
2021-02-27 23:43:40 +01:00
restic
2022-12-29 16:47:44 +01:00
serviwin
2023-01-16 09:21:50 +01:00
setdefaultbrowser
showkeyplus
sumatrapdf
2023-02-22 13:23:31 +01:00
tcpoptimize
2023-01-03 13:27:21 +01:00
trid
triddefs
2021-02-27 23:43:40 +01:00
vim
wget
wgetdeps
2021-02-27 23:43:40 +01:00
winscp
wub
2023-01-26 11:13:20 +01:00
wumgr
2023-02-13 16:21:40 +01:00
uwt
2021-02-27 23:43:40 +01:00
) 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 ...
2021-03-30 21:21:53 +02:00
%TOOLS%\7z e -y -aoa -o%T%\%%A %SOFTWARE%\%%A.zip 1>nul
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.
2022-06-19 23:00:02 +02:00
echo CMail - a Windows mailer
move /Y %T%\cmail\cmail.exe %TOOLS%
rd /S /Q %T%\cmail
2021-08-29 17:55:18 +02: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.
2023-02-21 14:19:36 +01:00
echo Desktopinfo
mkdir %TOOLS%\desktopinfo 2>nul
move /Y %T%\desktopinfo\Desktopinfo64.exe %TOOLS%\desktopinfo
move /Y %T%\desktopinfo\*.dll %TOOLS%\desktopinfo
2023-02-23 09:05:23 +01:00
move /Y %T%\desktopinfo\*.pdf %TOOLS%\desktopinfo
2023-02-21 14:19:36 +01:00
rd /S /Q %T%\desktopinfo
copy /Y config\desktopinfo.ini %TOOLS%\desktopinfo
echo.
2022-12-29 16:47:44 +01:00
echo DevManView
move /Y %T%\devmanview\*.exe %TOOLS%
rd /S /Q %T%\devmanview
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 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.
2022-12-29 16:47:44 +01:00
echo NSudo
move /Y %T%\nsudo\NSudoLC.exe %TOOLS%\nsudo.exe
rd /S /Q %T%\nsudo
echo.
2021-02-27 23:43:40 +01:00
echo RClone
move /Y %T%\rclone\rclone.exe %TOOLS%
rd /S /Q %T%\rclone
echo.
2023-01-01 13:27:28 +01:00
echo Registry Finder
mkdir %TOOLS%\registryfinder 2>nul
move /Y %T%\registryfinder\RegistryFinder.exe %TOOLS%\registryfinder
move /Y %T%\registryfinder\RegistryFinder.ico %TOOLS%\registryfinder
rd /S /Q %T%\registryfinder
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.
2023-01-16 09:21:50 +01:00
echo SetDefaultBrowser
move /Y %T%\SetDefaultBrowser\*.exe %TOOLS%
rd /S /Q %T%\SetDefaultBrowser
echo.
2022-12-29 16:47:44 +01:00
echo ServiWIN
move /Y %T%\serviwin\*.exe %TOOLS%
rd /S /Q %T%\serviwin
echo.
echo ShowKeyPlus
move /Y %T%\showkeyplus\*.exe %TOOLS%
rd /S /Q %T%\showkeyplus
echo.
echo SumatraPDF
move /Y %T%\sumatrapdf\*.exe %TOOLS%\SumatraPDF.exe
rd /S /Q %T%\sumatrapdf
echo.
2023-02-22 13:23:31 +01:00
echo TCP-optimize script
move /Y %T%\tcpoptimize\*.ps1 %TOOLS%\scripts\tcpoptimize.ps1
rd /S /Q %T%\tcpoptimize
echo.
2023-01-03 13:27:21 +01:00
echo TrID (File identifier)
move /Y %T%\trid\trid.exe %TOOLS%
rd /S /Q %T%\trid
echo.
echo TrID (File identifier DATABASE)
move /Y %T%\triddefs\triddefs.trd %TOOLS%
rd /S /Q %T%\triddefs
echo.
2021-02-27 23:43:40 +01:00
echo VIM
move /Y %T%\vim\vim.exe %TOOLS%
rd /S /Q %T%\vim
2023-01-01 17:49:33 +01:00
rem create symbolic link ...
mklink %TOOLS%\vi.exe %TOOLS%\vim.exe 2>nul
2021-02-27 23:43:40 +01:00
echo.
echo wGET
move /Y %T%\wget\wget.exe %TOOLS%
rd /S /Q %T%\wget
move /Y %T%\wgetdeps\*.dll %TOOLS%
rd /S /Q %T%\wgetdeps
echo.
2021-02-27 23:43:40 +01:00
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.
2023-01-26 11:13:20 +01:00
echo WUMGR - Windows update manager
move /Y %T%\wumgr\wumgr.exe %TOOLS%\wumgr.exe
rd /S /Q %T%\wumgr
echo.
2023-02-13 16:21:40 +01:00
echo UWT - Ultimate Windows Tweaker
mkdir %TOOLS%\uwt 2>nul
move /Y %T%\uwt\*.exe %TOOLS%\uwt\uwt.exe
move /Y %T%\uwt\*.dll %TOOLS%\uwt
rd /S /Q %T%\uwt
echo.
2022-06-19 23:00:02 +02:00
echo +++++++++++++++++++++++
echo ++++ Android tools ++++
echo +++++++++++++++++++++++
2021-10-03 17:51:43 +02:00
2021-08-29 20:01:00 +02:00
if NOT EXIST %SOFTWARE%\android.zip (
echo WARNING: %SOFTWARE%\android.zip not found!
) else (
echo unpacking android.zip ...
%TOOLS%\7z x -y -aoa -o%TOOLS% %SOFTWARE%\android.zip 1>nul
2022-06-19 18:08:42 +02:00
rd /S /Q %TOOLS%\android 2>nul
2021-08-29 20:01:00 +02:00
move /Y %TOOLS%\platform-tools %TOOLS%\android
)
echo.
2022-06-19 23:00:02 +02:00
echo ++++++++++++++++++++++
echo ++++ Sysinternals ++++
echo ++++++++++++++++++++++
if NOT EXIST %SOFTWARE%\sysinternals.zip (
echo WARNING: %SOFTWARE%\sysinternals.zip not found!
) else (
echo unpacking sysinternals.zip ...
mkdir %TOOLS%\sysinternals 2>nul
%TOOLS%\7z e -y -aoa -o%TOOLS%\sysinternals %SOFTWARE%\sysinternals.zip 1>nul
echo put autoruns in place ...
move /Y %TOOLS%\sysinternals\autoruns.exe %TOOLS%
)
echo.
2021-02-27 23:43:40 +01:00
echo ####### %0 #######
2021-10-03 17:51:43 +02:00