使用新创建的安装 ISO 进行选择性更新

使用新创建的安装 ISO 进行选择性更新

我为几台新 PC 购买了 Windows 8.1 Pro 的零售盒装/完整版许可证,这些 PC 都预装了 Windows 8.1(非专业版),但随附的 DVD 已有 1.5 年历史。我正在考虑使用选项1本教程创建新的安装 DVD

问题 1:微软是否mediacreationtool.exe始终为 Windows 8.1 包含最新的(安全和可选)更新?

如果没有,我只会使用盒装版本中附带的 DVD。

如果是的话,我想排除某些更新关于用户数据收集

问题2:如果我使用创建的安装媒体mediacreationtool.exe,我可以卸载选择性 KB 更新吗?

在新电脑完成安全更新修补之前,我不想将其连接到互联网。

问题 3:我可以在哪里找到更新汇总以尽量减少获取最新安全但可选补丁所需的努力,直到 2014 年底,据我所知,微软尚未开始在 Windows 8.1 中安装 Windows 10 准备和间谍软件。

如果有类似顾虑的用户提出任何其他建议,我们将不胜感激。

答案1

Beverage
Good eBook
<Setup>
md c:\win8
md c:\updates
md c:\mountw8

copy <wherever it is>\install.wim c:\win8
<Internet Explorer>
http://catalog.update.microsoft.com
<agree to plug in>
(Make sure you get the one for the correct OS and x86 or x64)
Type in the KB####### one at a time and add them to cart
When prompted for a folder browse to c:\updates
<Start Reading Book>
<Wait for download>
<Keep waiting>

dism /Mount-Wim /WimFile:c:\win8\install.wim /index:1 /MountDir:c:\mountw8
<Resume Reading Book>
for /R "C:\Updates\" %i in (*.msu) do dism /image:c:\mountw8 /Add-Package /PackagePath:"%i"
<Wait>
<Wait some more>
<Keep waiting>

As long as we have the image mount lets inject some drives

(Modify the path to your needs)
(Make sure the drivers are extracted so the *.inf files are visible)
DISM.exe /Image:C:\mountw8 /Add-Driver /Driver:d:\Drivers\ /Recurse

<Resume Reading Book>

(Finalize the image)
dism /Unmount-Wim /MountDir:c:\mountw8 /commit

Make a bootable media disc replacing the old install.wim with this one.

相关内容