vinevg
Goto Top

Unattend xml mit kompletter automatisierung für windows 2008r2 x64

Hallo Zusammen,

folgendes Problem bei der Verteilung windows 2008r2 x64 über WDS 2012 mit unattend.xml

im Bereich 7 OOBESystem werden die FirstLogon Commands gar nicht abgearbeitet, obwohl der Rechner in die Domain reinkommt und alles anderes bis dahin abarbeitet. Ich vermute, dass die Fehler dafür in nicht automatische AutoLogin liegt, der nicht ausgeführt wird und deshalb werden die Commands nicht verwendet, nun leider sehe ich diese Fehler in meiner Konfiguration nicht, fehlt jemanden da was ein?

Wäre sehr nett, wenn jemand mir sagen könnte, wo die fehler liegt und wie man die lösen kann.

Ah, ja und noch eins, Computername, die man im Punkt 4 Specialize angibt wird nicht mitübergeben, kann man das auf einfachem Weg lösen?

Gruß

Evgeny

P:S. Anbei ist mein XML Code für die Fehleranalyse

<code type="xml"Quellcode

- <OOBE>
<HideEULAPage>true</HideEULAPage>
<HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
- <UserAccounts>
- <AdministratorPassword>
<Value>MQAyADMANAA1AEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
- <LocalAccounts>
- <LocalAccount wcm:action="add">
- <Password>
<Value>MQAyADMANAA1AFAAYQBzAHMAdwBvAHIAZAA=</Value>
<PlainText>false</PlainText>
</Password>
<Description>Installationsaccount</Description>
<DisplayName>Administrator</DisplayName>
<Group>Administratoren; Hauptbenutzer</Group>
<Name>Administrator</Name>
</LocalAccount>
</LocalAccounts>
- <DomainAccounts>
- <DomainAccountList wcm:action="add">
<Domain>domain.net</Domain>
- <DomainAccount wcm:action="add">
<Group>Administratoren; Hauptbenutzer</Group>
<Name>muster</Name>
</DomainAccount>
</DomainAccountList>
</DomainAccounts>
</UserAccounts>
- <FirstLogonCommands>
- <SynchronousCommand wcm:action="add">
<CommandLine>%windir%\system32\slmgr.vbs -ato</CommandLine>
<Description>OS Aktivierung</Description>
<Order>7</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
- <SynchronousCommand wcm:action="add">
<Order>5</Order>
<Description>Firewall Abschaltung</Description>
<CommandLine>%windir%\system32\netsh advfirewall set allprofiles state off</CommandLine>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
- <SynchronousCommand wcm:action="add">
<CommandLine>%windir%\system32\gpupdate.exe /force</CommandLine>
<Description>Policy</Description>
<Order>6</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
- <SynchronousCommand wcm:action="add">
<CommandLine>net use s: \\servername\install /user:muster 12345</CommandLine>
<Description>Netzlaufwerk erstellen</Description>
<Order>4</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
- <SynchronousCommand wcm:action="add">
<CommandLine>%windir%\regedit.exe add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 0 /f</CommandLine>
<Description>UAC Abschaltung</Description>
<Order>1</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
- <SynchronousCommand wcm:action="add">
<CommandLine>%windir%\regedit.exe add "HKEY_LOCAL_MACHINE\system\currentcontrolset\control\terminal server" /f /v fDenyTSConnections /t REG_DWORD /d 0</CommandLine>
<Description>Remote Desktop Aktivierung</Description>
<Order>2</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
- <SynchronousCommand wcm:action="add">
<CommandLine>%windir%\regedit.exe add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v ShutdownWithoutLogon /t REG_DWORD /d 1 /f</CommandLine>
<Description>Logonout Shutdown</Description>
<Order>3</Order>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
</FirstLogonCommands>
<BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
<DisableAutoDaylightTimeSet>true</DisableAutoDaylightTimeSet>
<DoNotCleanTaskBar>true</DoNotCleanTaskBar>
<RegisteredOrganization>TEST Organisation</RegisteredOrganization>
<RegisteredOwner>OWNER</RegisteredOwner>
<ShowWindowsLive>false</ShowWindowsLive>
<StartPanelOff>false</StartPanelOff>
<TimeZone>Central Standard Time</TimeZone>
- <AutoLogon>
- <Password>
<Value>MQAyADMANAA1AFAAYQBzAHMAdwBvAHIAZAA=</Value>
<PlainText>false</PlainText>
</Password>
<Domain>domain.net</Domain>
<Enabled>true</Enabled>
<LogonCount>5</LogonCount>
<Username>muster</Username>
</AutoLogon>

Content-Key: 205111

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

Printed on: April 25, 2024 at 04:04 o'clock

Member: ollioe
ollioe Sep 02, 2013 at 10:20:23 (UTC)
Goto Top
Gleich zu Anfang gibst du an:
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>

Wie soll dann der OOBE Teil abgearbeitet werden wenn du ihn gleich ausschließt?