Professor Frink Posted April 29, 2008 Posted April 29, 2008 (edited) No matter what I do, I can't get a workstation to join the domain during a Vista unattended install.For the sake of anonymity, we'll call my domain DOMAIN.LCL. The full Active Directory structure for my workstation group looks like this:DOMAIN.LCL --> MAIN --> AAA --> BBB --> WORKSTATIONSI am doing a LTI. During that process I assign a static IP address and a hostname. It has to be a static IP, since we don't have DHCP here. With the option to join a domain during the LTI -- I've tried toggling that on and off, and there's no change.The hostname and IP information I enter during the LTI carries over to the end of the Vista install. It just won't join the domain, and sits in a Workgroup. Here is my Unattend.xml. I know there's a lot of superfluous stuff, but I figured it was best to post the whole thing:<?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="configure"> <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="6.0.6000.16386" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="" /> <selection name="InboxGames" state="true" /> <selection name="Chess" state="true" /> <selection name="FreeCell" state="true" /> <selection name="Hearts" state="true" /> <selection name="Inkball" state="true" /> <selection name="Minesweeper" state="true" /> <selection name="PurblePlace" state="true" /> <selection name="Shanghai" state="true" /> <selection name="Solitaire" state="true" /> <selection name="SpiderSolitaire" state="true" /> </package> </servicing> <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"> <ImageInstall> <OSImage> <WillShowUI>OnError</WillShowUI> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> <InstallFrom> <Path>.\Operating Systems\Windows Vista Business\Sources\install.wim</Path> <MetaData> <Key>/image/index</Key> <Value>1</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <UpgradeData> <Upgrade>false</Upgrade> </UpgradeData> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>1024</VerticalResolution> </Display> <ComplianceCheck> <DisplayReport>OnError</DisplayReport> </ComplianceCheck> <UserData> <AcceptEula>true</AcceptEula> <ProductKey> <Key></Key> </ProductKey> <FullName>MAIN</FullName> <Organization>DOMAIN</Organization> </UserData> <EnableFirewall>false</EnableFirewall> <UseConfigurationSet>true</UseConfigurationSet> </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>en-US</UILanguage> </SetupUILanguage> <InputLocale>0409:00000409</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> </component> </settings> <settings pass="generalize"> <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"> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"> <ProductKey></ProductKey> <RegisteredOrganization>DOMAIN</RegisteredOrganization> <RegisteredOwner>MAIN</RegisteredOwner> <TimeZone>Eastern Standard Time</TimeZone> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <ComputerName>%ComputerName%</ComputerName> </component> <component name="Microsoft-Windows-IE-InternetExplorer" 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"> <Home_Page>http://www.google.com</Home_Page> <IEWelcomeMsg>false</IEWelcomeMsg> </component> <component name="Microsoft-Windows-Deployment" 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"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Description>EnableAdmin</Description> <Order>1</Order> <Path>cmd /c net user Administrator /active:yes</Path> <Credentials> <Domain>DOMAIN.LCL</Domain> <Password>password</Password> <Username>user</Username> </Credentials> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Description>EnableAdmin_ploc</Description> <Order>2</Order> <Path>cmd /c net user Administrator_ploc /active:yes</Path> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Description>UnfilterAdministratorToken</Description> <Order>3</Order> <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f</Path> </RunSynchronousCommand> </RunSynchronous> </component> <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>0409:00000409</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> </component> <component name="Microsoft-Windows-TapiSetup" 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"> <TapiConfigured>0</TapiConfigured> <TapiUnattendLocation> <AreaCode>""</AreaCode> <CountryOrRegion>1</CountryOrRegion> <LongDistanceAccess>9</LongDistanceAccess> <OutsideAccess>9</OutsideAccess> <PulseOrToneDialing>1</PulseOrToneDialing> <DisableCallWaiting>""</DisableCallWaiting> <InternationalCarrierCode>""</InternationalCarrierCode> <LongDistanceCarrierCode>""</LongDistanceCarrierCode> <Name>Default</Name> </TapiUnattendLocation> </component> <component name="Microsoft-Windows-RemoteAssistance-Exe" 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"> <fAllowFullControl>false</fAllowFullControl> <fAllowToGetHelp>false</fAllowToGetHelp> <MaxTicketExpiryUnits>0</MaxTicketExpiryUnits> <MaxTicketExpiry>1</MaxTicketExpiry> </component> <component name="Microsoft-Windows-SystemRestore-Main" 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"> <DisableSR>1</DisableSR> </component> <component name="Networking-MPSSVC-Svc" 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"> <DomainProfile_DisableNotifications>true</DomainProfile_DisableNotifications> <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall> <PrivateProfile_DisableNotifications>true</PrivateProfile_DisableNotifications> <PrivateProfile_EnableFirewall>false</PrivateProfile_EnableFirewall> </component> <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>DOMAIN.LCL</Domain> <Password>password</Password> <Username>user</Username> </Credentials> <JoinDomain>DOMAIN.LCL</JoinDomain> <MachineObjectOU>OU=WORKSTATIONS,OU=BBB,OU=AAA,OU=MAIN,DC=DOMAIN,DC=LCL</MachineObjectOU> </Identification> </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"> <UserAccounts> <AdministratorPassword> <Value>password</Value> <PlainText>false</PlainText> </AdministratorPassword> <LocalAccounts> <LocalAccount wcm:action="add"> <Description>Temp account</Description> <DisplayName>Temp account</DisplayName> <Group>Administrators</Group> <Name>TempAccount</Name> </LocalAccount> <LocalAccount wcm:action="add"> <Description>Temporary</Description> <DisplayName>Temporary</DisplayName> <Group>Administrators</Group> <Name>Temporary</Name> </LocalAccount> </LocalAccounts> <DomainAccounts> <DomainAccountList wcm:action="add"> <DomainAccount wcm:action="add"> <Group>PowerUsers</Group> <Name>Domain Users</Name> </DomainAccount> <DomainAccount wcm:action="add"> <Group>Administrators</Group> <Name>Domain Admins</Name> </DomainAccount> <Domain>DOMAIN.LCL</Domain> </DomainAccountList> </DomainAccounts> </UserAccounts> <AutoLogon> <Enabled>true</Enabled> <Username>Administrator</Username> <Domain>.</Domain> <Password> <Value>password</Value> <PlainText>false</PlainText> </Password> <LogonCount>999</LogonCount> </AutoLogon> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>1024</VerticalResolution> <DPI>96</DPI> </Display> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cscript.exe %SystemDrive%\MININT\Scripts\LiteTouch.wsf /start</CommandLine> <Description>Lite Touch new OS</Description> <Order>1</Order> </SynchronousCommand> </FirstLogonCommands> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> <SkipMachineOOBE>true</SkipMachineOOBE> </OOBE> <RegisteredOrganization>DOMAIN</RegisteredOrganization> <RegisteredOwner>MAIN</RegisteredOwner> <TimeZone>Eastern Standard Time</TimeZone> <ShowWindowsLive>false</ShowWindowsLive> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowWindowsMail>false</ShowWindowsMail> </WindowsFeatures> </component> <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>0409:00000409</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> </component> <component name="Microsoft-Windows-Sidebar" 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"> <Gadget1>%PROGRAMFILES%\windows sidebar\gadgets\Clock.Gadget,true</Gadget1> <Gadget2>%PROGRAMFILES%\windows sidebar\gadgets\Calendar.gadget,true</Gadget2> <Gadget3>%PROGRAMFILES%\windows sidebar\gadgets\Weather.Gadget,true</Gadget3> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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"> <DriverPaths> <PathAndCredentials wcm:keyValue="c7df05fc" wcm:action="add"> <Path>C:\Windows\Drivers</Path> </PathAndCredentials> </DriverPaths> </component> </settings> <cpi:offlineImage cpi:source="catalog://server/distribution$/operating systems/windows vista business/sources/install_windows vista business.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend>I read somewhere that it helps to create a local dummy account with admin rights, so I did that. I created a local user account called "Temporary" and put it in the administrators group, plus added the default user account to the administrators group.I've tried adjusting the syntax of "MachineObjectOU", in case I'm doing it wrong. But the hostname I'm using is already pre-staged in Active Directory, so I would think that it wouldn't matter. I never specified the OU path with XP, and it always worked (it was the same situation, where I was joining the domain with a hostname that was already pre-staged in AD). And just to be sure, I've also tried doing it with the hostname deleted from AD -- no change.Here are the two main files used to create my LTI bootdisk:Bootstrap.ini[Settings]Priority=DefaultProperties=MyCustomProperty[Default]OSInstall=YScanStateArgs=/v:5 /o /cLoadStateArgs=/v:5 /c /lac /laeUserDataLocation=NONEDeploymentType=NEWCOMPUTERSkipDomainMembership=NOJoinDomain=DOMAIN.LCLMachineObjectOU=OU=WORKSTATIONS,OU=BBB,OU=AAA,OU=MAIN,DC=DOMAIN,DC=LCLDomainAdmin=userDomainAdminDomain=DOMAIN.LCLDomainAdminPassword=passwordUDShare=\\server\Distribution$UDDir=%ComputerName%SkipAppsOnUpgrade=YESSkipCapture=YESSkipAdminPassword=YESSkipProductKey=YESSkipBDDWelcome=YESSkipUserData=YesSkipCompterBackup=YESSkipComputerName=NOSkipTimeZone=YesSkipLocaleSelection=YESTimeZoneName=Eastern Standard TimeUILanguage=en-USInputLocale=en-USSystemLocale=en-USUserLocale=en-USKeyboardLocale=en-USUserID=userUserDomain=DOMAIN.LCLUserPassword=passwordSkipBitLocker=YesI've even tried doing the domain join during LTI and completely removing "MachineObjectOU" from Unattend.xml. Still no change. Edited May 1, 2008 by Professor Frink
Professor Frink Posted May 1, 2008 Author Posted May 1, 2008 (edited) Here are the two error logs from C:\Windows\Panther\UnattendGCsetupact.log2008-05-01 12:15:18, Info [windeploy.exe] ------------------------------------------------2008-05-01 12:15:18, Info [windeploy.exe] WinDeploy.exe launched with command-line []...2008-05-01 12:15:18, Info [windeploy.exe] Setup has not completed, adding pending reboot.2008-05-01 12:15:18, Info [windeploy.exe] UnattendSearchExplicitPath: Found unattend file at [C:\Windows\Panther\unattend.xml]; examining for applicability.2008-05-01 12:15:18, Info [windeploy.exe] UnattendSearchExplicitPath: Found usable unattend file for pass [oobeSystem] at [C:\Windows\Panther\unattend.xml].2008-05-01 12:15:19, Info [windeploy.exe] Found unattend file: [C:\Windows\Panther\unattend.xml]2008-05-01 12:15:19, Info [windeploy.exe] Found generalization state [0x4], setup.exe completion flag [False] --> launching setup.exe.2008-05-01 12:15:19, Info [windeploy.exe] Launching [C:\Windows\system32\oobe\setup.exe]...2008-05-01 12:18:02, Info [MuiUnattend.exe] Starting MuiUnattend.exe GC2008-05-01 12:18:02, Info [MuiUnattend.exe] muiunattend is called with pass: specialize2008-05-01 12:18:02, Info [MuiUnattend.exe] Found unattend setting "UILanguage" with value: "en-US".2008-05-01 12:18:02, Info [MuiUnattend.exe] Unattended setting "UILanguageFallback" could not be found (2). Ignoring.2008-05-01 12:18:02, Info [MuiUnattend.exe] Found unattend setting "Systemlocale" with value: "en-US".2008-05-01 12:18:02, Info [MuiUnattend.exe] Found unattend setting "UserLocale" with value: "en-US".2008-05-01 12:18:02, Info [MuiUnattend.exe] Found unattend setting "InputLocale" with value: "0409:00000409".2008-05-01 12:18:02, Info [MuiUnattend.exe] Setting UILanguage setting.2008-05-01 12:18:02, Info [MuiUnattend.exe] Setting UILanguage setting to en-US succeded.2008-05-01 12:18:03, Info [MuiUnattend.exe] Setting system locale using unattended setting SystemLocale:"en-US".2008-05-01 12:18:03, Info [MuiUnattend.exe] Set system locale to "en-US" successfully.2008-05-01 12:18:03, Info [MuiUnattend.exe] Setting input locale using unattended setting InputLocale:"0409:00000409" and apply the same setting to default user accont/system accounts/new user account.2008-05-01 12:18:04, Info [MuiUnattend.exe] Set input locale to "0409:00000409" and apply the same setting to default user accont/system accounts/new user account successfully.2008-05-01 12:18:04, Info [MuiUnattend.exe] Setting user locale to using unattended setting UserLocale:"en-US", and try apply the same settings to default user accont/system accounts/new user account.2008-05-01 12:18:04, Info [MuiUnattend.exe] Succeed in setting current user locale to "en-US".2008-05-01 12:18:04, Info [MuiUnattend.exe] Succeed in setting location to 244.2008-05-01 12:18:05, Info [MuiUnattend.exe] Succeed in copying settings for current user locale "en-US" to default user/system/new user accounts.2008-05-01 12:18:05, Info [MuiUnattend.exe] Set user locale to "en-US" successfully and apply the same settings to default user acconts/system account/new user account.2008-05-01 12:18:05, Info [MuiUnattend.exe] Exiting MuiUnattend.exe GC2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: unattend DNS settings starts ... 2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Transition to context 2 accepted for key 'Interfaces'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Transition to context 3 accepted for key 'Local Area Connection'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: UnattendSetRegValue sets the value 'RegistrationEnabled'[REG_DWORD]=0 at registry key 'System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{93F5A9A0-97C2-4833-A5E5-C775F6CE0ADF}'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Consumer 4 accepted the value named 'DisableDynamicUpdate' (under 'Local Area Connection').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: UnattendSetRegValue sets the value 'RegisterAdapterName'[REG_DWORD]=1 at registry key 'System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{93F5A9A0-97C2-4833-A5E5-C775F6CE0ADF}'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Consumer 5 accepted the value named 'EnableAdapterDomainNameRegistration' (under 'Local Area Connection').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: UnattendSetRegValue sets the value 'Domain'[REG_SZ]='DOMAIN.LCL' at registry key 'System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{93F5A9A0-97C2-4833-A5E5-C775F6CE0ADF}'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Consumer 2 accepted the value named 'DNSDomain' (under 'Local Area Connection').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Transition to context 4 accepted for key 'DNSServerSearchOrder'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Consumer 0 accepted the value named '2' (under 'DNSServerSearchOrder').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: UnattendSetRegValue sets the value 'NameServer'[REG_SZ]='xxx.xxx.xxx.xxx' at registry key 'System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{93F5A9A0-97C2-4833-A5E5-C775F6CE0ADF}'.2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Returning from context 4 ('DNSServerSearchOrder') to context 3 ('Local Area Connection').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Returning from context 3 ('Local Area Connection') to context 2 ('Interfaces').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: Returning from context 2 ('Interfaces') to context 1 ('Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\DnsCache').2008-05-01 12:18:06, Info [dnscacheugc.exe] DNSCACHE: unattend DNS settings ends: 0x0.2008-05-01 12:18:06, Info [Shell Unattend] Running 'specialize' pass2008-05-01 12:18:06, Info [Shell Unattend] ComputerName set to TEST 2008-05-01 15:18:06, Info [Shell Unattend] TimeZone: Time zone set to 'Eastern Standard Time' 2008-05-01 15:18:06, Info [Shell Unattend] Exiting 'specialize' pass with status 0x001f10002008-05-01 15:18:06, Info [netbtugc.exe] NetBT: Identified friendly name: Local Area Connection2008-05-01 15:18:06, Info [netbtugc.exe] NetBT: LUID for interface 'Local Area Connection' (number 1 of 1): NetLuidIndex = 0x000004 IfType = 0x0000 2008-05-01 15:18:06, Info [netbtugc.exe] NetBT: settings key = Tcpip_{93F5A9A0-97C2-4833-A5E5-C775F6CE0ADF} (interface Local Area Connection, 1 of 1)2008-05-01 15:18:06, Info [netbtugc.exe] NetBT: found NameServer with ID = 2: xxx.xxx.xxx.xxx2008-05-01 15:18:06, Info [netbtugc.exe] NetBT: Normalizing IP address: xxx.xxx.xxx.xxx2008-05-01 15:18:06, Info [netbtugc.exe] NetBT: Successfully Normalized IP address: xxx.xxx.xxx.xxx2008-05-01 15:18:06, Info [netbtugc.exe] NetBT: Adding address xxx.xxx.xxx.xxx to NameServerList2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Begin2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Loading input parameters...2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: UnsecureJoin = [NULL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: MachinePassword = [secret not logged]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: JoinDomain = [DOMAIN.LCL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: JoinWorkgroup = [NULL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Domain = [DOMAIN.LCL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Username = [user]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Password = [secret not logged]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: MachineObjectOU = [OU=WORKSTATIONS,OU=BBB,OU=AAA,OU=MAIN,DC=DOMAIN,DC=LCL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: DebugJoin = [NULL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: DebugJoinOnlyOnThisError = [NULL]2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Checking that auto start services have started.2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Joining domain [DOMAIN.LCL]...2008-05-01 15:18:06, Info [unattendedjoin.exe] Unattended Join: Calling DsGetDcName for DOMAIN.LCL...2008-05-01 15:18:09, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:18:16, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:18:23, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:18:31, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:18:38, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:18:45, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:18:52, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:00, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:07, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:14, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:22, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:29, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:36, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:44, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:51, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:19:58, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:05, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:13, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:20, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:27, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:35, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:42, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:49, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:20:57, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:04, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:11, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:19, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:26, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:33, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:40, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:48, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:21:55, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:02, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:10, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:17, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:24, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:32, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:39, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:46, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:22:53, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:01, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:08, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:15, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:23, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:30, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:37, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:45, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:52, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:23:59, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:06, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:14, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:21, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:28, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:36, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:43, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:50, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:24:58, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:25:05, Warning [unattendedjoin.exe] Unattended Join: DsGetDcName failed: 0x54b, last error is 0x232b, will retry in 5 seconds...2008-05-01 15:25:10, Error [unattendedjoin.exe] Unattended Join: NetJoinDomain failed error code is [1355]2008-05-01 15:25:10, Error [unattendedjoin.exe] Unattended Join: Unable to join; gdwError = 0x54b2008-05-01 15:25:10, Info [unattendedjoin.exe] Unattended Join: Exit, returning 0x02008-05-01 15:25:10, Info [setupugc.exe] SetupUGC launched with command line [specialize]2008-05-01 15:25:10, Info [setupugc.exe] SetupUGC running to process unattend settings for pass [specialize]2008-05-01 15:25:10, Info [setupugc.exe] Processing any RunSynchronous setting...2008-05-01 15:25:10, Info [setupugc.exe] Running commands is not yet in progress2008-05-01 15:25:10, Info [0x090008] PANTHR CBlackboard::Open: C:\Windows\panther\commandexec\CommandExec succeeded.2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: description = [EnableAdmin]2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: credentials = { domain is specified, username is specified, password info not logged }2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: will continue execution without examining exit code2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: path = [cmd /c net user Administrator /active:yes]2008-05-01 15:25:10, Info [setupugc.exe] Found RunSynchronous command: [cmd /c net user Administrator /active:yes]2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: description = [EnableAdmin_ploc]2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: credentials = { domain is not specified, username is not specified, password info not logged }2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: will continue execution without examining exit code2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: path = [cmd /c net user Administrator_ploc /active:yes]2008-05-01 15:25:10, Info [setupugc.exe] Found RunSynchronous command: [cmd /c net user Administrator_ploc /active:yes]2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: description = [UnfilterAdministratorToken]2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: credentials = { domain is not specified, username is not specified, password info not logged }2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: will continue execution without examining exit code2008-05-01 15:25:10, Info [setupugc.exe] Found run command in registry: path = [cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f]2008-05-01 15:25:10, Info [setupugc.exe] Found RunSynchronous command: [cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f]2008-05-01 15:25:10, Info [setupugc.exe] Finished executing [cmd /c net user Administrator /active:yes] synchronously2008-05-01 15:25:10, Info [setupugc.exe] Process returned with exit code 0x02008-05-01 15:25:11, Info [setupugc.exe] Finished executing [cmd /c net user Administrator_ploc /active:yes] synchronously2008-05-01 15:25:11, Info [setupugc.exe] Process returned with exit code 0x22008-05-01 15:25:11, Info [setupugc.exe] Finished executing [cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f] synchronously2008-05-01 15:25:11, Info [setupugc.exe] Process returned with exit code 0x02008-05-01 15:25:11, Info [0x090009] PANTHR CBlackboard::Close: c:\windows\panther\commandexec\commandexec.2008-05-01 15:25:11, Info [setupugc.exe] Processing any RunAsynchronous setting...2008-05-01 15:25:11, Info [setupugc.exe] Running commands is not yet in progress2008-05-01 15:25:11, Info [0x090008] PANTHR CBlackboard::Open: C:\Windows\panther\commandexec\CommandExec succeeded.2008-05-01 15:25:11, Info [0x090009] PANTHR CBlackboard::Close: c:\windows\panther\commandexec\commandexec.2008-05-01 15:25:11, Info [setupugc.exe] Processing ExtendOSPartition setting (if present)...2008-05-01 15:25:11, Info [setupugc.exe] SetupUGC returning with exit code [0]2008-05-01 15:25:13, Info [windeploy.exe] Process exited with exit code [0x0]2008-05-01 15:25:13, Info [windeploy.exe] Found completion flag [True], reboot requested flag [True] --> rebooting computer before proceeding with deployment...2008-05-01 15:25:13, Info [windeploy.exe] Making sure that SystemSetupInProgress is cleared.2008-05-01 15:25:13, Info [windeploy.exe] An immediate reboot or shutdown was requested/required... rebooting / shutting down computer2008-05-01 15:25:13, Info [windeploy.exe] Flushing registry to disk...2008-05-01 15:25:13, Info [windeploy.exe] Flush took 406 ms.2008-05-01 15:25:13, Info [windeploy.exe] WinDeploy.exe exiting with code [0x0]2008-05-01 15:26:55, Info [windeploy.exe] ------------------------------------------------2008-05-01 15:26:55, Info [windeploy.exe] WinDeploy.exe launched with command-line []...2008-05-01 15:26:55, Info [windeploy.exe] UnattendSearchExplicitPath: Found unattend file at [C:\Windows\Panther\unattend.xml]; examining for applicability.2008-05-01 15:26:55, Info [windeploy.exe] UnattendSearchExplicitPath: Found usable unattend file for pass [oobeSystem] at [C:\Windows\Panther\unattend.xml].2008-05-01 15:26:56, Info [windeploy.exe] Found unattend file: [C:\Windows\Panther\unattend.xml]2008-05-01 15:26:56, Info [windeploy.exe] Updating pass status for [specialize] to reflect reboot: 0x8 --> 0x92008-05-01 15:26:56, Info [windeploy.exe] Making sure that SystemSetupInProgress is cleared.2008-05-01 15:26:56, Info [windeploy.exe] This is supposed to be an OOBE boot; checking for <Reseal> setting override in unattend file [C:\Windows\Panther\unattend.xml]...2008-05-01 15:26:56, Info [windeploy.exe] Launching [C:\Windows\system32\oobe\oobeldr.exe /system]...2008-05-01 15:26:56, Info [oobeldr.exe] OOBELdr.exe launched with command-line [/system]...2008-05-01 15:26:56, Info [oobeldr.exe] OrchestrateUpdateImageState: Updating image state from [IMAGE_STATE_SPECIALIZE_RESEAL_TO_OOBE] --> [IMAGE_STATE_UNDEPLOYABLE]2008-05-01 15:26:56, Info [oobeldr.exe] Parsing command line arguments...2008-05-01 15:26:56, Info [oobeldr.exe] Parsing the following command line: [/system]2008-05-01 15:26:56, Info [oobeldr.exe] Status for unattend pass [oobeSystem] = 0x02008-05-01 15:26:56, Info [oobeldr.exe] UnattendSearchExplicitPath: Found unattend file at [C:\Windows\Panther\unattend.xml]; examining for applicability.2008-05-01 15:26:56, Info [oobeldr.exe] UnattendSearchExplicitPath: Found usable unattend file for pass [oobeSystem] at [C:\Windows\Panther\unattend.xml].2008-05-01 15:26:56, Info [oobeldr.exe] Running oobeSystem pass with discovered unattend file [C:\Windows\Panther\unattend.xml]...2008-05-01 15:26:56, Info [oobeldr.exe] Caching copy of unattend file: [C:\Windows\Panther\unattend.xml] -- cached at --> [C:\Windows\panther\unattend.xml]2008-05-01 15:26:56, Info [oobeldr.exe] Source and destination paths are identical; skipping file copy.2008-05-01 15:26:56, Info [oobeldr.exe] Cached unattend file, returned: [%windir%\panther\unattend.xml]2008-05-01 15:26:56, Info [oobeldr.exe] Current pass status for [oobeSystem] is [0x0]2008-05-01 15:26:56, Info [oobeldr.exe] Applying data-only settings overrides using SMI...2008-05-01 15:26:57, Info CSI 00000001@2008/5/1:19:26:57.285 WcpInitialize (wcp.dll version 0.0.0.5) called (stack @0x74b1f745 @0x74f674d3 @0x74f791b7 @0x74f54444 @0x74f53fd9 @0xdc72cd)2008-05-01 15:26:57, Info [oobeldr.exe] Successfully applied data-only settings overrides.2008-05-01 15:26:57, Info [oobeldr.exe] Calling into RunSMIActionPass to execute unattend GCs for pass [oobeSystem]2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : GenerateActionQueue begin2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : Processing pass = oobeSystem2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : Generating queue file to C:\Windows\panther\actionqueue\oobeSystem.uaq2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : Identity 0: Microsoft-Windows-International-Core, Culture=neutral, Version=6.0.6000.16386, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=x86, versionScope=NonSxS2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : Identity 1: Microsoft-Windows-Sidebar, Culture=neutral, Version=6.0.6000.16386, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=x86, versionScope=NonSxS2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : Identity 2: Microsoft-Windows-Shell-Setup, Culture=neutral, Version=6.0.6000.16386, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=x86, versionScope=NonSxS2008-05-01 15:26:57, Info [oobeldr.exe] [Action Queue] : Using component order file C:\Windows\winsxs\x86_microsoft-windows-servicingstack_31bf3856ad364e35_6.0.6000.16386_none_07289f4cca5f6990\GlobalInstallOrder.xml2008-05-01 15:26:57, Info CSI 00000001@2008/5/1:19:26:57.550 WcpInitialize (wcp.dll version 0.0.0.5) called (stack @0x74b1f745 @0x751acd42 @0x751acdf2 @0x751ac239 @0x751acb40 @0xdc71d7)2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Found manifest file C:\Windows\Winsxs\Manifests\x86_microsoft-windows-international-core_31bf3856ad364e35_6.0.6000.16386_none_e773a28cdcd5ef62.manifest2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Found manifest file C:\Windows\Winsxs\Manifests\x86_microsoft-windows-shell-setup_31bf3856ad364e35_6.0.6000.16386_none_d02410afecb51dc8.manifest2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Found manifest file C:\Windows\Winsxs\Manifests\x86_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6000.16386_none_cca5e9c129bd0a02.manifest2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : GenerateActionQueue finish (hr = 0x0)2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : ProcessActionQueue start2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : ProcessActionQueue using queue file C:\Windows\panther\actionqueue\oobeSystem.uaq2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Command Line = MuiUnattend.exe / arguments = / pass = oobeSystem / manifest path = C:\Windows\Winsxs\Manifests\x86_microsoft-windows-international-core_31bf3856ad364e35_6.0.6000.16386_none_e773a28cdcd5ef62.manifest2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Command Line = rundll32.exe / arguments = shsetup.dll,SHUnattendedSetup / pass = oobeSystem / manifest path = C:\Windows\Winsxs\Manifests\x86_microsoft-windows-shell-setup_31bf3856ad364e35_6.0.6000.16386_none_d02410afecb51dc8.manifest2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Command Line = SBUnattend.exe / arguments = oobeSystem / pass = oobeSystem / manifest path = C:\Windows\Winsxs\Manifests\x86_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6000.16386_none_cca5e9c129bd0a02.manifest2008-05-01 15:26:58, Info [oobeldr.exe] [Action Queue] : Executing command "MuiUnattend.exe" oobeSystem2008-05-01 15:26:58, Info [MuiUnattend.exe] Starting MuiUnattend.exe GC2008-05-01 15:26:58, Info [MuiUnattend.exe] muiunattend is called with pass: oobeSystem2008-05-01 15:26:58, Info [MuiUnattend.exe] Found unattend setting "UILanguage" with value: "en-US".2008-05-01 15:26:58, Info [MuiUnattend.exe] Unattended setting "UILanguageFallback" could not be found (2). Ignoring.2008-05-01 15:26:58, Info [MuiUnattend.exe] Found unattend setting "Systemlocale" with value: "en-US".2008-05-01 15:26:58, Info [MuiUnattend.exe] Found unattend setting "UserLocale" with value: "en-US".2008-05-01 15:26:58, Info [MuiUnattend.exe] Found unattend setting "InputLocale" with value: "0409:00000409".2008-05-01 15:26:58, Info [MuiUnattend.exe] Setting UILanguage setting.2008-05-01 15:26:58, Info [MuiUnattend.exe] Setting UILanguage setting to en-US succeded.2008-05-01 15:26:59, Info [MuiUnattend.exe] Setting system locale using unattended setting SystemLocale:"en-US".2008-05-01 15:26:59, Info [MuiUnattend.exe] Set system locale to "en-US" successfully.2008-05-01 15:26:59, Info [MuiUnattend.exe] Setting input locale using unattended setting InputLocale:"0409:00000409" and apply the same setting to default user accont/system accounts/new user account.2008-05-01 15:27:00, Info [MuiUnattend.exe] Set input locale to "0409:00000409" and apply the same setting to default user accont/system accounts/new user account successfully.2008-05-01 15:27:00, Info [MuiUnattend.exe] Setting user locale to using unattended setting UserLocale:"en-US", and try apply the same settings to default user accont/system accounts/new user account.2008-05-01 15:27:00, Info [MuiUnattend.exe] Succeed in setting current user locale to "en-US".2008-05-01 15:27:00, Info [MuiUnattend.exe] Succeed in setting location to 244.2008-05-01 15:27:01, Info [MuiUnattend.exe] Succeed in copying settings for current user locale "en-US" to default user/system/new user accounts.2008-05-01 15:27:01, Info [MuiUnattend.exe] Set user locale to "en-US" successfully and apply the same settings to default user acconts/system account/new user account.2008-05-01 15:27:01, Info [MuiUnattend.exe] Setting OOBE handshake information succeeded.2008-05-01 15:27:01, Info [MuiUnattend.exe] Exiting MuiUnattend.exe GC2008-05-01 15:27:01, Info [oobeldr.exe] [Action Queue] : process exit code = 02008-05-01 15:27:01, Info [oobeldr.exe] [Action Queue] : Unattend action returned operation complete.2008-05-01 15:27:01, Info [oobeldr.exe] [Action Queue] : Executing command "rundll32.exe" shsetup.dll,SHUnattendedSetup oobeSystem2008-05-01 15:27:01, Info [Shell Unattend] Running 'oobeSystem' pass2008-05-01 15:27:01, Info [Shell Unattend] WindowsFeatures: Launched '"C:\Program Files\Windows Mail\WinMail.exe" OCInstallHideOE' 2008-05-01 15:27:02, Info [Shell Unattend] Display: Requested Display Settings [1280 x 1024, 32 bpp, 60 hz]2008-05-01 15:27:02, Info [Shell Unattend] Display: Found video mode match! Trying to change to it...2008-05-01 15:27:02, Info [Shell Unattend] Display: Succesfully changed to requested display mode2008-05-01 15:27:02, Info [Shell Unattend] Display: Requested 96 DPI2008-05-01 15:27:02, Info [Shell Unattend] Display: DPI set to 962008-05-01 15:27:02, Info [Shell Unattend] LogonCommands: Set command 'cscript.exe %SystemDrive%\MININT\Scripts\LiteTouch.wsf /start' 2008-05-01 15:27:02, Info [Shell Unattend] TimeZone: Time zone set to 'Eastern Standard Time' 2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: created account 'TempAccount'2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: added 'TempAccount' to group 'Users'2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: added 'TempAccount' to group 'Administrators'2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: created account 'Temporary'2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: added 'Temporary' to group 'Users'2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: added 'Temporary' to group 'Administrators'2008-05-01 15:27:02, Warning [Shell Unattend] UserAccounts: failed to add 'DOMAIN.LCL\Domain Users' to group 'Power Users' (0x8007056b) 2008-05-01 15:27:02, Warning [Shell Unattend] UserAccounts: failed to add 'DOMAIN.LCL\Admins' to group 'Administrators' (0x8007056b) 2008-05-01 15:27:02, Info [Shell Unattend] Decoded password2008-05-01 15:27:02, Info [Shell Unattend] UserAccounts: Password set for 'Administrator' 2008-05-01 15:27:02, Info [Shell Unattend] Decoded password2008-05-01 15:27:03, Info [Shell Unattend] AutoLogon Password saved2008-05-01 15:27:03, Info [Shell Unattend] AutoLogon Domain is '.'2008-05-01 15:27:03, Info [Shell Unattend] WinLogon DefaultDomainName set to '.'2008-05-01 15:27:03, Info [Shell Unattend] AutoLogon Username is 'Administrator'2008-05-01 15:27:03, Info [Shell Unattend] AutoLogon: Using SID for 'Administrator'2008-05-01 15:27:03, Info [Shell Unattend] WinLogon DefaultUserName set to 'S-1-5-21-3338639310-2462833754-2656414223-500'2008-05-01 15:27:03, Info [Shell Unattend] AutoLogon LogonCount = 9992008-05-01 15:27:03, Info [Shell Unattend] WinLogon AutoLogonCount set2008-05-01 15:27:03, Info [Shell Unattend] AutoLogon enabled2008-05-01 15:27:03, Info [Shell Unattend] VisualEffects: FontSmoothing set to 'ClearType' 2008-05-01 15:27:03, Info [Shell Unattend] Exiting 'oobeSystem' pass with status 0x001f10002008-05-01 15:27:03, Info [oobeldr.exe] [Action Queue] : process exit code = 12008-05-01 15:27:03, Info [oobeldr.exe] [Action Queue] : Unattend action requested delayed reboot.2008-05-01 15:27:03, Info [oobeldr.exe] [Action Queue] : Executing command "SBUnattend.exe" oobeSystem oobeSystem2008-05-01 15:27:03, Info [oobeldr.exe] [Action Queue] : process exit code = 02008-05-01 15:27:03, Info [oobeldr.exe] [Action Queue] : Unattend action returned operation complete.2008-05-01 15:27:03, Info [oobeldr.exe] [Action Queue] : ProcessActionQueue finish (hr = 0x1f1000)2008-05-01 15:27:03, Info [oobeldr.exe] One or more unattend GCs requested a delayed reboot; we will reboot the computer2008-05-01 15:27:03, Info [oobeldr.exe] Successfully completed RunSMIPass for oobeSystem.2008-05-01 15:27:03, Info [oobeldr.exe] A reboot has been requested for oobeSystem unattend.2008-05-01 15:27:03, Info [oobeldr.exe] Successfully ran oobeSystem pass.2008-05-01 15:27:03, Info [oobeldr.exe] OOBELdr.exe exiting with code [0xbc2]...2008-05-01 15:27:03, Info [windeploy.exe] Process exited with exit code [0xbc2]2008-05-01 15:27:03, Info [windeploy.exe] An immediate reboot or shutdown was requested/required... rebooting / shutting down computer2008-05-01 15:27:03, Info [windeploy.exe] Flushing registry to disk...2008-05-01 15:27:04, Info [windeploy.exe] Flush took 1030 ms.2008-05-01 15:27:04, Info [windeploy.exe] WinDeploy.exe exiting with code [0x0]2008-05-01 15:28:06, Info [windeploy.exe] ------------------------------------------------2008-05-01 15:28:06, Info [windeploy.exe] WinDeploy.exe launched with command-line []...2008-05-01 15:28:06, Info [windeploy.exe] UnattendSearchExplicitPath: Found unattend file at [C:\Windows\Panther\unattend.xml]; examining for applicability.2008-05-01 15:28:06, Info [windeploy.exe] UnattendSearchExplicitPath: Found already-processed unattend file for pass [oobeSystem] at [C:\Windows\Panther\unattend.xml]; skipping...2008-05-01 15:28:06, Info [windeploy.exe] UnattendSearchExplicitPath: [C:\Windows\Panther\unattend.xml] does not meet criteria to be used for this unattend pass.2008-05-01 15:28:07, Info [windeploy.exe] Found no unattend file.2008-05-01 15:28:07, Info [windeploy.exe] Making sure that SystemSetupInProgress is cleared.2008-05-01 15:28:07, Info [windeploy.exe] Launching [C:\Windows\system32\oobe\oobeldr.exe /system]...2008-05-01 15:28:07, Info [oobeldr.exe] OOBELdr.exe launched with command-line [/system]...2008-05-01 15:28:07, Info [oobeldr.exe] Parsing command line arguments...2008-05-01 15:28:07, Info [oobeldr.exe] Parsing the following command line: [/system]2008-05-01 15:28:07, Info [oobeldr.exe] Updating pass status for [oobeSystem] to reflect reboot: 0x8 --> 0x92008-05-01 15:28:07, Info [oobeldr.exe] No reboot has been requested for oobeSystem unattend.2008-05-01 15:28:07, Info [oobeldr.exe] Successfully ran oobeSystem pass.2008-05-01 15:28:07, Info [oobeldr.exe] Launching [C:\Windows\system32\oobe\msoobe.exe]...2008-05-01 15:28:08, Info [msoobe.exe] Starting service slsvc2008-05-01 15:28:09, Info [msoobe.exe] Service slsvc reports as running2008-05-01 15:28:09, Info [msoobe.exe] Found SkipMachineOOBE value [value=0x1]2008-05-01 15:28:09, Info [msoobe.exe] Running mandatory tasks2008-05-01 15:28:15, Info [msoobe.exe] Successfully installed product key2008-05-01 15:28:15, Info [msoobe.exe] Successfully signalled event to start up services2008-05-01 15:28:15, Info [msoobe.exe] Configuring service netprofm for auto start2008-05-01 15:29:07, Info [msoobe.exe] Successfully changed configuration for service netprofm2008-05-01 15:29:07, Info [msoobe.exe] Successfully verified and committed UI language settings2008-05-01 15:29:07, Info [msoobe.exe] Starting service netprofm2008-05-01 15:29:08, Info [msoobe.exe] Service netprofm reports as running2008-05-01 15:29:10, Info [msoobe.exe] Successfully notified UI language change2008-05-01 15:29:13, Info [msoobe.exe] Successfully removed administrator profile2008-05-01 15:29:13, Info [msoobe.exe] Exiting mandatory tasks... [0x0]2008-05-01 15:29:13, Info [msoobe.exe] Running WinSAT2008-05-01 15:32:02, Info [msoobe.exe] Exiting... [0x0]2008-05-01 15:32:02, Info [oobeldr.exe] OrchestrateUpdateImageState: Updating image state from [IMAGE_STATE_UNDEPLOYABLE] --> [IMAGE_STATE_COMPLETE]2008-05-01 15:32:02, Info [oobeldr.exe] OOBELdr.exe exiting with code [0x0]...2008-05-01 15:32:02, Info [windeploy.exe] Process exited with exit code [0x0]2008-05-01 15:32:02, Info [windeploy.exe] WinDeploy.exe exiting with code [0x0]setuperr.log2008-05-01 15:18:06, Error [IE Unattend] Error Opening Registry key:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\Microsoft-Windows-IE-InternetExplorer\IEPopupBlocker[gle=0x000000b7]2008-05-01 15:18:06, Error [IE Unattend] Error Opening Registry key:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\Microsoft-Windows-IE-InternetExplorer\IEPopupBlocker[gle=0x000000b7]2008-05-01 15:18:06, Error [IE Unattend] Error Opening Registry key:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\Microsoft-Windows-IE-InternetExplorer\QuickLinkList[gle=0x000000b7]2008-05-01 15:18:06, Error [IE Unattend] Error Opening Registry key:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\Microsoft-Windows-IE-InternetExplorer\FeedList[gle=0x000000b7]2008-05-01 15:18:06, Error [IE Unattend] Error Opening Registry key:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\Microsoft-Windows-IE-InternetExplorer\StartPages[gle=0x000000b7]2008-05-01 15:18:06, Error [IE Unattend] Error Opening Registry key:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\UnattendSettings\Microsoft-Windows-IE-InternetExplorer\SearchScopes[gle=0x000000b7]2008-05-01 15:25:10, Error [unattendedjoin.exe] Unattended Join: NetJoinDomain failed error code is [1355]2008-05-01 15:25:10, Error [unattendedjoin.exe] Unattended Join: Unable to join; gdwError = 0x54bI've read elsewhere that I should go to C:\Windows\Debug and check out dcdiag.txt or NETSETUP.log. But I don't have either of those files. Is that a symptom of what's going on?And I forgot to already add -- if I try to join the domain after the unattended install, it works perfectly every time. Edited May 1, 2008 by Professor Frink
Professor Frink Posted June 2, 2008 Author Posted June 2, 2008 Bump.In all my Google searching, everyone keeps talking about checking dcdiag.txt or NETSETUP.log from C:\Windows\Debug. But I don't have those two files. Am I doing something wrong?
pierce14u2 Posted June 3, 2008 Posted June 3, 2008 (edited) I think this may be a case of misconfigured DNS. Your workstation needs to have a way to "Find" the domain controler to join that domain.Looking at your log shows that during your install it cannot find the domain controler for your domain, I would suggest that you configure your ip settings to utilize your local domain DNS server. (Instead of your ISP's dns server, as a guess) Edited June 3, 2008 by pierce14u2
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now