Dusti
Lt. Junior Grade
- Registriert
- Aug. 2008
- Beiträge
- 311
Moin zusammen,
ich hab ein Problem mit unserem WDS Server.
Ich habe eine Antwortdatei geschrieben die auch Funktioniert, bis auf einen Punkt.
Und zwar führt er den "synchronouscommand" nicht aus. Ich habs mit IP und mit UNC-Pfad versucht.
Vll. weis einer von euch wo der Fehler ist.
Antwortdatei:
Script:
Gruß
Dusti
ich hab ein Problem mit unserem WDS Server.
Ich habe eine Antwortdatei geschrieben die auch Funktioniert, bis auf einen Punkt.
Und zwar führt er den "synchronouscommand" nicht aus. Ich habs mit IP und mit UNC-Pfad versucht.
Vll. weis einer von euch wo der Fehler ist.
Antwortdatei:
Code:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<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:00000407</InputLocale>
<SystemLocale>de-DE</SystemLocale>
<UILanguage>de-DE</UILanguage>
<UserLocale>de-DE</UserLocale>
</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">
<OEMInformation>
<SupportURL>%SUPPORT-LINK%</SupportURL>
<SupportPhone>%TELNR%</SupportPhone>
<SupportHours>%SUPPORTTIME%</SupportHours>
<Manufacturer>%HERSTELLER%</Manufacturer>
<Logo>C:\Windows\logo.bmp</Logo>
</OEMInformation>
<ComputerName>*</ComputerName>
<TimeZone>W. Europe Standard Time</TimeZone>
</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">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
<AutoLogon>
<Password>
<Value>%PASSWORD%</Value>
<PlainText>false</PlainText>
</Password>
<Enabled>true</Enabled>
<LogonCount>1</LogonCount>
<Username>Administrator</Username>
</AutoLogon>
<UserAccounts>
<AdministratorPassword>
<PlainText>false</PlainText>
<Value>%PASSWORD%</Value>
</AdministratorPassword>
</UserAccounts>
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<CommandLine>\\PXE\reminst\copy.cmd</CommandLine>
<Description>COPY</Description>
<Order>1</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
</FirstLogonCommands>
<Display>
<HorizontalResolution>1024</HorizontalResolution>
<VerticalResolution>768</VerticalResolution>
<RefreshRate>60</RefreshRate>
<DPI>96</DPI>
<ColorDepth>32</ColorDepth>
</Display>
</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>de-DE</UILanguage>
</SetupUILanguage>
<InputLocale>0407:00000407</InputLocale>
<SystemLocale>de-DE</SystemLocale>
<UILanguage>de-DE</UILanguage>
<UserLocale>de-DE</UserLocale>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://vmware-host/shared%20folders/downloads/install.wim#Windows Server 2008 R2 SERVERSTANDARD" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
Script:
Code:
xcopy /e /Y /I \\PXE\REMINST\Install C:\Install
xcopy /e /Y /I \\PXE\REMINST\Install\logo.bmp C:\Windows\
Gruß
Dusti