Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - ArneLovius - 2013-02-26 15:44
WDS server is on Windows Server 2012
I am trying to boot a 2008r2 boot image
iSCSI target is Windows Server 2012 andteh same server as the WDS server
I am using undionly.kpxe built from git today
The client is an Acer laptop, with a Broadcom NIC that I had to add to WDS.
If I chain to WDS using the below, WDS is quite happy and I can install to a local disk
Code:
:wds
cpuid --ext 29 && set arch x64 || set arch x86
set wdsserver:ipv4 192.168.53.15
set net0/next-server ${wdsserver}
chain tftp://${wdsserver}/Boot\\${arch}\\wdsnbp.com || goto failed
goto start
If I try to do an iSCSI install with the below
Code:
set cbase-iqn iqn.2012-02.lan.lovius.net
set base-iqn iqn.1991-05.com.microsoft:file-1-
set sbase-iqn iqn.1991-05.com.microsoft:file-1-
set base-iscsi iscsi:file-1.xclaimprojects.com:::
item wds-iscsi Start WDS with iSCSI
:wds-iscsi
echo Starting WDS for ${initiator-iqn}
set root-path ${base-iscsi}:${sbase-iqn}:${mac}.boot.win7
sanhook ${root-path} || goto failed
cpuid --ext 29 && set arch x64 || set arch x86
set wdsserver:ipv4 192.168.53.15
set net0/next-server ${wdsserver}
chain tftp://${wdsserver}/Boot\\${arch}\\wdsnbp.com || goto failed
goto start
I get "Setup is starting" and then an error message
Code:
WdsClient: An error occurred while communicating with the Windows
Deployment Services server. Please check that the server is
operational and that the necessary ports are open on the server's firewall. Server
name [file-1.xclaimprojects.com], Server IP address [192.168.53.15].
setupact.log looks like
Code:
2013-02-26 05:56:11, Info IBS InstallWindows:Successfully loaded resource language [en-US]
2013-02-26 05:56:11, Info [0x0601c1] IBS InstallWindows:Install Path = X:\Sources
2013-02-26 05:56:11, Info [0x0601c2] IBS InstallWindows:Setup Phase = 2
2013-02-26 05:56:11, Info [0x0601e9] IBS CheckWinPEVersion:Compatible WinPE Version 6.1.7601 sp 1.0
2013-02-26 05:56:11, Info [0x0601c9] IBS InstallWindows:Starting a new install from WinPE
2013-02-26 05:56:11, Info IBS InstallWindows: Setup working directory = X:\WINDOWS\panther
2013-02-26 05:56:11, Info [0x0601ce] IBS Setup has started phase 2 at 2013-02-26 05:56:11
2013-02-26 05:56:11, Info [0x0601cf] IBS Install source is X:\Sources
2013-02-26 05:56:11, Info [0x0601d0] IBS Build version is 6.1.7600.16385 (win7_rtm.090713-1255)
2013-02-26 05:56:11, Info [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\WINDOWS\panther\SetupInfo] Setup phase is [2]
2013-02-26 05:56:11, Info [0x090008] PANTHR CBlackboard::Open: X:\WINDOWS\panther\SetupInfo succeeded.
2013-02-26 05:56:11, Info [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\WINDOWS\panther\SetupInfo]
2013-02-26 05:56:11, Info IBS InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [en-US].
2013-02-26 05:56:11, Info IBS InstallWindows:Setup architecture is [x64]
2013-02-26 05:56:11, Info [0x0601d5] IBS InstallWindows:Starting with Empty Queue. Setup Phase = 2
2013-02-26 05:56:11, Info PANTHR InitializedCriticalSection for pExecQueue->csLock;
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Engine in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Internal in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Ems in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module License in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Completion in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CBS in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info PnPIBS: Initializing the PnP IBS Module ...
2013-02-26 05:56:11, Info PnPIBS: Successfully initialized the PnP IBS Module.
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Locale in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll
2013-02-26 05:56:11, Info [0x060359] IBS Callback_ScenarioDetect:Setup is starting from [2] phase
2013-02-26 05:56:11, Info IBS Callback_BootEnvironmentDetect:FirmwareType 1.
2013-02-26 05:56:11, Info IBS Callback_BootEnvironmentDetect: Detected boot environment: BIOS
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll
2013-02-26 05:56:11, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 05:56:11, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll
2013-02-26 05:56:11, Info [0x060004] IBS Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.
2013-02-26 05:56:11, Info IBS Callback_Engine_StartupScenarioIsWinPE:Setup is running from RAM drive. Path is [햠:]
2013-02-26 05:56:11, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwcompat.txt]
2013-02-26 05:56:12, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwexclude.txt]
2013-02-26 05:56:12, Info IBS Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [18385], count of exclusions is [47]
2013-02-26 05:56:12, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.
2013-02-26 05:56:12, Info IBS EnumOnlineDriverStoreCallback:Found non inbox driver package [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-26 05:56:12, Info IBS GatherDeviceIDsInDriverPackage:Driver package path is [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-26 05:56:12, Info GetModelSectionNameEx:Using section name [Broadcom.NTamd64.6.1]
2013-02-26 05:56:12, Info IBS AddDeviceIDsToInjectedDriverNodeHelper:Model section name is [Broadcom.NTamd64.6.1]
2013-02-26 05:56:12, Info IBS GatherDeviceIDsInDriverPackage:Successfully gathered device ID's from [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-26 05:56:12, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]
2013-02-26 05:56:12, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-26 05:56:12, Info [0x07003b] DIAG CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase
2013-02-26 05:56:12, Info [0x0b0022] WDS StartNetworking: Trying to start networking.
2013-02-26 05:56:12, Info WDS Network service dhcp not running or could not be queried: 2f8910 1 1
2013-02-26 05:56:12, Info WDS Network service lmhosts not running or could not be queried: 2f8910 1 1
2013-02-26 05:56:12, Info WDS Network service lanmanworkstation not running or could not be queried: 2f8910 1 1
2013-02-26 05:56:12, Info WDS Network service bfe not running or could not be queried: 2f8910 1 1
2013-02-26 05:56:12, Info WDS Network service ikeext not running or could not be queried: 2f8910 1 1
2013-02-26 05:56:12, Info WDS Network service mpssvc not running or could not be queried: 2f8910 1 1
2013-02-26 05:56:25, Info WDS Installing device pci\ven_14e4&dev_16b5&subsys_07431025 X:\WINDOWS\INF\oem0.inf succeeded
2013-02-26 05:56:25, Info WDS No computer name specified, generating a random name.
2013-02-26 05:56:25, Info WDS Renaming computer to MININT-BH7ES33.
2013-02-26 05:56:25, Info WDS Acquired profiling mutex
2013-02-26 05:56:25, Info WDS Service winmgmt disable: 0x00000000
2013-02-26 05:56:25, Info WDS Service winmgmt stop: 0x00000000
2013-02-26 05:56:25, Info WDS Service winmgmt enable: 0x00000000
2013-02-26 05:56:25, Info WDS Released profiling mutex
2013-02-26 05:56:25, Info WDS Acquired profiling mutex
2013-02-26 05:56:26, Info WDS Install MS_MSCLIENT: 0x0004a020
2013-02-26 05:56:26, Info WDS Install MS_NETBIOS: 0x0004a020
2013-02-26 05:56:26, Info WDS Install MS_SMB: 0x0004a020
2013-02-26 05:56:26, Info WDS Install MS_TCPIP6: 0x0004a020
2013-02-26 05:56:27, Info WDS Install MS_TCPIP: 0x0004a020
2013-02-26 05:56:27, Info WDS Service dhcp start: 0x00000000
2013-02-26 05:56:27, Info WDS Service lmhosts start: 0x00000000
2013-02-26 05:56:27, Info WDS Service ikeext start: 0x00000000
2013-02-26 05:56:27, Info WDS Service mpssvc start: 0x00000000
2013-02-26 05:56:27, Info WDS Released profiling mutex
2013-02-26 05:56:27, Info WDS Spent 1420ms installing network components
2013-02-26 05:56:31, Info WDS Spent 3728ms installing network drivers
2013-02-26 05:56:32, Info WDS QueryAdapterStatus: found operational adapter with DHCP address assigned.
2013-02-26 05:56:32, Info WDS Spent 1014ms confirming network initialization; status 0x00000000
2013-02-26 05:56:32, Info WDS GetNetworkingInfo: WpeNetworkStatus returned [0x806]. Flags set: WPE_NETWORK_ADAPTER_OPERATIONAL WPE_NETWORK_DHCP_ENABLED WPE_NETWORK_ADAPTER_HAS_DHCP_ADDRESS
2013-02-26 05:56:32, Info [0x0b0023] WDS StartNetworking: Networking successfully started.
2013-02-26 05:56:32, Info [0x0a0014] UI In WDS Mode. Callback for WDS UI happened
2013-02-26 05:56:32, Info [0x0b006e] WDS GetServerParamsFromBootPacket: WDS Server information. Server Name [file-1.xclaimprojects.com], Server IP Address [192.168.53.15]
2013-02-26 05:56:32, Info WDS List of interfaces on client
2013-02-26 05:56:32, Info WDS IP Address [192.168.53.180] MAC Address [B888E34401AB]
2013-02-26 05:56:32, Info WDS IP Address [192.168.53.202] MAC Address [B888E34401AB]
2013-02-26 05:56:32, Info [0x0b008c] WDS CClientLibrary::InitializeRpcSession: Binding String=1a927394-352e-4553-ae3f-7cf4aafca620@ncacn_ip_tcp:192.168.53.15
2013-02-26 05:56:53, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 05:56:53, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 05:56:53, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:56:53, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 05:56:53, Info [0x0b008c] WDS Status=1722
2013-02-26 05:56:53, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:56:53, Info [0x0b008c] WDS Detection Location=501
2013-02-26 05:56:53, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 05:56:53, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 05:56:53, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 05:56:53, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 05:56:53, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 05:56:53, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:56:53, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:56:53, Info [0x0b008c] WDS Status=1722
2013-02-26 05:56:53, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:56:53, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 05:56:53, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 05:56:53, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 05:56:53, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:56:53, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:56:53, Info [0x0b008c] WDS Status=1722
2013-02-26 05:56:53, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:56:53, Info [0x0b008c] WDS Detection Location=323
2013-02-26 05:56:53, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:56:53, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:56:53, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:56:53, Info [0x0b008c] WDS Status=1237
2013-02-26 05:56:53, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:56:53, Info [0x0b008c] WDS Detection Location=313
2013-02-26 05:56:53, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:56:53, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 05:56:53, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 05:56:53, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:14, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 05:57:14, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:14, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 05:57:14, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:14, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:14, Info [0x0b008c] WDS Detection Location=501
2013-02-26 05:57:14, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 05:57:14, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 05:57:14, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 05:57:14, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 05:57:14, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 05:57:14, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:14, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:14, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:14, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:14, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 05:57:14, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 05:57:14, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 05:57:14, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:14, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:14, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:14, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:14, Info [0x0b008c] WDS Detection Location=323
2013-02-26 05:57:14, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:57:14, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:14, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:14, Info [0x0b008c] WDS Status=1237
2013-02-26 05:57:14, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:14, Info [0x0b008c] WDS Detection Location=313
2013-02-26 05:57:14, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:57:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 05:57:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:35, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 05:57:35, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:35, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 05:57:35, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:35, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:35, Info [0x0b008c] WDS Detection Location=501
2013-02-26 05:57:35, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 05:57:35, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 05:57:35, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 05:57:35, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 05:57:35, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 05:57:35, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:35, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:35, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:35, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:35, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 05:57:35, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 05:57:35, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 05:57:35, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:35, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:35, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:35, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:35, Info [0x0b008c] WDS Detection Location=323
2013-02-26 05:57:35, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:57:35, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:35, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:35, Info [0x0b008c] WDS Status=1237
2013-02-26 05:57:35, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:35, Info [0x0b008c] WDS Detection Location=313
2013-02-26 05:57:35, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:57:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 05:57:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:56, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 05:57:56, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:56, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 05:57:56, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:56, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:56, Info [0x0b008c] WDS Detection Location=501
2013-02-26 05:57:56, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 05:57:56, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 05:57:56, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 05:57:56, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 05:57:56, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 05:57:56, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:56, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:56, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:56, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:56, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 05:57:56, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 05:57:56, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 05:57:56, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:56, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:56, Info [0x0b008c] WDS Status=1722
2013-02-26 05:57:56, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:56, Info [0x0b008c] WDS Detection Location=323
2013-02-26 05:57:56, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:57:56, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:57:56, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:57:56, Info [0x0b008c] WDS Status=1237
2013-02-26 05:57:56, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:57:56, Info [0x0b008c] WDS Detection Location=313
2013-02-26 05:57:56, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:57:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 05:57:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 05:57:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 05:58:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 05:58:17, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 05:58:17, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:58:17, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 05:58:17, Info [0x0b008c] WDS Status=1722
2013-02-26 05:58:17, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:58:17, Info [0x0b008c] WDS Detection Location=501
2013-02-26 05:58:17, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 05:58:17, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 05:58:17, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 05:58:17, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 05:58:17, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 05:58:17, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:58:17, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:58:17, Info [0x0b008c] WDS Status=1722
2013-02-26 05:58:17, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:58:17, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 05:58:17, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 05:58:17, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 05:58:17, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:58:17, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:58:17, Info [0x0b008c] WDS Status=1722
2013-02-26 05:58:17, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:58:17, Info [0x0b008c] WDS Detection Location=323
2013-02-26 05:58:17, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:58:17, Info [0x0b008c] WDS Proces ID=752
2013-02-26 05:58:17, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 05:58:17, Info [0x0b008c] WDS Status=1237
2013-02-26 05:58:17, Info [0x0b008c] WDS Flags=0x0
2013-02-26 05:58:17, Info [0x0b008c] WDS Detection Location=313
2013-02-26 05:58:17, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 05:58:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 05:58:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 05:58:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 05:58:17, Info [0x0b002c] WDS InitializeLogging: RPC_S_SERVER_UNAVAILABLE - Retrying server request for initializing logging.
2013-02-26 05:58:18, Error [0x0b004f] WDS CreateClientSession: Failed to initialize Client -> Server logging. Error code [0x800706BA].[gle=0x000006ba]
2013-02-26 05:58:18, Error [0x0b0055] WDS CreateClientSession: Failed to create client session. Error code [0x800706BA].[gle=0x000006ba]
2013-02-26 05:58:18, Error [0x0b0065] WDS CallBack_WdsClient_DetectWdsMode: Failed to create client session or initialize WDS unattend. Error [0x800706BA][gle=0x000006ba]
2013-02-26 05:58:18, Info [0x0640ae] IBSLIB PublishMessage: Publishing message [WdsClient: An error occurred while communicating with the Windows Deployment Services server. Please check to ensure that the server is operational and that the necessary ports are open on the server's firewall. Server name [file-1.xclaimprojects.com], Server IP address [192.168.53.15].]
2013-02-26 05:58:18, Error [0x0b0052] WDS CallBack_WdsClient_ErrorEventHandler: Problem processing error event. Error code [0x80070057].[gle=0x00000057]
If I open a command prompt, I can ping the WDS server by f.q.d.n and by short name quite happily, but I am not able to do a "net use" to the WDS server, I get
Code:
System error 53 has occurred.
The network path was not found
I am able to do a "net use" to any other Windows server
When it does the iSCSI sanhook, I see that it connects, but the connection appears to drop when it chains wdsnbp.com, however getting it to keep the iSCSI connection is probably of secondary importance to having the connection to WDS...
RE: Problem with iSCSI and WDS - mcb30 - 2013-02-26 19:28
This part looks suspicious:
(2013-02-26 15:44)ArneLovius Wrote: 2013-02-26 05:56:32, Info WDS IP Address [192.168.53.180] MAC Address [B888E34401AB]
2013-02-26 05:56:32, Info WDS IP Address [192.168.53.202] MAC Address [B888E34401AB]
Also, could you try dumping your routing table using "route print" after an attempted iSCSI/WDS boot?
One possible alternative, which might avoid the problem, would be to use wimboot instead of WDS.
Michael
RE: Problem with iSCSI and WDS - ArneLovius - 2013-02-27 00:16
I had completely missed the two addresses...
however I can't explain it
netstat -r
Code:
===========================================================================
Interface List
2...b8 88 e3 44 01 ab ......Broadcom NetLink (TM) Gigabit Ethernet
1...........................Software Loopback Interface 1
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.53.251 192.168.53.184 266
127.0.0.0 255.0.0.0 On-link 127.0.0.1 306
127.0.0.1 255.255.255.255 On-link 127.0.0.1 306
127.255.255.255 255.255.255.255 On-link 127.0.0.1 306
192.168.53.0 255.255.255.0 On-link 192.168.53.184 266
192.168.53.15 255.255.255.255 192.168.53.251 192.168.53.184 266
192.168.53.184 255.255.255.255 On-link 192.168.53.184 266
192.168.53.203 255.255.255.255 On-link 192.168.53.184 266
192.168.53.255 255.255.255.255 On-link 192.168.53.184 266
224.0.0.0 240.0.0.0 On-link 127.0.0.1 306
224.0.0.0 240.0.0.0 On-link 192.168.53.184 266
255.255.255.255 255.255.255.255 On-link 127.0.0.1 306
255.255.255.255 255.255.255.255 On-link 192.168.53.184 266
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
2 266 ::/0 fe80::21e:f7ff:fe15:6777
1 306 ::1/128 On-link
2 18 2001:470:9652:2::/64 On-link
2 266 2001:470:9652:2:8894:7b2b:c914:6475/128
On-link
2 266 2001:470:9652:2:bd3b:bba5:45ec:14cf/128
On-link
2 266 fe80::/64 On-link
2 266 fe80::8894:7b2b:c914:6475/128
On-link
1 306 ff00::/8 On-link
2 266 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
ipconfig /all
Code:
Windows IP Configuration
Host Name . . . . . . . . . . . . : minint-jnn9mc8
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Hybrid
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
DNS Suffix Search List. . . . . . : xclaimprojects.com
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . : xclaimprojects.com
Description . . . . . . . . . . . : Broadcom NetLink (TM) Gigabit Ethernet
Physical Address. . . . . . . . . : B8-88-E3-44-01-AB
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IPv6 Address. . . . . . . . . . . : 2001:470:9652:2:8894:7b2b:c914:6475(Preferred)
Temporary IPv6 Address. . . . . . : 2001:470:9652:2:bd3b:bba5:45ec:14cf(Preferred)
Link-local IPv6 Address . . . . . : fe80::8894:7b2b:c914:6475%2(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.53.184(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Lease Obtained. . . . . . . . . . : Tuesday, February 26, 2013 11:06:44 PM
Lease Expires . . . . . . . . . . : Wednesday, February 27, 2013 12:06:44 AM
IPv4 Address. . . . . . . . . . . : 192.168.53.203(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : fe80::21e:f7ff:fe15:6777%2
192.168.53.251
DHCP Server . . . . . . . . . . . : 192.168.53.42
DNS Servers . . . . . . . . . . . : 192.168.53.42
192.168.53.43
NetBIOS over Tcpip. . . . . . . . : Enabled
setupact.log
Code:
2013-02-26 23:06:23, Info IBS InstallWindows:Successfully loaded resource language [en-US]
2013-02-26 23:06:23, Info [0x0601c1] IBS InstallWindows:Install Path = X:\Sources
2013-02-26 23:06:23, Info [0x0601c2] IBS InstallWindows:Setup Phase = 2
2013-02-26 23:06:23, Info [0x0601e9] IBS CheckWinPEVersion:Compatible WinPE Version 6.1.7601 sp 1.0
2013-02-26 23:06:23, Info [0x0601c9] IBS InstallWindows:Starting a new install from WinPE
2013-02-26 23:06:23, Info IBS InstallWindows: Setup working directory = X:\WINDOWS\panther
2013-02-26 23:06:23, Info [0x0601ce] IBS Setup has started phase 2 at 2013-02-26 23:06:23
2013-02-26 23:06:23, Info [0x0601cf] IBS Install source is X:\Sources
2013-02-26 23:06:23, Info [0x0601d0] IBS Build version is 6.1.7600.16385 (win7_rtm.090713-1255)
2013-02-26 23:06:23, Info [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\WINDOWS\panther\SetupInfo] Setup phase is [2]
2013-02-26 23:06:23, Info [0x090008] PANTHR CBlackboard::Open: X:\WINDOWS\panther\SetupInfo succeeded.
2013-02-26 23:06:23, Info [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\WINDOWS\panther\SetupInfo]
2013-02-26 23:06:23, Info IBS InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [en-US].
2013-02-26 23:06:23, Info IBS InstallWindows:Setup architecture is [x64]
2013-02-26 23:06:23, Info [0x0601d5] IBS InstallWindows:Starting with Empty Queue. Setup Phase = 2
2013-02-26 23:06:23, Info PANTHR InitializedCriticalSection for pExecQueue->csLock;
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Engine in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Internal in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Ems in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module License in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Completion in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CBS in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info PnPIBS: Initializing the PnP IBS Module ...
2013-02-26 23:06:23, Info PnPIBS: Successfully initialized the PnP IBS Module.
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Locale in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll
2013-02-26 23:06:23, Info [0x060359] IBS Callback_ScenarioDetect:Setup is starting from [2] phase
2013-02-26 23:06:23, Info IBS Callback_BootEnvironmentDetect:FirmwareType 1.
2013-02-26 23:06:23, Info IBS Callback_BootEnvironmentDetect: Detected boot environment: BIOS
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll
2013-02-26 23:06:23, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-26 23:06:23, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll
2013-02-26 23:06:23, Info [0x060004] IBS Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.
2013-02-26 23:06:23, Info IBS Callback_Engine_StartupScenarioIsWinPE:Setup is running from RAM drive. Path is [햠:]
2013-02-26 23:06:23, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwcompat.txt]
2013-02-26 23:06:24, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwexclude.txt]
2013-02-26 23:06:24, Info IBS Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [18385], count of exclusions is [47]
2013-02-26 23:06:24, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.
2013-02-26 23:06:24, Info IBS EnumOnlineDriverStoreCallback:Found non inbox driver package [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-26 23:06:24, Info IBS GatherDeviceIDsInDriverPackage:Driver package path is [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-26 23:06:24, Info GetModelSectionNameEx:Using section name [Broadcom.NTamd64.6.1]
2013-02-26 23:06:24, Info IBS AddDeviceIDsToInjectedDriverNodeHelper:Model section name is [Broadcom.NTamd64.6.1]
2013-02-26 23:06:24, Info IBS GatherDeviceIDsInDriverPackage:Successfully gathered device ID's from [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-26 23:06:24, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]
2013-02-26 23:06:24, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-26 23:06:24, Info [0x07003b] DIAG CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase
2013-02-26 23:06:24, Info [0x0b0022] WDS StartNetworking: Trying to start networking.
2013-02-26 23:06:24, Info WDS Network service dhcp not running or could not be queried: 2b8910 1 1
2013-02-26 23:06:24, Info WDS Network service lmhosts not running or could not be queried: 2b8910 1 1
2013-02-26 23:06:24, Info WDS Network service lanmanworkstation not running or could not be queried: 2b8910 1 1
2013-02-26 23:06:24, Info WDS Network service bfe not running or could not be queried: 2b8910 1 1
2013-02-26 23:06:24, Info WDS Network service ikeext not running or could not be queried: 2b8910 1 1
2013-02-26 23:06:24, Info WDS Network service mpssvc not running or could not be queried: 2b8910 1 1
2013-02-26 23:06:37, Info WDS Installing device pci\ven_14e4&dev_16b5&subsys_07431025 X:\WINDOWS\INF\oem0.inf succeeded
2013-02-26 23:06:37, Info WDS No computer name specified, generating a random name.
2013-02-26 23:06:37, Info WDS Renaming computer to MININT-JNN9MC8.
2013-02-26 23:06:37, Info WDS Acquired profiling mutex
2013-02-26 23:06:37, Info WDS Service winmgmt disable: 0x00000000
2013-02-26 23:06:37, Info WDS Service winmgmt stop: 0x00000000
2013-02-26 23:06:37, Info WDS Service winmgmt enable: 0x00000000
2013-02-26 23:06:37, Info WDS Released profiling mutex
2013-02-26 23:06:37, Info WDS Acquired profiling mutex
2013-02-26 23:06:38, Info WDS Install MS_MSCLIENT: 0x0004a020
2013-02-26 23:06:38, Info WDS Install MS_NETBIOS: 0x0004a020
2013-02-26 23:06:38, Info WDS Install MS_SMB: 0x0004a020
2013-02-26 23:06:38, Info WDS Install MS_TCPIP6: 0x0004a020
2013-02-26 23:06:39, Info WDS Install MS_TCPIP: 0x0004a020
2013-02-26 23:06:39, Info WDS Service dhcp start: 0x00000000
2013-02-26 23:06:39, Info WDS Service lmhosts start: 0x00000000
2013-02-26 23:06:39, Info WDS Service ikeext start: 0x00000000
2013-02-26 23:06:39, Info WDS Service mpssvc start: 0x00000000
2013-02-26 23:06:39, Info WDS Released profiling mutex
2013-02-26 23:06:39, Info WDS Spent 1419ms installing network components
2013-02-26 23:06:43, Info WDS Spent 3713ms installing network drivers
2013-02-26 23:06:45, Info WDS QueryAdapterStatus: found operational adapter with DHCP address assigned.
2013-02-26 23:06:45, Info WDS Spent 2044ms confirming network initialization; status 0x00000000
2013-02-26 23:06:45, Info WDS GetNetworkingInfo: WpeNetworkStatus returned [0x806]. Flags set: WPE_NETWORK_ADAPTER_OPERATIONAL WPE_NETWORK_DHCP_ENABLED WPE_NETWORK_ADAPTER_HAS_DHCP_ADDRESS
2013-02-26 23:06:45, Info [0x0b0023] WDS StartNetworking: Networking successfully started.
2013-02-26 23:06:45, Info [0x0a0014] UI In WDS Mode. Callback for WDS UI happened
2013-02-26 23:06:45, Info [0x0b006e] WDS GetServerParamsFromBootPacket: WDS Server information. Server Name [file-1.xclaimprojects.com], Server IP Address [192.168.53.15]
2013-02-26 23:06:45, Info WDS List of interfaces on client
2013-02-26 23:06:45, Info WDS IP Address [192.168.53.184] MAC Address [B888E34401AB]
2013-02-26 23:06:45, Info WDS IP Address [192.168.53.203] MAC Address [B888E34401AB]
2013-02-26 23:06:45, Info [0x0b008c] WDS CClientLibrary::InitializeRpcSession: Binding String=1a927394-352e-4553-ae3f-7cf4aafca620@ncacn_ip_tcp:192.168.53.15
2013-02-26 23:07:06, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:06, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 23:07:06, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:06, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 23:07:06, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:06, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:06, Info [0x0b008c] WDS Detection Location=501
2013-02-26 23:07:06, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 23:07:06, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 23:07:06, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 23:07:06, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 23:07:06, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 23:07:06, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:06, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:06, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:06, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:06, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 23:07:06, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 23:07:06, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 23:07:06, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:06, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:06, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:06, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:06, Info [0x0b008c] WDS Detection Location=323
2013-02-26 23:07:06, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:07:06, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:06, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:06, Info [0x0b008c] WDS Status=1237
2013-02-26 23:07:06, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:06, Info [0x0b008c] WDS Detection Location=313
2013-02-26 23:07:06, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:07:06, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 23:07:06, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:06, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:27, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:27, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 23:07:27, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:27, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 23:07:27, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:27, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:27, Info [0x0b008c] WDS Detection Location=501
2013-02-26 23:07:27, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 23:07:27, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 23:07:27, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 23:07:27, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 23:07:27, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 23:07:27, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:27, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:27, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:27, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:27, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 23:07:27, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 23:07:27, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 23:07:27, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:27, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:27, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:27, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:27, Info [0x0b008c] WDS Detection Location=323
2013-02-26 23:07:27, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:07:27, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:27, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:27, Info [0x0b008c] WDS Status=1237
2013-02-26 23:07:27, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:27, Info [0x0b008c] WDS Detection Location=313
2013-02-26 23:07:27, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:07:27, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 23:07:27, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:27, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:48, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:48, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 23:07:48, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:48, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 23:07:48, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:48, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:48, Info [0x0b008c] WDS Detection Location=501
2013-02-26 23:07:48, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 23:07:48, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 23:07:48, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 23:07:48, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 23:07:48, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 23:07:48, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:48, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:48, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:48, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:48, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 23:07:48, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 23:07:48, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 23:07:48, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:48, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:48, Info [0x0b008c] WDS Status=1722
2013-02-26 23:07:48, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:48, Info [0x0b008c] WDS Detection Location=323
2013-02-26 23:07:48, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:07:48, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:07:48, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:07:48, Info [0x0b008c] WDS Status=1237
2013-02-26 23:07:48, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:07:48, Info [0x0b008c] WDS Detection Location=313
2013-02-26 23:07:48, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:07:48, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 23:07:48, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 23:07:48, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:09, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:09, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 23:08:09, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:09, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 23:08:09, Info [0x0b008c] WDS Status=1722
2013-02-26 23:08:09, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:09, Info [0x0b008c] WDS Detection Location=501
2013-02-26 23:08:09, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 23:08:09, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 23:08:09, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 23:08:09, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 23:08:09, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 23:08:09, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:09, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:08:09, Info [0x0b008c] WDS Status=1722
2013-02-26 23:08:09, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:09, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 23:08:09, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 23:08:09, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 23:08:09, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:09, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:08:09, Info [0x0b008c] WDS Status=1722
2013-02-26 23:08:09, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:09, Info [0x0b008c] WDS Detection Location=323
2013-02-26 23:08:09, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:08:09, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:09, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:08:09, Info [0x0b008c] WDS Status=1237
2013-02-26 23:08:09, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:09, Info [0x0b008c] WDS Detection Location=313
2013-02-26 23:08:09, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:08:09, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 23:08:09, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:09, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:30, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:30, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-26 23:08:30, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:30, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-26 23:08:30, Info [0x0b008c] WDS Status=1722
2013-02-26 23:08:30, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:30, Info [0x0b008c] WDS Detection Location=501
2013-02-26 23:08:30, Info [0x0b008c] WDS Parameters Count=4
2013-02-26 23:08:30, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-26 23:08:30, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-26 23:08:30, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-26 23:08:30, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-26 23:08:30, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:30, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:08:30, Info [0x0b008c] WDS Status=1722
2013-02-26 23:08:30, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:30, Info [0x0b008c] WDS Detection Location=1442
2013-02-26 23:08:30, Info [0x0b008c] WDS Parameters Count=1
2013-02-26 23:08:30, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-26 23:08:30, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:30, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:08:30, Info [0x0b008c] WDS Status=1722
2013-02-26 23:08:30, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:30, Info [0x0b008c] WDS Detection Location=323
2013-02-26 23:08:30, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:08:30, Info [0x0b008c] WDS Proces ID=748
2013-02-26 23:08:30, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-26 23:08:30, Info [0x0b008c] WDS Status=1237
2013-02-26 23:08:30, Info [0x0b008c] WDS Flags=0x0
2013-02-26 23:08:30, Info [0x0b008c] WDS Detection Location=313
2013-02-26 23:08:30, Info [0x0b008c] WDS Parameters Count=0
2013-02-26 23:08:30, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-26 23:08:30, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:30, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-26 23:08:30, Info [0x0b002c] WDS InitializeLogging: RPC_S_SERVER_UNAVAILABLE - Retrying server request for initializing logging.
2013-02-26 23:08:31, Error [0x0b004f] WDS CreateClientSession: Failed to initialize Client -> Server logging. Error code [0x800706BA].[gle=0x000006ba]
2013-02-26 23:08:31, Error [0x0b0055] WDS CreateClientSession: Failed to create client session. Error code [0x800706BA].[gle=0x000006ba]
2013-02-26 23:08:31, Error [0x0b0065] WDS CallBack_WdsClient_DetectWdsMode: Failed to create client session or initialize WDS unattend. Error [0x800706BA][gle=0x000006ba]
2013-02-26 23:08:31, Info [0x0640ae] IBSLIB PublishMessage: Publishing message [WdsClient: An error occurred while communicating with the Windows Deployment Services server. Please check to ensure that the server is operational and that the necessary ports are open on the server's firewall. Server name [file-1.xclaimprojects.com], Server IP address [192.168.53.15].]
2013-02-26 23:08:31, Error [0x0b0052] WDS CallBack_WdsClient_ErrorEventHandler: Problem processing error event. Error code [0x80070057].[gle=0x00000057]
I'll give wimboot a try, but I'll be missing the unattended side of WDS :-(
RE: Problem with iSCSI and WDS - ArneLovius - 2013-02-27 03:54
I run 2 DHCP servers, so to test a theory, I set DHCP reservations on each DHCP server to be a different IP address for the MAC address of the computer, I then tried again, and the two addresses were both of the reservation addresses.
I then tried just chaining wds
Code:
:wds
cpuid --ext 29 && set arch x64 || set arch x86
set wdsserver:ipv4 192.168.53.15
set net0/next-server ${wdsserver}
chain tftp://${wdsserver}/Boot\\${arch}\\wdsnbp.com || goto failed
goto start
and it only gets a single address
Code:
2013-02-27 01:08:26, Info IBS InstallWindows:Successfully loaded resource language [en-US]
2013-02-27 01:08:26, Info [0x0601c1] IBS InstallWindows:Install Path = X:\Sources
2013-02-27 01:08:26, Info [0x0601c2] IBS InstallWindows:Setup Phase = 2
2013-02-27 01:08:26, Info [0x0601e9] IBS CheckWinPEVersion:Compatible WinPE Version 6.1.7601 sp 1.0
2013-02-27 01:08:26, Info [0x0601c9] IBS InstallWindows:Starting a new install from WinPE
2013-02-27 01:08:26, Info IBS InstallWindows: Setup working directory = X:\WINDOWS\panther
2013-02-27 01:08:26, Info [0x0601ce] IBS Setup has started phase 2 at 2013-02-27 01:08:26
2013-02-27 01:08:26, Info [0x0601cf] IBS Install source is X:\Sources
2013-02-27 01:08:26, Info [0x0601d0] IBS Build version is 6.1.7600.16385 (win7_rtm.090713-1255)
2013-02-27 01:08:26, Info [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\WINDOWS\panther\SetupInfo] Setup phase is [2]
2013-02-27 01:08:26, Info [0x090008] PANTHR CBlackboard::Open: X:\WINDOWS\panther\SetupInfo succeeded.
2013-02-27 01:08:26, Info [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\WINDOWS\panther\SetupInfo]
2013-02-27 01:08:26, Info IBS InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [en-US].
2013-02-27 01:08:26, Info IBS InstallWindows:Setup architecture is [x64]
2013-02-27 01:08:26, Info [0x0601d5] IBS InstallWindows:Starting with Empty Queue. Setup Phase = 2
2013-02-27 01:08:26, Info PANTHR InitializedCriticalSection for pExecQueue->csLock;
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Engine in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Internal in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Ems in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module License in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Completion in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CBS in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info PnPIBS: Initializing the PnP IBS Module ...
2013-02-27 01:08:26, Info PnPIBS: Successfully initialized the PnP IBS Module.
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Locale in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll
2013-02-27 01:08:26, Info [0x060359] IBS Callback_ScenarioDetect:Setup is starting from [2] phase
2013-02-27 01:08:26, Info IBS Callback_BootEnvironmentDetect:FirmwareType 1.
2013-02-27 01:08:26, Info IBS Callback_BootEnvironmentDetect: Detected boot environment: BIOS
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll
2013-02-27 01:08:26, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 01:08:26, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll
2013-02-27 01:08:26, Info [0x060004] IBS Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.
2013-02-27 01:08:26, Info IBS Callback_Engine_StartupScenarioIsWinPE:Setup is running from RAM drive. Path is [햠:]
2013-02-27 01:08:26, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwcompat.txt]
2013-02-27 01:08:27, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwexclude.txt]
2013-02-27 01:08:27, Info IBS Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [18385], count of exclusions is [47]
2013-02-27 01:08:27, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.
2013-02-27 01:08:27, Info IBS EnumOnlineDriverStoreCallback:Found non inbox driver package [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-27 01:08:27, Info IBS GatherDeviceIDsInDriverPackage:Driver package path is [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-27 01:08:27, Info GetModelSectionNameEx:Using section name [Broadcom.NTamd64.6.1]
2013-02-27 01:08:27, Info IBS AddDeviceIDsToInjectedDriverNodeHelper:Model section name is [Broadcom.NTamd64.6.1]
2013-02-27 01:08:27, Info IBS GatherDeviceIDsInDriverPackage:Successfully gathered device ID's from [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-27 01:08:27, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]
2013-02-27 01:08:27, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-27 01:08:27, Info [0x07003b] DIAG CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase
2013-02-27 01:08:27, Info [0x0b0022] WDS StartNetworking: Trying to start networking.
2013-02-27 01:08:27, Info WDS Network service dhcp not running or could not be queried: 158910 1 1
2013-02-27 01:08:27, Info WDS Network service lmhosts not running or could not be queried: 158910 1 1
2013-02-27 01:08:27, Info WDS Network service lanmanworkstation not running or could not be queried: 158910 1 1
2013-02-27 01:08:27, Info WDS Network service bfe not running or could not be queried: 158910 1 1
2013-02-27 01:08:27, Info WDS Network service ikeext not running or could not be queried: 158910 1 1
2013-02-27 01:08:27, Info WDS Network service mpssvc not running or could not be queried: 158910 1 1
2013-02-27 01:08:40, Info WDS Installing device pci\ven_14e4&dev_16b5&subsys_07431025 X:\WINDOWS\INF\oem0.inf succeeded
2013-02-27 01:08:40, Info WDS No computer name specified, generating a random name.
2013-02-27 01:08:40, Info WDS Renaming computer to MININT-E1PQ8I8.
2013-02-27 01:08:40, Info WDS Acquired profiling mutex
2013-02-27 01:08:40, Info WDS Service winmgmt disable: 0x00000000
2013-02-27 01:08:40, Info WDS Service winmgmt stop: 0x00000000
2013-02-27 01:08:40, Info WDS Service winmgmt enable: 0x00000000
2013-02-27 01:08:40, Info WDS Released profiling mutex
2013-02-27 01:08:40, Info WDS Acquired profiling mutex
2013-02-27 01:08:40, Info WDS Install MS_MSCLIENT: 0x0004a020
2013-02-27 01:08:40, Info WDS Install MS_NETBIOS: 0x0004a020
2013-02-27 01:08:40, Info WDS Install MS_SMB: 0x0004a020
2013-02-27 01:08:40, Info WDS Install MS_TCPIP6: 0x0004a020
2013-02-27 01:08:41, Info WDS Install MS_TCPIP: 0x0004a020
2013-02-27 01:08:41, Info WDS Service dhcp start: 0x00000000
2013-02-27 01:08:41, Info WDS Service lmhosts start: 0x00000000
2013-02-27 01:08:41, Info WDS Service ikeext start: 0x00000000
2013-02-27 01:08:41, Info WDS Service mpssvc start: 0x00000000
2013-02-27 01:08:41, Info WDS Released profiling mutex
2013-02-27 01:08:41, Info WDS Spent 1451ms installing network components
2013-02-27 01:08:45, Info WDS Spent 3713ms installing network drivers
2013-02-27 01:08:48, Info WDS QueryAdapterStatus: found operational adapter with DHCP address assigned.
2013-02-27 01:08:48, Info WDS Spent 3042ms confirming network initialization; status 0x00000000
2013-02-27 01:08:48, Info WDS GetNetworkingInfo: WpeNetworkStatus returned [0x806]. Flags set: WPE_NETWORK_ADAPTER_OPERATIONAL WPE_NETWORK_DHCP_ENABLED WPE_NETWORK_ADAPTER_HAS_DHCP_ADDRESS
2013-02-27 01:08:48, Info [0x0b0023] WDS StartNetworking: Networking successfully started.
2013-02-27 01:08:48, Info [0x0a0014] UI In WDS Mode. Callback for WDS UI happened
2013-02-27 01:08:48, Info [0x0b006e] WDS GetServerParamsFromBootPacket: WDS Server information. Server Name [file-1.xclaimprojects.com], Server IP Address [192.168.53.15]
2013-02-27 01:08:48, Info WDS List of interfaces on client
2013-02-27 01:08:48, Info WDS IP Address [192.168.53.102] MAC Address [B888E34401AB]
2013-02-27 01:08:48, Info [0x0b008c] WDS CClientLibrary::InitializeRpcSession: Binding String=1a927394-352e-4553-ae3f-7cf4aafca620@ncacn_ip_tcp:192.168.53.15
2013-02-27 01:08:48, Info [0x0b002e] WDS InitializeUnattend: There is no unattend file available on the server.
2013-02-27 01:08:48, Info IBS Callback_Engine_ValidateSystemRequirements:Current OS version [6.1.7601] Service pack version [1.0]
2013-02-27 01:08:48, Info IBS Callback_Engine_ValidateSystemRequirements:System has enough memory: [3932 MB] >= [376 MB]
2013-02-27 01:08:48, Info IBS Callback_Engine_ValidateProcessorRequirements: Processor met minimum system requirements.
2013-02-27 01:08:48, Info Callback_GatherDiskInfo: Entry: flags = [0x0]; major = [Initialization] / minor = [0x30005]
2013-02-27 01:08:48, Info RefreshDiskInfo: Using VDS
2013-02-27 01:08:48, Info [0x0606cc] IBS InitVDSService:Creating VDS loader...
2013-02-27 01:08:48, Info [0x0606cc] IBS InitVDSService:Loading VDS service...
2013-02-27 01:08:57, Info [0x0606cc] IBS InitVDSService:Successfully launched service.
2013-02-27 01:08:57, Info [0x0606cc] IBS GatherDiskInfo_ThreadFunc:Querying disk information...
2013-02-27 01:08:58, Info [0x0606cc] IBS GatherVolumeDriveLetters: Querying drive letters...
2013-02-27 01:08:58, Info [0x0606cc] IBS GatherVolumeDriveLetters: Done querying drive letters.
2013-02-27 01:08:58, Info [0x0606cc] IBS GatherDiskInfo_ThreadFunc:Finished gathering disk information.
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo:===== Disk number [0] =====
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Friendly name: [\\?\PhysicalDrive0]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Arc path: [multi(0)disk(0)rdisk(0)]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Disk signature [0x74DC12C6]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Size (bytes) [320072933376 / 0x4a85d56000]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Disk bus type: [Serial ATA]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: SMART health status = OK
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Partition style: MBR
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: 5 region(s), 2 partition(s), 2 toplevel partition(s)
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: ------- Unallocated disk region --------
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Offset (bytes) [0 / 0x0]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Size (bytes) [32256 / 0x7e00]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: ------- Unallocated disk region --------
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Offset (bytes) [32256 / 0x7e00]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Size (bytes) [1016320 / 0xf8200]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: ------ NT partition number [1] -------
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Offset (bytes) [1048576 / 0x100000]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Size (bytes) [367001600 / 0x15e00000]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Simple index: [1]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: MBR partition type: 0x7 (recognized)
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Active partition bit is set
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: DOS drive letter [C:]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: NT path: [\Device\HarddiskVolume1]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: File system type: [NTFS]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: File system version: [3:1]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Volume label: [System Reserved]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Volume flags = [0x80464]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Volume free space (bytes) [113979392]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: ------ NT partition number [2] -------
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Offset (bytes) [368050176 / 0x15f00000]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Size (bytes) [319703482368 / 0x4a6fd00000]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Simple index: [2]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: MBR partition type: 0x7 (recognized)
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: DOS drive letter [D:]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: NT path: [\Device\HarddiskVolume2]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: File system type: [NTFS]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: File system version: [3:1]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Volume flags = [0x98460]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Volume free space (bytes) [137027399680]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: ------- Unallocated disk region --------
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Offset (bytes) [320071532544 / 0x4a85c00000]
2013-02-27 01:08:58, Info [0x0606cc] IBS DiskInfo: Size (bytes) [352256 / 0x56000]
2013-02-27 01:08:58, Info PublishDiskInfoOnBlackboard: Serializing disk info...
2013-02-27 01:08:58, Info GatherCapabilityParams: Can't tell if user is attempting cross-architecture install (image selection may not be done)
2013-02-27 01:08:58, Info [0x0606cc] IBS GetSystemDiskNTPath: Found system disk at [\Device\Harddisk0\DR0].
2013-02-27 01:08:58, Info [0x0606cc] IBS GetSystemDiskNumber: Disk [0] is the system disk.
2013-02-27 01:08:58, Info IBS IsDiskSupported:Checking if disk [0] has the necessary driver support.
2013-02-27 01:08:58, Info IBS IsDeviceSupported:Device description is [WDC WD3200LPVT-22G33T0 ATA Device]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [IDE\DiskWDC_WD3200LPVT-22G33T0__________________01.01A01]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [IDE\WDC_WD3200LPVT-22G33T0__________________01.01A01]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [IDE\DiskWDC_WD3200LPVT-22G33T0__________________]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [WDC_WD3200LPVT-22G33T0__________________01.01A01]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [GenDisk]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [GenDisk]
2013-02-27 01:08:58, Info IBS IsDeviceIDPresent:Found device ID [GenDisk] in hwcompat list
2013-02-27 01:08:58, Info IBS IsDeviceSupported:Device [WDC WD3200LPVT-22G33T0 ATA Device] is supported
2013-02-27 01:08:58, Info IBS IsDeviceSupported:Device description is [ATA Channel 0]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [Intel-1e03]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [Internal_IDE_Channel]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [*PNP0600]
2013-02-27 01:08:58, Info IBS IsDeviceIDPresent:Found device ID [Internal_IDE_Channel] in hwcompat list
2013-02-27 01:08:58, Info IBS IsDeviceSupported:Device [ATA Channel 0] is supported
2013-02-27 01:08:58, Info IBS IsDeviceSupported:Device description is [Serial ATA Controller]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [PCI\VEN_8086&DEV_1E03&SUBSYS_07431025&REV_04]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [PCI\VEN_8086&DEV_1E03&SUBSYS_07431025]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [PCI\VEN_8086&DEV_1E03&CC_010601]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [PCI\VEN_8086&DEV_1E03&CC_0106]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\VEN_8086&DEV_1E03&REV_04]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\VEN_8086&DEV_1E03]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\VEN_8086&CC_010601]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\VEN_8086&CC_0106]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\VEN_8086]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\CC_010601]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [PCI\CC_0106]
2013-02-27 01:08:58, Info IBS IsDeviceIDPresent:Found device ID [PCI\CC_010601] in hwcompat list
2013-02-27 01:08:58, Info IBS IsDeviceSupported:Device [Serial ATA Controller] is supported
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [ACPI\PNP0A08]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [*PNP0A08]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [*PNP0A03]
2013-02-27 01:08:58, Info IBS IsDeviceIDPresent:Found device ID [*PNP0A03] in hwcompat list
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [ACPI_HAL\PNP0C08]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [*PNP0C08]
2013-02-27 01:08:58, Info IBS IsDeviceIDPresent:Found device ID [*PNP0C08] in hwcompat list
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: H/w ID [acpiapic]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [DETECTEDInternal\ACPI_HAL]
2013-02-27 01:08:58, Info IBS DumpDeviceIDs: Compat ID [DETECTED\ACPI_HAL]
2013-02-27 01:08:58, Info IBS IsDeviceIDPresent:Found device ID [acpiapic] in hwcompat list
2013-02-27 01:08:58, Info IBS DetermineDeviceSupport:Disk 0 has the necessary driver support
2013-02-27 01:08:58, Info PublishDiskInfoOnBlackboard: Successfully serialized disk info.
2013-02-27 01:08:58, Info Callback_GatherDiskInfo: Exit
2013-02-27 01:08:58, Info [0x0a0015] UI In WDS Mode. Going to publish EVENT_SHOW_UI,SHOW_UI_WDS
2013-02-27 01:08:58, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-27 01:08:58, Info [0x07003a] DIAG CallBack_DiagnosticDataGeneration: Obtaining Install information
2013-02-27 01:08:58, Info [0x070030] DIAG Install Data logging to BB
2013-02-27 01:08:58, Info [0x07003f] DIAG CallBack_DiagnosticDataGeneration: Obtaining New OS information
2013-02-27 01:08:58, Info [0x07005f] DIAG Failed to get the EditionId from the blackboard.[gle=0x00000490]
2013-02-27 01:08:58, Info [0x070066] DIAG Failed to get the target language from the blackboard.[gle=0x00000490]
2013-02-27 01:08:58, Info [0x07002e] DIAG Logging New OS to BB
2013-02-27 01:08:58, Info IBS Unattend: Setup is running in WinPE; will wait for removable storage devices to initialize before unattend search
2013-02-27 01:08:58, Info IBS Unattend: Removable storage devices initialized; waited 0ms (status 0x00000000)
2013-02-27 01:08:58, Info IBS Callback_Unattend_InitEngine:Didn't find unattend file for this phase of Setup.
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:About to read languages from lang.ini file.
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:Langpack root directory is [X:\Langpacks].
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:Language [en-US] was determined to be on media number [0].
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:Added language [en-US] to language list.
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:Storing language [en-US] as lang.ini default language.
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:Language [en-US] has already been installed in the image.
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:[en-US] is the only language in the lang.ini. Storing it as the target language.
2013-02-27 01:08:58, Info MIG Callback_CompliancePrerequisites: event MigLoader:0x170006 occured
2013-02-27 01:08:58, Info IBS CallBack_LanguagePack_ReadLangIni:Successfully gathered language list from lang.ini.
2013-02-27 01:08:58, Info PnPIBS: Entering PnP callback to install drivers on WinPE ...
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver paths ...
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver directory C:\$WinPEDriver$.
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.
2013-02-27 01:08:58, Info PnPIBS: Finished checking for pre-configured driver paths.
2013-02-27 01:08:58, Info PnPIBS: Unattend settings need not be processed. Nothing more to be done here!
2013-02-27 01:08:58, Info PnPIBS: Exiting PnP callback to install drivers on WinPE ...
2013-02-27 01:08:58, Info PnPIBS: Entering PnP callback to add drivers to the offline image ...
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver paths ...
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver directory C:\$WinPEDriver$.
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.
2013-02-27 01:08:58, Info PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.
2013-02-27 01:08:58, Info PnPIBS: Finished checking for pre-configured driver paths.
2013-02-27 01:08:58, Info PnPIBS: Unattend settings need not be processed. Nothing more to be done here!
2013-02-27 01:08:58, Info PnPIBS: Exiting PnP callback to add drivers to the offline image ...
2013-02-27 01:08:58, Info [0x0605ac] IBS Callback_WinPE_SetSourceMediaInfo_Unattend:No need to determine source media path
2013-02-27 01:08:58, Info [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [SetupUI\SkipEula] as processed.
2013-02-27 01:08:58, Info [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [LangPacks] as processed.
2013-02-27 01:08:58, Info [0x0605a3] IBS CallBack_LanguagePacks_Unattend:Could not find a suitable Setup language
2013-02-27 01:08:58, Info IBS CallBack_LanguagePacks_Unattend:In WDS mode, not determining target language.
2013-02-27 01:08:58, Info PnPIBS: Entering PnP callback to validate unattend.xml settings for component Microsoft-Windows-PnPCustomizationsWinPE ...
2013-02-27 01:08:58, Info PnPIBS: Unattend settings need not be processed. Nothing more to be done here!
2013-02-27 01:08:58, Info IBS Callback_Compliance_Unattend: Wds mode detected. No need to process unattend settings.
2013-02-27 01:08:58, Info [0x0605fb] IBS Callback_Locale_ProcessUnattendSettings: Layered Driver from downlevel system [1]
2013-02-27 01:08:58, Info [0x060576] IBS Callback_Locale_SetSetupKeyboardLayout:No inputs available to change the key board layout.
2013-02-27 01:08:58, Info [0x0a018c] UI Setup UI language is set to en-US.
2013-02-27 01:08:58, Info [0x0a0016] UI Callback with EVENT_SHOW_UI,SHOW_UI_WDS happend
2013-02-27 01:08:58, Info [0x0a0051] UI Initializing Page
2013-02-27 01:08:58, Info UI AppWindow has layout style 0
2013-02-27 01:08:58, Info UI NavWindow has layout style 0
2013-02-27 01:08:58, Info [0x0a0035] UI Allowing Page '' to be shown
2013-02-27 01:08:58, Info [0x0a011c] UI WizardDialogPost::SetActive
I'll give wimboot a go tomorrow.
RE: Problem with iSCSI and WDS - robinsmidsrod - 2013-02-27 08:21
I was also going to suggest that you might have a name resolution error of some kind in the WinPE image you're booting. I'd suggest trying to use an IP (if possible using WDS) instead of a name when contacting the WDS server. Depending on your setup, you might have a DNS and/or WINS issue.
RE: Problem with iSCSI and WDS - ArneLovius - 2013-02-27 12:38
If it was a name resolution issue, I would expect to also see the same problem when not using the iSCSI part of iPXE...
RE: Problem with iSCSI and WDS - ArneLovius - 2013-02-27 16:53
so, using the same laptop (Acer V5-171 Core i3) without trying iSCSI
Just trying WinPE from the ADK using the method here http://ipxe.org/howto/winpe just gives me a blank screen
trying http://ipxe.org/wimboot with 2k8r2 SP1 media also gives me a blank screen, trying with Win7 X64 media gives me a blank screen
Then I tried with a Toshiba Satellite Pro A 200 (Centrino Duo RTL 8100E) which was able to boot with the wimboot, will need to revist why the Acer doesn't, but at least I have something that does :-)
I then tried to wimboot with 2k8r2 media with iSCSI
Code:
:wimboot2k8r2iscsi
echo Starting Wimboot 2k8r2 for ${initiator-iqn}
set root-path ${base-iscsi}:${sbase-iqn}:${mac}.boot.win7
sanhook ${root-path} || goto failed
set base-url ${boot-url}/2k8r2wimboot
kernel ${base-url}/wimboot
initrd ${base-url}/bootmgr bootmgr
initrd ${base-url}/boot/bcd BCD
initrd ${base-url}/boot/boot.sdi boot.sdi
initrd ${base-url}/sources/boot.wim boot.wim
boot || goto failed
goto start
I see the initial iPXE iSCSI connection, and it then loads 2k8r2, but 2k8r2 doesn't see the iSCSI LUN
Code:
2013-02-27 15:21:16, Info IBS InstallWindows:Successfully loaded resource language [en-US]
2013-02-27 15:21:16, Info [0x0601c1] IBS InstallWindows:Install Path = X:\Sources
2013-02-27 15:21:16, Info [0x0601c2] IBS InstallWindows:Setup Phase = 2
2013-02-27 15:21:16, Info [0x0601e9] IBS CheckWinPEVersion:Compatible WinPE Version 6.1.7601 sp 1.0
2013-02-27 15:21:16, Info [0x0601c9] IBS InstallWindows:Starting a new install from WinPE
2013-02-27 15:21:16, Info IBS InstallWindows: Setup working directory = X:\windows\panther
2013-02-27 15:21:16, Info [0x0601ce] IBS Setup has started phase 2 at 2013-02-27 15:21:16
2013-02-27 15:21:16, Info [0x0601cf] IBS Install source is X:\Sources
2013-02-27 15:21:16, Info [0x0601d0] IBS Build version is 6.1.7600.16385 (win7_rtm.090713-1255)
2013-02-27 15:21:16, Info [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\windows\panther\SetupInfo] Setup phase is [2]
2013-02-27 15:21:16, Info [0x090008] PANTHR CBlackboard::Open: X:\windows\panther\SetupInfo succeeded.
2013-02-27 15:21:16, Info [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\windows\panther\SetupInfo]
2013-02-27 15:21:16, Info IBS InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [en-US].
2013-02-27 15:21:16, Info IBS InstallWindows:Setup architecture is [x64]
2013-02-27 15:21:16, Info [0x0601d5] IBS InstallWindows:Starting with Empty Queue. Setup Phase = 2
2013-02-27 15:21:16, Info PANTHR InitializedCriticalSection for pExecQueue->csLock;
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Engine in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Internal in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Ems in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module License in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Completion in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CBS in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info PnPIBS: Initializing the PnP IBS Module ...
2013-02-27 15:21:16, Info PnPIBS: Successfully initialized the PnP IBS Module.
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Locale in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll
2013-02-27 15:21:16, Info [0x060359] IBS Callback_ScenarioDetect:Setup is starting from [2] phase
2013-02-27 15:21:16, Info IBS Callback_BootEnvironmentDetect:FirmwareType 1.
2013-02-27 15:21:16, Info IBS Callback_BootEnvironmentDetect: Detected boot environment: BIOS
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll
2013-02-27 15:21:16, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:21:16, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll
2013-02-27 15:21:16, Info [0x060004] IBS Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.
2013-02-27 15:21:16, Info IBS Callback_Engine_StartupScenarioIsWinPE:Setup is running from RAM drive. Path is [ᖠ:]
2013-02-27 15:21:16, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwcompat.txt]
2013-02-27 15:21:16, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwexclude.txt]
2013-02-27 15:21:16, Info IBS Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [18385], count of exclusions is [47]
2013-02-27 15:21:16, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.
2013-02-27 15:21:16, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]
2013-02-27 15:21:16, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-27 15:21:16, Info [0x07003b] DIAG CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase
2013-02-27 15:21:16, Info [0x06019f] IBS CallBack_ParseCommandLine:Publishing command line option [/HideWelcome]
2013-02-27 15:21:16, Info [0x06019f] IBS CallBack_ParseCommandLine:Publishing command line option [/uilanguage:en-US]
2013-02-27 15:21:16, Info [0x060550] IBS CallBack_LangugePack_ProcessCmdLine:Setup UI language provided is [en-US]
2013-02-27 15:21:16, Info [0x06019f] IBS CallBack_ParseCommandLine:Publishing command line option [/targetlanguage:en-US]
2013-02-27 15:21:16, Info [0x06054f] IBS CallBack_LangugePack_ProcessCmdLine:Target language provided is [en-US]
2013-02-27 15:21:16, Info [0x06019f] IBS CallBack_ParseCommandLine:Publishing command line option [/Targetinputlocale:0809:00000809]
2013-02-27 15:21:16, Info [0x06056c] IBS Callback_Locale_ProcessCmdLine:Successfully saved the command line option [Targetinputlocale] value [0809:00000809]
2013-02-27 15:21:16, Info [0x06019f] IBS CallBack_ParseCommandLine:Publishing command line option [/Targetuserlocale:en-GB]
2013-02-27 15:21:16, Info [0x06056b] IBS Callback_Locale_ProcessCmdLine:Successfully saved the command line option [Targetuserlocale] value [en-GB]
2013-02-27 15:21:16, Info [0x06019f] IBS CallBack_ParseCommandLine:Publishing command line option [/HideOOBELangPage:TRUE]
2013-02-27 15:21:16, Info IBS Callback_Engine_ValidateSystemRequirements:Current OS version [6.1.7601] Service pack version [1.0]
2013-02-27 15:21:16, Info IBS Callback_Engine_ValidateSystemRequirements:System has enough memory: [3920 MB] >= [376 MB]
2013-02-27 15:21:16, Info IBS Callback_Engine_ValidateProcessorRequirements: Processor met minimum system requirements.
2013-02-27 15:21:16, Info Callback_GatherDiskInfo: Entry: flags = [0x0]; major = [Initialization] / minor = [0x30005]
2013-02-27 15:21:16, Info RefreshDiskInfo: Using VDS
2013-02-27 15:21:16, Info [0x0606cc] IBS InitVDSService:Creating VDS loader...
2013-02-27 15:21:16, Info [0x0606cc] IBS InitVDSService:Loading VDS service...
2013-02-27 15:21:29, Info [0x0606cc] IBS InitVDSService:Successfully launched service.
2013-02-27 15:21:29, Info [0x0606cc] IBS GatherDiskInfo_ThreadFunc:Querying disk information...
2013-02-27 15:21:29, Info [0x0606cc] IBS GatherVolumeDriveLetters: Querying drive letters...
2013-02-27 15:21:29, Info [0x0606cc] IBS GatherVolumeDriveLetters: Done querying drive letters.
2013-02-27 15:21:29, Info [0x0606cc] IBS GatherDiskInfo_ThreadFunc:Finished gathering disk information.
2013-02-27 15:21:29, Info PublishDiskInfoOnBlackboard: Serializing disk info...
2013-02-27 15:21:29, Info GatherCapabilityParams: Can't tell if user is attempting cross-architecture install (image selection may not be done)
2013-02-27 15:21:29, Info [0x0606cc] IBS GetSystemDiskNTPath: Unable to get required buffer size for system disk from BCD APIs; status = 0xc0000452
2013-02-27 15:21:29, Info PublishDiskInfoOnBlackboard: Successfully serialized disk info.
2013-02-27 15:21:29, Info Callback_GatherDiskInfo: Exit
2013-02-27 15:21:29, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-27 15:21:29, Info [0x07003a] DIAG CallBack_DiagnosticDataGeneration: Obtaining Install information
2013-02-27 15:21:29, Info [0x070030] DIAG Install Data logging to BB
2013-02-27 15:21:29, Info [0x07003f] DIAG CallBack_DiagnosticDataGeneration: Obtaining New OS information
2013-02-27 15:21:29, Info [0x07005f] DIAG Failed to get the EditionId from the blackboard.[gle=0x00000490]
2013-02-27 15:21:29, Info [0x070066] DIAG Failed to get the target language from the blackboard.[gle=0x00000490]
2013-02-27 15:21:29, Info [0x07002e] DIAG Logging New OS to BB
2013-02-27 15:21:29, Info IBS Unattend: Setup is running in WinPE; will wait for removable storage devices to initialize before unattend search
2013-02-27 15:21:29, Info IBS Unattend: Removable storage devices initialized; waited 0ms (status 0x00000000)
2013-02-27 15:21:29, Info IBS Callback_Unattend_InitEngine:Didn't find unattend file for this phase of Setup.
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:About to read languages from lang.ini file.
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:Langpack root directory is [X:\Langpacks].
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:Language [en-US] was determined to be on media number [0].
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:Added language [en-US] to language list.
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:Storing language [en-US] as lang.ini default language.
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:Language [en-US] has already been installed in the image.
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:[en-US] is the only language in the lang.ini. Storing it as the target language.
2013-02-27 15:21:29, Info MIG Callback_CompliancePrerequisites: event MigLoader:0x170006 occured
2013-02-27 15:21:29, Info IBS CallBack_LanguagePack_ReadLangIni:Successfully gathered language list from lang.ini.
2013-02-27 15:21:29, Info IBS Callback_BootstrapApplyWpeSettings: Detected iBFT; setup will initialize networking support for iSCSI
2013-02-27 15:21:29, Info IBS No computer name specified, generating a random name.
2013-02-27 15:21:29, Info IBS Renaming computer to MININT-1BMPLTM.
2013-02-27 15:21:29, Info IBS Acquired profiling mutex
2013-02-27 15:21:29, Info IBS Service winmgmt disable: 0x00000000
2013-02-27 15:21:29, Info IBS Service winmgmt stop: 0x00000000
2013-02-27 15:21:29, Info IBS Service winmgmt enable: 0x00000000
2013-02-27 15:21:29, Info IBS Released profiling mutex
2013-02-27 15:21:29, Info IBS Acquired profiling mutex
2013-02-27 15:21:29, Info IBS Install MS_MSCLIENT: 0x0004a020
2013-02-27 15:21:29, Info IBS Install MS_NETBIOS: 0x0004a020
2013-02-27 15:21:30, Info IBS Install MS_SMB: 0x0004a020
2013-02-27 15:21:30, Info IBS Install MS_TCPIP6: 0x0004a020
2013-02-27 15:21:30, Info IBS Install MS_TCPIP: 0x0004a020
2013-02-27 15:21:30, Info IBS Service dhcp start: 0x00000000
2013-02-27 15:21:30, Info IBS Service lmhosts start: 0x00000000
2013-02-27 15:21:31, Info IBS Service ikeext start: 0x00000000
2013-02-27 15:21:31, Info IBS Service mpssvc start: 0x00000000
2013-02-27 15:21:31, Info IBS Released profiling mutex
2013-02-27 15:21:31, Info IBS Spent 1732ms installing network components
2013-02-27 15:21:35, Info IBS Installing device pci\ven_10ec&dev_8136&rev_01 X:\windows\INF\netrtx64.inf succeeded
2013-02-27 15:21:36, Info IBS Spent 5304ms installing network drivers
2013-02-27 15:21:38, Info IBS QueryAdapterStatus: found operational adapter with DHCP address assigned.
2013-02-27 15:21:38, Info IBS Spent 2028ms confirming network initialization; status 0x00000000
2013-02-27 15:21:38, Info IBS Callback_BootstrapApplyWpeSettings: Successfully initialized iSCSI support
2013-02-27 15:21:38, Info IBS Callback_SetWinPEAndOSImageInfoOnBB: Cannot set image info as source path is not yet set.
2013-02-27 15:21:38, Info PnPIBS: Entering PnP callback to install drivers on WinPE ...
2013-02-27 15:21:38, Info PnPIBS: Checking for pre-configured driver paths ...
2013-02-27 15:21:38, Info PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.
2013-02-27 15:21:38, Info PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.
2013-02-27 15:21:38, Info PnPIBS: Finished checking for pre-configured driver paths.
2013-02-27 15:21:38, Info PnPIBS: Unattend settings need not be processed. Nothing more to be done here!
2013-02-27 15:21:38, Info PnPIBS: Exiting PnP callback to install drivers on WinPE ...
2013-02-27 15:21:38, Info PnPIBS: Entering PnP callback to add drivers to the offline image ...
2013-02-27 15:21:38, Info PnPIBS: Checking for pre-configured driver paths ...
2013-02-27 15:21:38, Info PnPIBS: Checking for pre-configured driver directory D:\$WinPEDriver$.
2013-02-27 15:21:38, Info PnPIBS: Checking for pre-configured driver directory X:\$WinPEDriver$.
2013-02-27 15:21:38, Info PnPIBS: Finished checking for pre-configured driver paths.
2013-02-27 15:21:38, Info PnPIBS: Unattend settings need not be processed. Nothing more to be done here!
2013-02-27 15:21:38, Info PnPIBS: Exiting PnP callback to add drivers to the offline image ...
2013-02-27 15:21:38, Info IBS Callback_WinPE_SetSourceMediaInfo_Unattend:Trying to determine source path.
2013-02-27 15:21:38, Info IBS Callback_WinPE_SetSourceMediaInfo_Unattend:Media boot.
2013-02-27 15:21:38, Info IBS FindSetupMedia:Checking source type 1.
2013-02-27 15:21:38, Info IBS FindSetupMedia:Checking source type 2.
2013-02-27 15:21:38, Warning [0x0605b1] IBS Callback_WinPE_SetSourceMediaInfo:Could not determine the source media path. GLE is [0x0]
2013-02-27 15:21:38, Info [0x0605b3] IBS Callback_WinPE_SetSourceMediaInfo_Unattend:Show flag for early F6 UI page is being to set to [Show]
2013-02-27 15:21:38, Info [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [ProductKey\ProductKey] as processed.
2013-02-27 15:21:38, Info [0x06011c] IBS Callback_Productkey_Validate_Unattend:Non-unattended mode will perform keyless validation.
2013-02-27 15:21:38, Info IBS Callback_Productkey_Validate_Unattend:No product key found, continuing validation and image selection in keyless setup mode.
2013-02-27 15:21:38, Info [0x060122] IBS Callback_Productkey_Validate: Entry
2013-02-27 15:21:38, Info [0x06012c] IBS Callback_Productkey_Validate: No product key provided on the blackboard. Running keyless setup.
2013-02-27 15:21:38, Info IBS Callback_Productkey_Validate: Using EulaType (a.k.a. ChannelType) for keyless setup. Eula type is [NoKeyChannel].
2013-02-27 15:21:38, Info IBS CallBack_SelectImageOrShowUi: Cannot select image as the source path is not yet set.
2013-02-27 15:21:38, Info IBS Callback_Productkey_Validate: Found a matching image and gathered its info.
2013-02-27 15:21:38, Info DIAG CallBack_EditionID: Called with notification for ProductKey
2013-02-27 15:21:38, Info [0x07005f] DIAG Failed to get the EditionId from the blackboard.[gle=0x00000490]
2013-02-27 15:21:38, Info [0x070040] DIAG CallBack_EditionID: Obtaining Machine information
2013-02-27 15:21:39, Info [0x07005e] DIAG HARDWARE CONFIG=Ram in KB: Total phys=4013484 avail phys=3501604 Procs=2 Arch=9 Family=1 Width=64 Speed=1667 MHz
2013-02-27 15:21:39, Info [0x07002d] DIAG Logging MachineHardWare to BB
2013-02-27 15:21:39, Info [0x060536] IBS Callback_License_LoadLicenseText: Couldn't find language information on blackboard
2013-02-27 15:21:39, Info [0x060538] IBS Callback_License_LoadLicenseText: Couldn't find edition ID information on blackboard
2013-02-27 15:21:39, Info IBS Callback_Productkey_Validate: Storing return code 0x0 on the blackboard.
2013-02-27 15:21:39, Info [0x060130] IBS Callback_Productkey_Validate: Exit
2013-02-27 15:21:39, Info [0x060119] IBS Callback_Productkey_Validate_Unattend:Product key provided is valid and image slection succeeded.
2013-02-27 15:21:39, Info [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [SetupUI\SkipEula] as processed.
2013-02-27 15:21:39, Info [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [LangPacks] as processed.
2013-02-27 15:21:39, Info [0x060594] IBS DetermineSetupLanguage:Validating setup language [en-US]
2013-02-27 15:21:39, Info [0x060595] IBS DetermineSetupLanguage:Setting setup language to be [en-US]
2013-02-27 15:21:39, Info [0x06058c] IBS CallBack_LanguagePacks_Unattend:Setup language is [en-US]
2013-02-27 15:21:39, Info [0x060538] IBS Callback_License_LoadLicenseText: Couldn't find edition ID information on blackboard
2013-02-27 15:21:39, Info IBS CallBack_LanguagePacks_Unattend: Successfully updated setup's resources to use the unattend selected language [en-US].
2013-02-27 15:21:39, Info [0x06059a] IBS DetermineTargetLanguage:Validating target language [en-US]
2013-02-27 15:21:39, Info [0x06059b] IBS DetermineTargetLanguage:Target language [en-US] is a valid language
2013-02-27 15:21:39, Info [0x06058d] IBS CallBack_LanguagePacks_Unattend:Target language is [en-US]
2013-02-27 15:21:39, Info MIG Callback_CompliancePrerequisites: event MigLoader:0x170006 occured
2013-02-27 15:21:39, Info PnPIBS: Entering PnP callback to validate unattend.xml settings for component Microsoft-Windows-PnPCustomizationsWinPE ...
2013-02-27 15:21:39, Info PnPIBS: Unattend settings need not be processed. Nothing more to be done here!
2013-02-27 15:21:39, Info [0x064047] IBSLIB MarkUnattendSettingAsProcessed: Marking unattend setting [SetupComplianceCheck] as processed.
2013-02-27 15:21:39, Info IBS Callback_Compliance_Unattend:Not in unattended mode.
2013-02-27 15:21:39, Info IBS Callback_Compliance_Unattend: Running in WinPE. Compliance checks do not execute, we do not need to read the DisplayReport value from the unattend file.
2013-02-27 15:21:39, Info IBS Callback_Compliance_Unattend:Setting ShowUI flag to [0]
2013-02-27 15:21:39, Info [0x0605fb] IBS Callback_Locale_ProcessUnattendSettings: Layered Driver from downlevel system [1]
2013-02-27 15:21:39, Info [0x060572] IBS Callback_Locale_SetSetupKeyboardLayout:Setup keyboard layout is [0809:00000809]
2013-02-27 15:21:40, Info [0x060581] IBS SetSetupKeyboardLayout:Successfully set the key board layout to [0809:00000809]
2013-02-27 15:21:40, Info [0x060575] IBS Callback_Locale_SetSetupKeyboardLayout:Successfully set the Setup keyboard layout to [0809:00000809]
2013-02-27 15:21:40, Info [0x0a018c] UI Setup UI language is set to en-US.
2013-02-27 15:21:40, Info [0x0a0031] UI Initializing Page
2013-02-27 15:21:40, Info [0x0a0032] UI Initializing Page
2013-02-27 15:21:40, Info UI Initializing Page
2013-02-27 15:21:40, Info UI AppWindow has layout style 0
2013-02-27 15:21:40, Info UI NavWindow has layout style 0
2013-02-27 15:21:40, Info [0x0a017d] UI User has specified the language thru command line. Language neutral selection UI won't be shown
2013-02-27 15:21:40, Info [0x0a017d] UI User has specified the language thru command line. Language selection UI won't be shown
2013-02-27 15:21:40, Info [0x0a0035] UI Allowing Page '' to be shown
2013-02-27 15:21:40, Info [0x0a011c] UI WizardDialogPost::SetActive
The network stack is however up, and I can do a
net use z: \\file-1\share
which is how I copied the above off
I then tried to do a WDS on its own, which worked as per the Acer
Then I tried to do a WDS with iSCSI, but its back to the same error message, and having two IP addresses again :-( however I was able to do a "net use" to the same server to copy the logs off :-)
Code:
2013-02-27 15:47:44, Info IBS InstallWindows:Successfully loaded resource language [en-US]
2013-02-27 15:47:44, Info [0x0601c1] IBS InstallWindows:Install Path = X:\Sources
2013-02-27 15:47:44, Info [0x0601c2] IBS InstallWindows:Setup Phase = 2
2013-02-27 15:47:44, Info [0x0601e9] IBS CheckWinPEVersion:Compatible WinPE Version 6.1.7601 sp 1.0
2013-02-27 15:47:44, Info [0x0601c9] IBS InstallWindows:Starting a new install from WinPE
2013-02-27 15:47:44, Info IBS InstallWindows: Setup working directory = X:\WINDOWS\panther
2013-02-27 15:47:44, Info [0x0601ce] IBS Setup has started phase 2 at 2013-02-27 15:47:44
2013-02-27 15:47:44, Info [0x0601cf] IBS Install source is X:\Sources
2013-02-27 15:47:44, Info [0x0601d0] IBS Build version is 6.1.7600.16385 (win7_rtm.090713-1255)
2013-02-27 15:47:44, Info [0x06403f] IBSLIB CreateSetupBlackboard:Creating a new persistent blackboard. Path is [X:\WINDOWS\panther\SetupInfo] Setup phase is [2]
2013-02-27 15:47:44, Info [0x090008] PANTHR CBlackboard::Open: X:\WINDOWS\panther\SetupInfo succeeded.
2013-02-27 15:47:44, Info [0x064043] IBSLIB CreateSetupBlackboard:Successfully created/opened Setup black board path is [X:\WINDOWS\panther\SetupInfo]
2013-02-27 15:47:44, Info IBS InstallWindows:No UI language from a previous boot was found on the blackboard. Using selected language [en-US].
2013-02-27 15:47:44, Info IBS InstallWindows:Setup architecture is [x64]
2013-02-27 15:47:44, Info [0x0601d5] IBS InstallWindows:Starting with Empty Queue. Setup Phase = 2
2013-02-27 15:47:44, Info PANTHR InitializedCriticalSection for pExecQueue->csLock;
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ScenarioDetect in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Engine in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Internal in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ErrorHandler in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Diagnostic in diagnostic.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Unattend in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ParseCommandLine in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Ems in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PrepareInstallDrive in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module TempDrive in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopySetupFiles in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootPrep in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module BootEntries in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyPrivates in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ProductKey in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ComputerName in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module License in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskInformation in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FixBBPaths in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskConfig in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CreatePageFile in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Imaging in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CopyImages in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DeployImages in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module DiskSpace in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Completion in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module MountDev in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cmi in cmisetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SystemRestore in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module FirstBootCleanup in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module RestartModule in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ExternalDrivers in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CBS in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module SkuAssembly in cmisetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module LanguagePack in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module ConfigSet in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module UnattendImgInstall in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module CFGOfflineImage in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info PnPIBS: Initializing the PnP IBS Module ...
2013-02-27 15:47:44, Info PnPIBS: Successfully initialized the PnP IBS Module.
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module PnP IBS module in pnpibs.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Compliance in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Rollback in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Locale in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Source media module in winsetup.dll
2013-02-27 15:47:44, Info [0x060359] IBS Callback_ScenarioDetect:Setup is starting from [2] phase
2013-02-27 15:47:44, Info IBS Callback_BootEnvironmentDetect:FirmwareType 1.
2013-02-27 15:47:44, Info IBS Callback_BootEnvironmentDetect: Detected boot environment: BIOS
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUI in win32ui.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEProgress in spprgrss.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WinPEUpgLoader in upgloader.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WdsClient in wdsclient.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module WpeUntndBtstrp in winsetup.dll
2013-02-27 15:47:44, Info PANTHR InitializeModule: Initializing ExecQueue->csLock;
2013-02-27 15:47:44, Info [0x0601a4] IBS LoadWorkerModules:Successfully added worker module Cryptography in cryptosetup.dll
2013-02-27 15:47:44, Info [0x060004] IBS Callback_UpdateDrivePathsOnBB:No need to update the blackboard paths.
2013-02-27 15:47:44, Info IBS Callback_Engine_StartupScenarioIsWinPE:Setup is running from RAM drive. Path is [Ꚑ:]
2013-02-27 15:47:44, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwcompat.txt]
2013-02-27 15:47:44, Info IBS LoadHWCompatData:Successfully opened HW compat file [X:\Sources\hwexclude.txt]
2013-02-27 15:47:44, Info IBS Callback_Compliance_LoadDeviceCompatDB:Count of Device IDs is [18385], count of exclusions is [47]
2013-02-27 15:47:44, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerating online driver store for injected driver packages.
2013-02-27 15:47:44, Info IBS EnumOnlineDriverStoreCallback:Found non inbox driver package [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-27 15:47:44, Info IBS GatherDeviceIDsInDriverPackage:Driver package path is [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-27 15:47:44, Info GetModelSectionNameEx:Using section name [Broadcom.NTamd64.6.1]
2013-02-27 15:47:44, Info IBS AddDeviceIDsToInjectedDriverNodeHelper:Model section name is [Broadcom.NTamd64.6.1]
2013-02-27 15:47:44, Info IBS GatherDeviceIDsInDriverPackage:Successfully gathered device ID's from [X:\WINDOWS\System32\DriverStore\FileRepository\k57nd60a.inf_amd64_neutral_c14417d2d1705371\k57nd60a.inf]
2013-02-27 15:47:44, Info IBS EnumOnlineDriverStoreForInjectedDriverPackages:Enumerated online driver store. Return code is [0x0]
2013-02-27 15:47:44, Info [0x070035] DIAG CallBack_DiagnosticDataGeneration: Called with notification for Initialization
2013-02-27 15:47:44, Info [0x07003b] DIAG CallBack_DiagnosticDataGeneration: Starting Timer as we are starting new phase
2013-02-27 15:47:44, Info [0x0b0022] WDS StartNetworking: Trying to start networking.
2013-02-27 15:47:44, Info WDS Network service dhcp not running or could not be queried: 25bed0 1 1
2013-02-27 15:47:44, Info WDS Network service lmhosts not running or could not be queried: 25bed0 1 1
2013-02-27 15:47:44, Info WDS Network service lanmanworkstation not running or could not be queried: 25bed0 1 1
2013-02-27 15:47:44, Info WDS Network service bfe not running or could not be queried: 25bed0 1 1
2013-02-27 15:47:44, Info WDS Network service ikeext not running or could not be queried: 25bed0 1 1
2013-02-27 15:47:44, Info WDS Network service mpssvc not running or could not be queried: 25bed0 1 1
2013-02-27 15:47:47, Info WDS Installing device pci\ven_10ec&dev_8136&rev_01 X:\WINDOWS\INF\netrtx64.inf succeeded
2013-02-27 15:47:48, Info WDS No computer name specified, generating a random name.
2013-02-27 15:47:48, Info WDS Renaming computer to MININT-E9UCS1O.
2013-02-27 15:47:48, Info WDS Acquired profiling mutex
2013-02-27 15:47:48, Info WDS Service winmgmt disable: 0x00000000
2013-02-27 15:47:48, Info WDS Service winmgmt stop: 0x00000000
2013-02-27 15:47:48, Info WDS Service winmgmt enable: 0x00000000
2013-02-27 15:47:48, Info WDS Released profiling mutex
2013-02-27 15:47:48, Info WDS Acquired profiling mutex
2013-02-27 15:47:48, Info WDS Install MS_MSCLIENT: 0x0004a020
2013-02-27 15:47:48, Info WDS Install MS_NETBIOS: 0x0004a020
2013-02-27 15:47:49, Info WDS Install MS_SMB: 0x0004a020
2013-02-27 15:47:49, Info WDS Install MS_TCPIP6: 0x0004a020
2013-02-27 15:47:49, Info WDS Install MS_TCPIP: 0x0004a020
2013-02-27 15:47:49, Info WDS Service dhcp start: 0x00000000
2013-02-27 15:47:49, Info WDS Service lmhosts start: 0x00000000
2013-02-27 15:47:49, Info WDS Service ikeext start: 0x00000000
2013-02-27 15:47:49, Info WDS Service mpssvc start: 0x00000000
2013-02-27 15:47:49, Info WDS Released profiling mutex
2013-02-27 15:47:49, Info WDS Spent 1388ms installing network components
2013-02-27 15:47:53, Info WDS Spent 3323ms installing network drivers
2013-02-27 15:47:53, Info WDS QueryAdapterStatus: found operational adapter with DHCP address assigned.
2013-02-27 15:47:53, Info WDS Spent 0ms confirming network initialization; status 0x00000000
2013-02-27 15:47:53, Info WDS GetNetworkingInfo: WpeNetworkStatus returned [0x806]. Flags set: WPE_NETWORK_ADAPTER_OPERATIONAL WPE_NETWORK_DHCP_ENABLED WPE_NETWORK_ADAPTER_HAS_DHCP_ADDRESS
2013-02-27 15:47:53, Info [0x0b0023] WDS StartNetworking: Networking successfully started.
2013-02-27 15:47:53, Info [0x0a0014] UI In WDS Mode. Callback for WDS UI happened
2013-02-27 15:47:53, Info [0x0b006e] WDS GetServerParamsFromBootPacket: WDS Server information. Server Name [file-1.xclaimprojects.com], Server IP Address [192.168.53.15]
2013-02-27 15:47:53, Info WDS List of interfaces on client
2013-02-27 15:47:53, Info WDS IP Address [192.168.53.180] MAC Address [001B383D0DA4]
2013-02-27 15:47:53, Info WDS IP Address [192.168.53.202] MAC Address [001B383D0DA4]
2013-02-27 15:47:53, Info [0x0b008c] WDS CClientLibrary::InitializeRpcSession: Binding String=1a927394-352e-4553-ae3f-7cf4aafca620@ncacn_ip_tcp:192.168.53.15
2013-02-27 15:48:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:14, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-27 15:48:14, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:14, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-27 15:48:14, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:14, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:14, Info [0x0b008c] WDS Detection Location=501
2013-02-27 15:48:14, Info [0x0b008c] WDS Parameters Count=4
2013-02-27 15:48:14, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-27 15:48:14, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-27 15:48:14, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-27 15:48:14, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-27 15:48:14, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:14, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:14, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:14, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:14, Info [0x0b008c] WDS Detection Location=1442
2013-02-27 15:48:14, Info [0x0b008c] WDS Parameters Count=1
2013-02-27 15:48:14, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-27 15:48:14, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:14, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:14, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:14, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:14, Info [0x0b008c] WDS Detection Location=323
2013-02-27 15:48:14, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:48:14, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:14, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:14, Info [0x0b008c] WDS Status=1237
2013-02-27 15:48:14, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:14, Info [0x0b008c] WDS Detection Location=313
2013-02-27 15:48:14, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:48:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-27 15:48:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:14, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:35, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-27 15:48:35, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:35, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-27 15:48:35, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:35, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:35, Info [0x0b008c] WDS Detection Location=501
2013-02-27 15:48:35, Info [0x0b008c] WDS Parameters Count=4
2013-02-27 15:48:35, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-27 15:48:35, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-27 15:48:35, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-27 15:48:35, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-27 15:48:35, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:35, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:35, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:35, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:35, Info [0x0b008c] WDS Detection Location=1442
2013-02-27 15:48:35, Info [0x0b008c] WDS Parameters Count=1
2013-02-27 15:48:35, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-27 15:48:35, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:35, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:35, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:35, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:35, Info [0x0b008c] WDS Detection Location=323
2013-02-27 15:48:35, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:48:35, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:35, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:35, Info [0x0b008c] WDS Status=1237
2013-02-27 15:48:35, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:35, Info [0x0b008c] WDS Detection Location=313
2013-02-27 15:48:35, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:48:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-27 15:48:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:35, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:56, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-27 15:48:56, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:56, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-27 15:48:56, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:56, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:56, Info [0x0b008c] WDS Detection Location=501
2013-02-27 15:48:56, Info [0x0b008c] WDS Parameters Count=4
2013-02-27 15:48:56, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-27 15:48:56, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-27 15:48:56, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-27 15:48:56, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-27 15:48:56, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:56, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:56, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:56, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:56, Info [0x0b008c] WDS Detection Location=1442
2013-02-27 15:48:56, Info [0x0b008c] WDS Parameters Count=1
2013-02-27 15:48:56, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-27 15:48:56, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:56, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:56, Info [0x0b008c] WDS Status=1722
2013-02-27 15:48:56, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:56, Info [0x0b008c] WDS Detection Location=323
2013-02-27 15:48:56, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:48:56, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:48:56, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:48:56, Info [0x0b008c] WDS Status=1237
2013-02-27 15:48:56, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:48:56, Info [0x0b008c] WDS Detection Location=313
2013-02-27 15:48:56, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:48:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-27 15:48:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-27 15:48:56, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:17, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-27 15:49:17, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:17, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-27 15:49:17, Info [0x0b008c] WDS Status=1722
2013-02-27 15:49:17, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:17, Info [0x0b008c] WDS Detection Location=501
2013-02-27 15:49:17, Info [0x0b008c] WDS Parameters Count=4
2013-02-27 15:49:17, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-27 15:49:17, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-27 15:49:17, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-27 15:49:17, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-27 15:49:17, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:17, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:49:17, Info [0x0b008c] WDS Status=1722
2013-02-27 15:49:17, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:17, Info [0x0b008c] WDS Detection Location=1442
2013-02-27 15:49:17, Info [0x0b008c] WDS Parameters Count=1
2013-02-27 15:49:17, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-27 15:49:17, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:17, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:49:17, Info [0x0b008c] WDS Status=1722
2013-02-27 15:49:17, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:17, Info [0x0b008c] WDS Detection Location=323
2013-02-27 15:49:17, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:49:17, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:17, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:49:17, Info [0x0b008c] WDS Status=1237
2013-02-27 15:49:17, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:17, Info [0x0b008c] WDS Detection Location=313
2013-02-27 15:49:17, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:49:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-27 15:49:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:17, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:38, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1494] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:38, Info [0x0b008c] WDS RPC Extended Error Info
-----------------------
2013-02-27 15:49:38, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:38, Info [0x0b008c] WDS GeneratingComponent=2
2013-02-27 15:49:38, Info [0x0b008c] WDS Status=1722
2013-02-27 15:49:38, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:38, Info [0x0b008c] WDS Detection Location=501
2013-02-27 15:49:38, Info [0x0b008c] WDS Parameters Count=4
2013-02-27 15:49:38, Info [0x0b008c] WDS Param[0][Unicode]: ncacn_ip_tcp
2013-02-27 15:49:38, Info [0x0b008c] WDS Param[1][Unicode]: 192.168.53.15
2013-02-27 15:49:38, Info [0x0b008c] WDS Param[2][Long]: 445805460
2013-02-27 15:49:38, Info [0x0b008c] WDS Param[3][Long]: 1722
2013-02-27 15:49:38, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:38, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:49:38, Info [0x0b008c] WDS Status=1722
2013-02-27 15:49:38, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:38, Info [0x0b008c] WDS Detection Location=1442
2013-02-27 15:49:38, Info [0x0b008c] WDS Parameters Count=1
2013-02-27 15:49:38, Info [0x0b008c] WDS Param[0][Unicode]: 192.168.53.15
2013-02-27 15:49:38, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:38, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:49:38, Info [0x0b008c] WDS Status=1722
2013-02-27 15:49:38, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:38, Info [0x0b008c] WDS Detection Location=323
2013-02-27 15:49:38, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:49:38, Info [0x0b008c] WDS Proces ID=748
2013-02-27 15:49:38, Info [0x0b008c] WDS GeneratingComponent=18
2013-02-27 15:49:38, Info [0x0b008c] WDS Status=1237
2013-02-27 15:49:38, Info [0x0b008c] WDS Flags=0x0
2013-02-27 15:49:38, Info [0x0b008c] WDS Detection Location=313
2013-02-27 15:49:38, Info [0x0b008c] WDS Parameters Count=0
2013-02-27 15:49:38, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1891] Expression: , Win32 Error=0x7a
2013-02-27 15:49:38, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1699] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:38, Info [0x0b008c] WDS [d:\w7rtm\base\ntsetup\opktools\wds\wdscsl\client\clientlib.cpp:1707] Expression: , Win32 Error=0x6ba
2013-02-27 15:49:38, Info [0x0b002c] WDS InitializeLogging: RPC_S_SERVER_UNAVAILABLE - Retrying server request for initializing logging.
2013-02-27 15:49:39, Error [0x0b004f] WDS CreateClientSession: Failed to initialize Client -> Server logging. Error code [0x800706BA].[gle=0x000006ba]
2013-02-27 15:49:39, Error [0x0b0055] WDS CreateClientSession: Failed to create client session. Error code [0x800706BA].[gle=0x000006ba]
2013-02-27 15:49:39, Error [0x0b0065] WDS CallBack_WdsClient_DetectWdsMode: Failed to create client session or initialize WDS unattend. Error [0x800706BA][gle=0x000006ba]
2013-02-27 15:49:39, Info [0x0640ae] IBSLIB PublishMessage: Publishing message [WdsClient: An error occurred while communicating with the Windows Deployment Services server. Please check to ensure that the server is operational and that the necessary ports are open on the server's firewall. Server name [file-1.xclaimprojects.com], Server IP address [192.168.53.15].]
2013-02-27 15:49:39, Error [0x0b0052] WDS CallBack_WdsClient_ErrorEventHandler: Problem processing error event. Error code [0x80070057].[gle=0x00000057]
netstat -r showing the two addresses as below
Code:
===========================================================================
Interface List
2...00 1b 38 3d 0d a4 ......Realtek RTL8101E Family PCI-E Fast Ethernet NIC (NDIS 6.20)
1...........................Software Loopback Interface 1
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.53.251 192.168.53.180 276
127.0.0.0 255.0.0.0 On-link 127.0.0.1 306
127.0.0.1 255.255.255.255 On-link 127.0.0.1 306
127.255.255.255 255.255.255.255 On-link 127.0.0.1 306
192.168.53.0 255.255.255.0 On-link 192.168.53.180 276
192.168.53.15 255.255.255.255 192.168.53.251 192.168.53.180 276
192.168.53.180 255.255.255.255 On-link 192.168.53.180 276
192.168.53.202 255.255.255.255 On-link 192.168.53.180 276
192.168.53.255 255.255.255.255 On-link 192.168.53.180 276
224.0.0.0 240.0.0.0 On-link 127.0.0.1 306
224.0.0.0 240.0.0.0 On-link 192.168.53.180 276
255.255.255.255 255.255.255.255 On-link 127.0.0.1 306
255.255.255.255 255.255.255.255 On-link 192.168.53.180 276
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
2 276 ::/0 fe80::21e:f7ff:fe15:6777
1 306 ::1/128 On-link
2 28 2001:470:9652:2::/64 On-link
2 276 2001:470:9652:2:8d1e:5fa1:1880:8703/128
On-link
2 276 2001:470:9652:2:d00f:9ced:1e84:65a8/128
On-link
2 276 fe80::/64 On-link
2 276 fe80::d00f:9ced:1e84:65a8/128
On-link
1 306 ff00::/8 On-link
2 276 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
RE: Problem with iSCSI and WDS - ArneLovius - 2013-02-27 19:23
To remove the possibility of the NIC driver I had added to WDS being the cause of any problems, I removed the boot image from WDS, and added a pristine 2008r2 SP1 boot.wim into WDS.
I then tested on 2008r2 hyper-v, and with WDS exactly the same results as with the Toshiba, the same error message and two IP addresses...
With wimboot I get much further, but although I can see the iSCSI connection, and capture the traffic in Wireshark, the installer can't see the disk...
hopefully these attachments will let somebody smarter than me tell me whats going wrong with wimboot
pcap showing the iSCSI traffic [attachment=27]
syslog output from ipxe [attachment=28]
setupact log [attachment=29]
If I get the time tomorrow, I'll have another go with WDS and see if I can capture the traffic that leads to two IP addresses
RE: Problem with iSCSI and WDS - ArneLovius - 2013-03-01 17:49
After spending much time reading and cogitating, then more reading, the reading the mailing list archives, then reading my posts in this thread...
I realized the significance of the route being added.
I added a new route in DHCP using the iPXE User Class setting it to the iSCSI server (which is also the WDS Server, not sure which is the more important) and had another go.
I am now installing Windows 7 to an iSCSI volume from WDS :-)
RE: Problem with iSCSI and WDS - mcb30 - 2013-03-01 17:54
(2013-03-01 17:49)ArneLovius Wrote: I added a new route in DHCP using the iPXE User Class setting it to the iSCSI server (which is also the WDS Server, not sure which is the more important) and had another go.
I am now installing Windows 7 to an iSCSI volume from WDS :-)
Glad you got it working!
What precisely was the fix? Someone might find it useful in future.
Michael
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - ArneLovius - 2013-03-01 20:51
The problem will not affect all installations.
If the site just had a router/L3 switch as the default gateway, then I think that as long as there was ICMP redirection on the router/L3 switch, the problem would not arise.
At my location, a Cisco ASA is the default gateway, a firewall rather than a router....
By adding to the iPXE user class (in the same way as for PXE Chain Loading) DHCP option 003 (Router) with the IP address of the iSCSI server, when iPXE writes the iBFT, the router/default gateway is set to the iSCSI server
This means that when Windows reads the iBFT and sets a static route to the iSCSI SAN/Server using the address that was the default gateway of the NIC in the iBFT, the gateway address for the iSCSI SAN/Server is the iSCSI SAN/Server, rather than in my case the Cisco ASA firewall...
As most iSCSI installations would have the iSCSI SAN/Server on the same subnet as the client, it might be worthwhile to document on the WDS iSCSI howto, setting this DHCP option using the iPXE User Class by default, adding the proviso "unless your iSCSI SAN/Server is on a different subnet"
The light bulb came on when reading this email in the mailing list http://lists.ipxe.org/pipermail/ipxe-devel/2013-January/002117.html and having re-read it beyond where I stopped, it even says it explicitly :-)
If I had used sanbootconf I presume that I would not have experienced the problem, but there was no documentation to suggest that it was required on the WDS iSCSI howto when using Windows 7 or Windows Server 2008r2, which is where I started from.
The two IP addresses in the setupact.log were a red herring, they exist in the setupact.log of a completed install. Why it does it, I haven't got a clue...
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - robinsmidsrod - 2013-03-02 18:01
Arnelovius: Thank you very much for the response! Adding this code to my Win7 iSCSI installer seems to have finally made the iSCSI volume show up in diskpart as expected:
Code:
# Force gateway to be the iSCSI target server
set netX/gateway 10.1.1.10
Now I can finally continue where I left off more than a year ago!
Unfortunally my happiness was unfounded. I got this message shortly after bootup. VirtualBox trickery?
https://dl.dropbox.com/u/354628/VirtualBox%20iSCSI%20Windows%20Install.png
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - robinsmidsrod - 2013-03-03 12:09
I just want to chime in and tell everyone that I FINALLY have Windows 7 running inside VirtualBox with the boot drive on iSCSI. Here is an image as proof: https://dl.dropbox.com/u/354628/VirtualBox%20running%20Windows7%20off%20of%20iSCSI%20volume.png
The problem I mentioned above with unsigned drivers can be easily overcome. On the first boot after the WinPE installation, just disable driver signature checking temporarily and the installation will continue as it should. Any subsequent boot does not need driver signing disabled. I'm not sure if this was an issue with my Windows installation media, or something else. At least now I've got something that works that I can continue experimenting with.
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - ArneLovius - 2013-03-03 15:56
which virtualbox NIC are you using in the guest ?
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - robinsmidsrod - 2013-03-03 16:25
Intel PRO/1000 MT Desktop (bridged to Intel 82579V on my Windows host machine).
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - ArneLovius - 2013-03-03 16:47
Sorry, I should have worked it out from the image...
That NIC has native support in Win7, I'd suspect your installation media, I'll have a go at installing virtualbox and seeing if I hit the same error.
Interesting idea to set the gateway in the ipxe file, but it means you need to know which NIC will be used to boot before you boot, if you set it via the DHCP option (using the iPXE user class), then it's always going to be on the correct NIC...
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - ArneLovius - 2013-03-03 19:06
I just setup virtualbox on the dell laptop that won't do WDS from iPXE
Added a new disk to my iSCSI target (Windows 2012) and booted
The TFTP download of boot.wim was painfully slow, but eventually completed.
The guest could see the iSCSI volume, and its currently on "Expanding Windows Files"
I'm guessing that your install crashed _after_ its first reboot, so I've got a while to wait as the host is only a Centrino duo 1.2 :-)
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - robinsmidsrod - 2013-03-03 23:07
(2013-03-03 16:47)ArneLovius Wrote: Interesting idea to set the gateway in the ipxe file, but it means you need to know which NIC will be used to boot before you boot, if you set it via the DHCP option (using the iPXE user class), then it's always going to be on the correct NIC...
Actually, netX is literally 'netX', it's not a stand-in for net0, net1, and so forth. netX means "the last opened network device", which is particularly useful in scripts like mine, when you don't know which device has actually been opened. Therefore, no need to set it in DHCP options.
And the crash happened for me on the first "sanboot" of the iSCSI volume after the WinPE session completed with the install process.
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - ArneLovius - 2013-03-04 17:56
aah, the netX would be me demonstrating my lack of knowledge about iPXE :-)
Using Virtualbox 4.2.8 and installing from WDS, it went straight through
[attachment=31]
RE: Problem with iSCSI and WDS (Solved with DHCP route for iPXE User Class) - mcb30 - 2013-03-04 22:12
(2013-03-01 20:51)ArneLovius Wrote: As most iSCSI installations would have the iSCSI SAN/Server on the same subnet as the client, it might be worthwhile to document on the WDS iSCSI howto, setting this DHCP option using the iPXE User Class by default, adding the proviso "unless your iSCSI SAN/Server is on a different subnet"
Thanks; I've updated the troubleshooting section of that page with some information about this problem!
Michael
|