从 WinSxS 文件夹提取文件

从 WinSxS 文件夹提取文件

具体来说,我想获取explorer.exe版本的文件6.3.9600.17238(来自 Windows 8.1 Update 1)。我的系统上有以下文件:

C:\Windows\WinSxS\wow64_microsoft-windows-explorer_31bf3856ad364e35_6.3.9600.17238_none_4d01a98581e82d4f\explorer.exe

但它看起来有一些不同,它只有 216 KB,而原始文件大约为 2 MB。

我该如何提取文件?或者,我可以在其他地方找到这个文件吗?本地还是在线?

我需要此特定版本的文件用于我正在开发的工具。不是为了修复操作系统安装。

答案1

版本是Explorer.exe6.3.9600.172382014 年 8 月 Windows 8.1 更新汇总

您可以使用 Windows 收件箱工具expand.exe展开 MSU,然后使用 CAB 文件提取以下内容Explorer.exe

expand -F:* Windows8.1-KB2975719-x64.msu C:<target_dir>
cd <target_dir>
expand -F:* Windows8.1-KB2975719-x64.cab C:<target_dir>

相关内容