reduced sysinternals to the needed tools
This commit is contained in:
parent
15e55babe9
commit
92fb90501e
@ -53,6 +53,10 @@ rem copy some other stuff ...
|
|||||||
call copy-executables.cmd
|
call copy-executables.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
rem dont forget the shortcuts ...
|
||||||
|
call install-shortcuts.cmd
|
||||||
|
echo.
|
||||||
|
|
||||||
call install-git.cmd
|
call install-git.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
@ -223,7 +223,7 @@ rem INSTALL the APPS WE want to have!
|
|||||||
call install-apps.cmd
|
call install-apps.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
call mkinstall_links.cmd
|
call mkinstall-links.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
echo #####################
|
echo #####################
|
||||||
|
Binary file not shown.
BIN
scripts/startmenu/Process Explorer.lnk
Normal file
BIN
scripts/startmenu/Process Explorer.lnk
Normal file
Binary file not shown.
BIN
scripts/startmenu/RAMMap.lnk
Normal file
BIN
scripts/startmenu/RAMMap.lnk
Normal file
Binary file not shown.
BIN
scripts/startmenu/TCPView.lnk
Normal file
BIN
scripts/startmenu/TCPView.lnk
Normal file
Binary file not shown.
BIN
scripts/startmenu/VMMap.exe.lnk
Normal file
BIN
scripts/startmenu/VMMap.exe.lnk
Normal file
Binary file not shown.
BIN
scripts/startmenu/ZoomIt.lnk
Normal file
BIN
scripts/startmenu/ZoomIt.lnk
Normal file
Binary file not shown.
@ -212,12 +212,33 @@ echo ++++++++++++++++++++++
|
|||||||
if NOT EXIST %SOFTWARE%\sysinternals.zip (
|
if NOT EXIST %SOFTWARE%\sysinternals.zip (
|
||||||
echo WARNING: %SOFTWARE%\sysinternals.zip not found!
|
echo WARNING: %SOFTWARE%\sysinternals.zip not found!
|
||||||
) else (
|
) 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 ...
|
echo unpacking sysinternals.zip ...
|
||||||
move /Y %TOOLS%\sysinternals\autoruns.exe %TOOLS%
|
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.
|
echo.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user