Windows Core Server minimale GUI installation 0x800f09606
Hallo zusammen,
in diesem Beitrag zeige ich euch wie Ihr auf einem Windows Server 2012 R2 Core Server, die minimale GUI installieren könnt. Leider bekommen wir dabei folgende Fehlermeldung: 0x800f09606.
Als Erstes Starten wir in der CMD-Konsole Powershell
Im nächsten Schritt führen wir folgenden Befehl aus:
- Install-WindowsFeature Server-Gui-Mgmt-Infra
Leider bekommen wir folgende Fehlermeldung (Errorcode: 0x800f09606):
- Add-WindowsFeature : The request to add or remove features on the specified server failed.
Installation of one or more roles, role services, or features failed.
The source files could not be downloaded.
Use the “source” option to specify the location of the files that are required to restore the feature. For more
information on specifying a source location, see http://go.microsoft.com/fwlink/?LinkId=243077. Error: 0x800f0906
At line:1 char:1
+ Add-WindowsFeature Server-Gui-Mgmt-Infra
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (@{Vhd=; Credent…Name=localhost}:PSObject) [Install-WindowsFeature],
Exception
+ FullyQualifiedErrorId : DISMAPI_Error__Cbs_Download_Failure,Microsoft.Windows.ServerManager.Commands.AddWindowsF
eatureCommand - Dieser Error sagt uns, das wir kein Zugriff auf die richtige Install.Wim haben.
Jetzt müssen wir in das “Sources” Verzeichnis vom Installation-Medium wechseln. In unserem Fall liegt dieser unter “X:\Windows Server\Windows Server 2012 R2\Windows 2012 R2\Sources”
Um die richtige Index Nummer von der Install.wim herauszufinden müssen wir folgenden Befehl ausführen.
- Get-WindowsImage -ImagePath “Pfad zur der Install.wim”\install.wim
Wir nutzten in unserem Fall die Index Version 1 Windows Server 2012 R2 SERVERSTANDARDCORE.
Im nächsten Schritt führen wir jetzt unser Befehl Install-Windowsfeature mit der Richtigen Index Nummer aus:
- Install-WindowsFeature -Soruce “Pfad zur der WIM”\install.wim:1 Server-Gui-Mgmt-Infra
Nach Erfolgreichem installieren und einem neu Start des Servers, können Sie den Server-Manager nutzten.
Dieser Artikel wurde (419) mal gelesen
Sharing is Caring