Microsoft MVPs inside





 MCSEboard.de – IT Pro Forum zu Windows Server 2008 R2 / 2008 / 2003 & Windows 7 / Vista / XP
Registrieren Hilfe Regeln Benutzerliste Suchen Heutige Beiträge Alle Foren als gelesen markieren

Windows 7 Forum


Alles zum Thema Windows 7 — Q & A zu Windows 7 Starter, Home Basic, Home Premium, Professional, Enterprise & Ultimate als x86-32 oder x86-64 Version


Antwort
     
Themen-Optionen
Alt 29.07.2011, 11:06   #1
Newbie
 
Offline
Registriert seit: 07-2011
Beiträge: 3
Windows 7 Verteilung über WDS

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
    Mit Zitat antworten
Alt 29.07.2011, 11:07   #2
Newbie
 
Offline
Registriert seit: 07-2011
Beiträge: 3
So, noch die Antwortdatei
unattend.xml
Code:
<?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>
    Mit Zitat antworten
Alt 29.07.2011, 11:31   #3
Newbie
 
Offline
Registriert seit: 07-2011
Beiträge: 3
Antwortdatei

und noch die für das Image:

ImageUnattend.xml
Code:
<?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>
    Mit Zitat antworten
Antwort


Themen-Optionen


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Keine IP Verteilung über DHCP an Windows 2008 Server in Virtual PC Maverick1 Virtualisierung 3 22.01.2010 10:51
2K3 - MSI Verteilung über GPO - Freigabe auf Fileserver Sebell Windows Server Forum 2 09.12.2009 22:27
Verteilung von Software über Gruppenrichtlinien RunningDuck Active Directory Forum 2 19.06.2007 18:23
[W2K3] Software Verteilung über GPO wie ?!? Gismo79 Windows Server Forum 27 27.06.2006 11:57
Verteilung von Softwarepaketen (MSI) über Terminalserver? cablit Windows Server Forum 2 12.10.2005 13:47


Alle Zeitangaben in MEZ/CET. Es ist jetzt 04:48 Uhr. Seite generiert in 0,029 Sekunden.

- Unsere Partner -

Copyright © 2000 – 2012 MCSEboard.de

Sprung zum Seitenanfang