新しく作成されたインストール ISO による選択的な更新

新しく作成されたインストール ISO による選択的な更新

Windows 8.1(Proではない)が同梱されている複数の新しいPC用に、Windows 8.1 Proの小売ボックス版/フルバージョンのライセンスを購入しました。しかし、付属のDVDは1.5年前のものです。オプション1このチュートリアル新しいインストールDVDを作成する

質問1: Microsoft では、mediacreationtool.exeWindows 8.1 に常に最新の (セキュリティおよびオプションの) 更新プログラムが含まれていますか?

そうでない場合は、ボックス版に含まれている DVD を使用します。

もしそうなら、除外したいアップデートがいくつかありますユーザーデータ収集に関する

質問2: によって作成されたインストール メディアを使用する場合mediacreationtool.exe、選択した KB 更新をアンインストールできますか?

セキュリティ更新プログラムが完全に適用されるまで、新しい PC をインターネットに接続したくありません。

質問3: 2014 年末までにセキュリティを最新の状態に保つために必要な労力を最小限に抑えるための更新ロールアップはどこで入手できますか。その時点では、Microsoft はまだ Windows 10 の準備とスパイウェアを Windows 8.1 にインストールし始めていなかったと思います。ただし、2014 年末までのオプションのパッチはどこで入手できますか。

同様の懸念をお持ちのユーザーからのアドバイスもいただければ幸いです。

答え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.

関連情報