Jump to content

Windows 7 Verteilung über WDS


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Empfohlene Beiträge

Geschrieben

Hallo zusammen,

 

ich möchte über den WDS Windows 7 64Bit Images ausbringen. Bin auch schon sehr weit, nur einige Sachen wollen nicht ganz.

 

Meine Antwortdatei für den PE Bootvorgang funktioniert gar nicht. Keine Sprachauswahl, keine Imageauswahl und keine Partitionen. Ich habe sie unter \RemoteInstall\WdsClientUnattend unter dem Namen unattend.xml abgelegt und im WDS unter den Servereigenschaften->Client bei x64 hinterlegt.

 

 

Die Antwortdatei für das Image selber funktioniert bis auf das Setzen des Computernamen. Ich habe auf dem WDS im AD DS den Wert WXX%03# gesetzt und in der Antwortdatei %MACHINENAME% hinterlegt. Wenn ich die Antwortdatei entferne, legt er den PC richtig an.

 

Ich hoffe ihr könnt mir bei meinen Problemen weiterhelfen.

Vielen Dank!

Stefan

Geschrieben

So, noch die Antwortdatei

unattend.xml

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
   <settings pass="windowsPE">
       <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" 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>
           <UserLocale>de-DE</UserLocale>
       </component>
       <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <DiskConfiguration>
               <Disk wcm:action="add">
                   <CreatePartitions>
                       <CreatePartition wcm:action="add">
                           <Order>1</Order>
                           <Size>50000</Size>
                           <Type>Primary</Type>
                       </CreatePartition>
                       <CreatePartition wcm:action="add">
                           <Extend>true</Extend>
                           <Order>2</Order>
                           <Type>Primary</Type>
                       </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>
                       <ModifyPartition wcm:action="add">
                           <Format>NTFS</Format>
                           <Label>Daten</Label>
                           <Letter>E</Letter>
                           <Order>2</Order>
                           <PartitionID>2</PartitionID>
                       </ModifyPartition>
                   </ModifyPartitions>
                   <DiskID>0</DiskID>
                   <WillWipeDisk>true</WillWipeDisk>
               </Disk>
               <WillShowUI>OnError</WillShowUI>
           </DiskConfiguration>
           <ImageInstall>
               <OSImage>
                   <InstallFrom>
                       <Credentials>
                           <Domain>XYZ</Domain>
                           <Password>password</Password>
                           <Username>admin</Username>
                       </Credentials>
                       <Path>\\server\REMINST\Images\WSS-Images\WIN7-64bitPro.wim</Path>
                   </InstallFrom>
                   <InstallTo>
                       <DiskID>0</DiskID>
                       <PartitionID>1</PartitionID>
                   </InstallTo>
               </OSImage>
           </ImageInstall>
           <EnableFirewall>false</EnableFirewall>
           <EnableNetwork>true</EnableNetwork>
       </component>
   </settings>
   <cpi:offlineImage cpi:source="wim:e:/win7-64bitpro.wim#Windows 7 64Bit Professional sysprep" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

Geschrieben

und noch die für das Image:

 

ImageUnattend.xml

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
   <settings pass="oobeSystem">
       <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <OOBE>
               <HideEULAPage>true</HideEULAPage>
               <NetworkLocation>Work</NetworkLocation>
               <ProtectYourPC>3</ProtectYourPC>
               <SkipMachineOOBE>true</SkipMachineOOBE>
               <SkipUserOOBE>true</SkipUserOOBE>
           </OOBE>
           <AutoLogon>
               <Password>
                   <Value>password</Value>
                   <PlainText>false</PlainText>
               </Password>
               <LogonCount>3</LogonCount>
               <Username>Admin</Username>
               <Enabled>true</Enabled>
           </AutoLogon>
           <TimeZone>%TIMEZONE%</TimeZone>
           <UserAccounts>
               <LocalAccounts>
                   <LocalAccount wcm:action="add">
                       <Password>
                           <Value>password</Value>
                           <PlainText>false</PlainText>
                       </Password>
                       <Group>Administrators</Group>
                       <Name>Admin</Name>
                   </LocalAccount>
               </LocalAccounts>
           </UserAccounts>
       </component>
   </settings>
   <settings pass="specialize">
       <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" 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>
               <JoinDomain>%MACHINEDOMAIN%</JoinDomain>
               <UnsecureJoin>true</UnsecureJoin>
           </Identification>
       </component>
       <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" 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>
           <ProductKey>Key</ProductKey>
           <ShowWindowsLive>false</ShowWindowsLive>
           <TimeZone>%TIMEZONE%</TimeZone>
       </component>
   </settings>
   <cpi:offlineImage cpi:source="wim:e:/win7-64bitpro.wim#Windows 7 64Bit Professional sysprep" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Erstelle ein Benutzerkonto oder melde dich an, um zu kommentieren

Du musst ein Benutzerkonto haben, um einen Kommentar verfassen zu können

Benutzerkonto erstellen

Neues Benutzerkonto für unsere Community erstellen. Es ist einfach!

Neues Benutzerkonto erstellen

Anmelden

Du hast bereits ein Benutzerkonto? Melde dich hier an.

Jetzt anmelden
×
×
  • Neu erstellen...