none
Windows Server 2008 und 2008 R2 unattended Setup RRS feed

  • Allgemeine Diskussion

  • Hallo zusammen

    Ich versuche für Server 2008 und 2008 R2 einen unattended Installation zu erstellen. Ich habe bei beiden Versonen das Problem, dass das Setup beim Screen zur Auswahl des Operating System stehen bleibt. Wenn ich dann zum Beispiel eine 2008 Enterprise Installtion auswähle, läuft das Setup ohne Probleme weiter durch. Hat jemand von Euch eine Ahnung an welchem Parameter ich scheitere?

    Hier das unattended.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>0407:00000807</InputLocale>
                <SystemLocale>de-CH</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>de-CH</UserLocale>
            </component>
        </settings>
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>0407:00000807</InputLocale>
                <SystemLocale>de-CH</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>de-CH</UserLocale>
            </component>
            <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <UserData>
                    <AcceptEula>true</AcceptEula>
                    <FullName>Abteilung</FullName>
                    <Organization>Firma</Organization>
                </UserData>
                <EnableFirewall>false</EnableFirewall>
                <ImageInstall>
                    <OSImage>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                        <InstallToAvailablePartition>true</InstallToAvailablePartition>
                        <WillShowUI>OnError</WillShowUI>
                    </OSImage>
                </ImageInstall>
                <WindowsDeploymentServices>
                    <Login>
                        <Credentials>
                            <Domain>test.ch</Domain>
                            <Password>Passwort</Password>
                            <Username>User</Username>
                        </Credentials>
                    </Login>
                    <ImageSelection>
                        <InstallImage>
                            <Filename>install.wim</Filename>
                            <ImageGroup>Windows Server</ImageGroup>
                            <ImageName>Windows Server 2008 Enterprise</ImageName>
                        </InstallImage>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                    </ImageSelection>
                </WindowsDeploymentServices>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RegisteredOrganization>Firma</RegisteredOrganization>
                <RegisteredOwner>Abteilung</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <ComputerName></ComputerName>
                <TimeZone>W. Europe Standard Time</TimeZone>
            </component>
            <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>0407:00000807</InputLocale>
                <SystemLocale>de-CH</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>de-CH</UserLocale>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim://ds-00352/server$/2008_sp2_32bit/sources/install.wim#Windows Longhorn SERVERENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

     

     

    Vielen Dank und Gruss
    Miguel

    Donnerstag, 10. Juni 2010 16:11

Alle Antworten

  • Hallo Miguel,

    evtl. ist etwas im Log zu erkennen. SHIFT+F10 bei Auswahlsfenster drücken und im X:\Windows\Panther Ordner die Logdateien überprüffen.

    http://support.microsoft.com/kb/936625

    Gruß,
    Andrei

    Montag, 14. Juni 2010 08:57
    Moderator
  • Hallo,

    die Betriebssystemauswahl kann auf unterschiedliche Weise im Responsefile konfiguriert werdne. Du musst deinem Setup mitteilen welche Version installiert werden soll. Im XML File zbp. für Windows Server 2008 R2 Standard den Index 1 mitgeben.

                   <OSImage>
                        <InstallFrom>
                            <MetaData wcm:action="add">
                                <Key>/IMAGE/INDEX</Key>
                                <Value>1</Value>
                            </MetaData>
                        </InstallFrom>
                    </OSImage>

    Welche Betriebssystem Version welchen Index hat kannst du mit der dism.exe herausfinden. (Findest du im WAIK unter Tools)

     

    lg. Florian

     

    Donnerstag, 29. Juli 2010 08:46