metasploit-framework/tools/extract_msu.bat

31 lines
750 B
Batchfile
Raw Normal View History

@echo off
@setlocal EnableDelayedExpansion
@set arg=%~1
if [%arg%] == [] (
echo Argument Missing:
echo You must provide a directory that contains
echo all the Windows patches in *.msu format.
echo To Download patches manually, please go:
echo http://mybulletins.technet.microsoft.com/BulletinPages/Dashboard
exit /B
)
for /f %%f in ('dir /B %arg%') DO (
@set fname=%%f
@set lastfourchars=!fname:~-4,4!
if "!lastfourchars!" == ".msu" (
@set newname=!fname:~0,-4!
2015-09-10 03:00:35 +00:00
7za e %arg%!fname! -o%arg%!newname!
mkdir %arg%!newname!\extracted
expand /F:* %arg%!newname!\!newname!.cab %arg%!newname!\extracted
)
2015-09-10 03:00:35 +00:00
)
echo Done!
echo Now go to %arg%,
echo and then use the search feature from Windows to
echo find the files you're interested in.