Ich habe Einzelhandels-Box-/Vollversionslizenzen von Windows 8.1 Pro für mehrere neue PCs gekauft, die mit Windows 8.1 (nicht Pro) ausgeliefert wurden, aber die mitgelieferten DVDs sind 1,5 Jahre alt. Ich überlege,Option 1Indieses Tutorialum eine neue Installations-DVD zu erstellen
Frage 1: Enthält Microsoft mediacreationtool.exe
immer die neuesten (Sicherheits- und optionalen) Updates für Windows 8.1?
Wenn nicht, verwende ich einfach die DVD, die meiner Box-Version beiliegt.
Wenn ja, gibt es bestimmte Updates, die ich ausschließen möchtein Bezug auf die Erfassung von Benutzerdaten.
Frage 2: Wenn ich das von erstellte Installationsmedium verwende mediacreationtool.exe
, kann ich dann selektive KB-Updates deinstallieren?
Ich möchte einen neuen PC erst mit dem Internet verbinden, wenn er über alle Sicherheitsupdates verfügt.
Frage 3: Wo finde ich Update-Rollups, um den Aufwand zu minimieren, die Sicherheit auf den neuesten Stand zu bringen, aber optionale Patches bis Ende 2014, wenn ich weiß, dass Microsoft noch nicht mit der Installation der Vorbereitung für Windows 10 und der Spyware in Windows 8.1 begonnen hat.
Über alle weiteren Ratschläge von Benutzern mit ähnlichen Anliegen würden wir uns freuen.
Antwort1
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.