reduced sysinternals to the needed tools

This commit is contained in:
Michael H.G. Schmidt 2023-02-24 09:16:42 +01:00
parent 15e55babe9
commit 92fb90501e
10 changed files with 31 additions and 6 deletions

View File

@ -53,6 +53,10 @@ rem copy some other stuff ...
call copy-executables.cmd
echo.
rem dont forget the shortcuts ...
call install-shortcuts.cmd
echo.
call install-git.cmd
echo.

View File

@ -223,7 +223,7 @@ rem INSTALL the APPS WE want to have!
call install-apps.cmd
echo.
call mkinstall_links.cmd
call mkinstall-links.cmd
echo.
echo #####################

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -212,12 +212,33 @@ 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 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
mkdir %TOOLS%\sysinternals 2>nul
for %%S in (
autoruns
procexp
rammap
tcpview
vmmap
zoomit
) do (
echo working on [ %%S ] ...
move /Y %T%\sysinternals\%%S* %TOOLS%\sysinternals
)
rd /S /Q %T%\sysinternals 2>nul
)
echo.