您的位置:首页 > 其它

How to extract msu/msp/msi/exe files from the command line

2014-08-15 03:35 831 查看
http://www.windowswiki.info/2009/02/19/how-to-extract-msumspmsiexe-files-from-the-command-line/

Microsoft Hotfix Installer (.exe)

setup.exe /t:C:<target_dir> /c


Microsoft Update Standalone Package (.msu)

expand -F:* update.msu C:<target_dir>
cd <target_dir>
expand -F:* update.cab C:<target_dir>


Microsoft Patch File (.msp)

msix patch.msp /out C:<target_dir>

msix.zip

Windows Installer Package (.msi)

msiexec /a setup.msi /qb TARGETDIR=C:<target_dir>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: