seelbreaker
Goto Top

WDS - Unattended Join funktioniert nicht

Meine Umgebung:
Win2k8R2 Server mit folgenden Rollen:
AD-Domänendienste
Dateidienste
DHCP
DNS
Druck- und Dokumentendienste
WDS (Transport und Bereitstellung)

Es sollen Windows 7 Images verteilt werden.

Moin face-smile

WDS ist wie folgt konfiguriert:
2. Partition auf dem selben Server welche die Images beeinhaltet.

Servereigenschaften
*PXE Antwort ist so eingestellt, dass allen Clientcomputern geantwortet wird. Rechner sollen in die selbe Domäne wie der Bereitstellungsserver aufgeonmmen werden.
*Benennungsrichtlinie: PC%#

*F12 muss gedrückt werden, damit der PXE-Start fortgesetzt wird.

*WDSClientUnattend.xml ist für die x86-Architektur angegeben und liegt auch im richtigen Ort (ist auch hier angehängt)
*Clientprotokollierung mit allen Informationen ist aktiviert.

*DHCP Port 67 wird nicht abgehört. DHCP-Option 60 wurde durch WDS konfiguriert

*Dynamische Suche nach DC durch WDS ist aktiviert und der Server ist auch im DHCP authorisiert


Folgende Aufgabe soll bewältigt werden:
Ich möchte, dass das Windows 7 - Installationsabbild "Technik" innerhalb unserer Domäne verteilt werden kann, ohne nacharbeiten zu müssen.

Dies sieht folgende Punkte vor:

1. Partitionierung
2. Extrahieren des WIM-Files auf die richtige Partition
3. Computer soll mit unattend Join in die Domäne gebracht werden. Dies soll auch so geschehen, dass das Computerkonto in der richtigen OU landen soll:

OU=Win7,OU=Workstations,DC=Firma,DC=loc

An sich läuft die Installation ohne murren durch und es schaut auch soweit ganz gut aus, allerdings ist nach der ersten Anmeldung der Rechner nicht in der Domäne.

setuperr.log unter C:\Windows\Panther\ hat keinen Eintrag.
lediglich in der setupact.log habe ich folgende Information gefunden:

2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Join Domain = [Y]
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Account Exists = [N]
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Prestage Using MAC = [N]
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Reset Boot Program Path = [N]
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Machine Name = [PC%#]
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Machine Domain = 
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Machine OU = [CN=Computers,DC=Firma,DC=loc]
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Machine Dn = 
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: First Name = 
2010-06-22 17:03:41, Info       [0x0b007b] WDS    DomainJoinInformation: Last Name = 
2010-06-22 17:03:41, Info       [0x0b007d] WDS    ProcessDomainJoinInformation: No special unattend domain join processing will take place.

Habe das ganze Procedere schon gestern 3 mal durch gemacht und immer geschaut wo ich was ändern kann, bin aber mit meinem Latein am Ende...

Die XML-Dateien hier im Code:

WDSClientUnattend.xml
<?xml version="1.0" encoding="utf-8"?>  
<unattend xmlns="urn:schemas-microsoft-com:unattend">  
    <settings pass="windowsPE">  
        <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>
                <ProductKey>
                    <Key>Volumenlizenzkey</Key>
                    <WillShowUI>OnError</WillShowUI>
                </ProductKey>
                <AcceptEula>true</AcceptEula>
                <FullName>Mitarbeiter</FullName>
                <Organization>Firma</Organization>
            </UserData>
            <DiskConfiguration>
                <Disk wcm:action="add">  
                    <CreatePartitions>
                        <CreatePartition wcm:action="add">  
                            <Order>1</Order>
                            <Type>Primary</Type>
                            <Extend>true</Extend>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition wcm:action="add">  
                            <Active>true</Active>
                            <Format>NTFS</Format>
                            <Label>Windows</Label>
                            <Letter>C</Letter>
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                        </ModifyPartition>
                    </ModifyPartitions>
                    <DiskID>0</DiskID>
                    <WillWipeDisk>true</WillWipeDisk>
                </Disk>
                <WillShowUI>OnError</WillShowUI>
            </DiskConfiguration>
            <WindowsDeploymentServices>
                <Login>
                    <Credentials>
                        <Domain>Firma.loc</Domain>
                        <Password>PW</Password>
                        <Username>User</Username>
                    </Credentials>
                </Login>
                <ImageSelection>
                    <InstallImage>
                        <Filename>Win7-MA.wim</Filename>
                        <ImageGroup>Windows 7</ImageGroup>
                        <ImageName>Technik</ImageName>
                    </InstallImage>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>1</PartitionID>
                    </InstallTo>
                </ImageSelection>
            </WindowsDeploymentServices>
            <ImageInstall>
                <OSImage>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>1</PartitionID>
                    </InstallTo>
                </OSImage>
            </ImageInstall>
        </component>
        <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>de-DE</UILanguage>
            </SetupUILanguage>
            <InputLocale>de-DE</InputLocale>
            <SystemLocale>de-DE</SystemLocale>
            <UILanguage>de-DE</UILanguage>
            <UILanguageFallback></UILanguageFallback>
            <UserLocale>de-DE</UserLocale>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim://pc01/windows%207%20-%20wim%20abbilder/aktuell/win7-ma%20-%20kopie.wim#Win7-MA" xmlns:cpi="urn:schemas-microsoft-com:cpi" />  
</unattend>

Unattend.xml
<?xml version="1.0" encoding="utf-8"?>  
<unattend xmlns="urn:schemas-microsoft-com:unattend">  
    <settings pass="specialize">  
        <component name="Microsoft-Windows-UnattendedJoin" 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">  
            <Identification>
                <Credentials>
                    <Domain>Firma.loc</Domain>
                    <Password>PW</Password>
                    <Username>User</Username>
                </Credentials>
                <DebugJoin>true</DebugJoin>
                <JoinDomain>Firma.loc</JoinDomain>
                <MachineObjectOU>OU=Win7,OU=Workstations,DC=Firma,DC=loc</MachineObjectOU>
            </Identification>
        </component>
        <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">  
            <ComputerName>%Machinename%</ComputerName>
            <RegisteredOrganization>Firma</RegisteredOrganization>
            <RegisteredOwner>Mitarbeiter</RegisteredOwner>
        </component>
    </settings>
    <settings pass="oobeSystem">  
        <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">  
            <AutoLogon>
                <Password>
                    <Value>PW==</Value>
                    <PlainText>false</PlainText>
                </Password>
                <Enabled>true</Enabled>
                <LogonCount>1</LogonCount>
                <Username>Administrator</Username>
            </AutoLogon>
            <OOBE>
                <HideEULAPage>false</HideEULAPage>
                <NetworkLocation>Work</NetworkLocation>
                <ProtectYourPC>3</ProtectYourPC>
                <SkipMachineOOBE>true</SkipMachineOOBE>
                <SkipUserOOBE>true</SkipUserOOBE>
            </OOBE>
            <TimeZone>W. Europe Standard Time</TimeZone>
            <RegisteredOrganization>Firma</RegisteredOrganization>
            <RegisteredOwner>Mitarbeiter</RegisteredOwner>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim://pc01/windows%207%20-%20wim%20abbilder/aktuell/win7-ma%20-%20kopie.wim#Win7-MA" xmlns:cpi="urn:schemas-microsoft-com:cpi" />  
</unattend>

Gruß
Seelbreaker

Content-Key: 145454

Url: https://administrator.de/contentid/145454

Printed on: April 16, 2024 at 18:04 o'clock