w10install/scripts/unpack-zipfiles.cmd

275 lines
5.7 KiB
Batchfile
Raw Permalink 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 #######
2024-11-19 13:17:59 +01:00
rem ###################################
rem Windows Defender Exceptions ...
rem ###################################
for %%A in (
%T%
%TOOLS%
) do (
echo disabling Windows defender for PATH [ %%A ] ...
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath %%A
)
2021-02-27 23:43:40 +01:00
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
2023-12-26 22:43:59 +01:00
mas
2024-11-19 13:17:59 +01:00
nsudo
2021-02-27 23:43:40 +01:00
offlineregistryfinder
rclone
2023-12-29 22:53:58 +01:00
rdpwrap
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-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 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.
2023-12-26 22:43:59 +01:00
echo MAS
2024-05-31 16:56:49 +02:00
move /Y %T%\mas\mas_aio*.cmd %TOOLS%\mas_aio.cmd
2023-12-26 22:43:59 +01:00
rd /S /Q %T%\mas
2024-11-19 13:17:59 +01:00
echo.
echo NSUDO
move /Y %T%\nsudo\nsudo.exe %TOOLS%
rd /S /Q %T%\nsudo
2023-12-26 22:43:59 +01:00
echo.
2023-12-29 22:53:58 +01:00
echo RDPwrapper
move /Y %T%\rdpwrap\RDP*.exe %TOOLS%
rd /S /Q %T%\rdpwrap
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
copy /Y config\SumatraPDF-settings.txt %TOOLS%
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-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.
2023-03-16 08:23:10 +01:00
echo +++++++++++++++++++++++++
echo ++++ CrystalDiskInfo ++++
echo +++++++++++++++++++++++++
if NOT EXIST %SOFTWARE%\diskinfo.zip (
echo WARNING: %SOFTWARE%\diskinfo.zip not found!
) else (
echo unpacking diskinfo.zip ...
%TOOLS%\7z x -y -aoa -o%TOOLS%\diskinfo %SOFTWARE%\diskinfo.zip 1>nul
rd /S /Q %TOOLS%\diskinfo\License 2>nul
del /F /Q %TOOLS%\diskinfo\Readme.txt
del /F /Q %TOOLS%\diskinfo\DiskInfo32.exe
del /F /Q %TOOLS%\diskinfo\DiskInfoA64.exe
rd /S /Q %T%\diskinfo 2>nul
)
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 (
2022-06-19 23:00:02 +02:00
echo unpacking sysinternals.zip ...
mkdir %T%\sysinternals 2>nul
%TOOLS%\7z e -y -aoa -o%T%\sysinternals %SOFTWARE%\sysinternals.zip 1>nul
echo cleanup of [ %TOOLS%\sysinternals ]
rd /S /Q %TOOLS%\sysinternals 2>nul
2022-06-19 23:00:02 +02:00
mkdir %TOOLS%\sysinternals 2>nul
for %%S in (
autoruns
procexp
tcpview
vmmap
zoomit
) do (
echo working on [ %%S ] ...
move /Y %T%\sysinternals\%%S* %TOOLS%\sysinternals
)
rd /S /Q %T%\sysinternals 2>nul
2022-06-19 23:00:02 +02:00
)
echo.
2021-02-27 23:43:40 +01:00
echo ####### %0 #######
2021-10-03 17:51:43 +02:00