Client Management Suite

 View Only

Script to Uninstall ACLIENT from the Machine [Uninstall & Cleanup Script] 

Mar 18, 2009 04:05 PM

Here is my script to uninstall ACLIENT from the machine. The script will uninstall using uninstall command and cleans up registry, files and folders which are remaining after the uninstall. Change the script according to your requirements. Good luck.

'DECLARE VARIABLES
'On Error Resume Next
Dim path

Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."

Set shell = CreateObject("WScript.Shell")
set fso = CreateObject("Scripting.FileSystemObject")
Set env = shell.Environment("Process")
Systemdrive = env.Item("Systemdrive")
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
   strComputer & "\root\default:StdRegProv")
'===========================================================
'CHANGE THE PATH OF THE EXE ACCORDING TO YOUR REQUIREMENT
path = Chr(34) & "C:\altiris\aclient\aclient.exe" & Chr(34) & " /remove /silent"
'===========================================================
'shell.Run(path, 1, true)

'WScript.Sleep 30000

'=======================================================================
'FIND AND DELETE FILES
'=======================================================================
If fso.FileExists (Systemdrive & "\aclient.cfg") Then
 fso.DeleteFile (Systemdrive & "\aclient.cfg"), true
End If
If fso.FileExists (Systemdrive & "\WINDOWS\System32\drivers\AlKernel.sys") Then
 fso.DeleteFile Systemdrive & "\WINDOWS\System32\drivers\AlKernel.sys", true
End If
If fso.FileExists (Systemdrive & "\WIndows\Temp\alsmb.exe") Then
 fso.DeleteFile Systemdrive & "\Windows\Temp\alsmb.exe", True
End If
If fso.FolderExists (Systemdrive & "\Altiris\AClient") Then
 fso.DeleteFolder Systemdrive & "\Altiris\AClient", true
End If
If fso.FolderExists (Systemdrive & "\altiris") Then
 fso.DeleteFolder Systemdrive & "\Altiris", True
End If
'=======================================================================

'=======================================================================
'FIND AND DELETE REGISTRY KEYS
'=======================================================================
strKeyPath = "SYSTEM\CurrentControlSet\Enum\Root\LEGACY_ACLIENT"
oReg.EnumValues HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames, arrValueTypes
If IsNull(arrValueNames) Then 
     'Wscript.Echo "The registry key does not exist!"
Else
 'Wscript.Echo "The registry key exists!"
 shell.RegDelete "HKLM\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_ACLIENT\"
End If

strKeyPath = "SYSTEM\ControlSet001\Enum\Root\LEGACY_ACLIENT"
oReg.EnumValues HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames, arrValueTypes
If IsNull(arrValueNames) Then 
     'Wscript.Echo "The registry key does not exist!"
Else
 'Wscript.Echo "The registry key exists!"
 shell.RegDelete "HKLM\SYSTEM\ControlSet001\Enum\Root\LEGACY_ACLIENT\"
End If

strKeyPath = "SYSTEM\ControlSet001\Services\AClient"
oReg.EnumValues HKEY_LOCAL_MACHINE,strKeyPath,arrValueNames, arrValueTypes
If IsNull(arrValueNames) Then 
     'Wscript.Echo "The registry key does not exist!"
Else
 'Wscript.Echo "The registry key exists!"
 shell.RegDelete "HKLM\SYSTEM\ControlSet001\Services\AClient\"
End If

'shell.RegDelete "HKLM\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_ACLIENT\"
'shell.RegDelete "HKLM\SYSTEM\ControlSet001\Enum\Root\LEGACY_ACLIENT\"
'shell.RegDelete "HKLM\SYSTEM\ControlSet001\Services\AClient\"
'=======================================================================

strKeyPath = "SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List"
strStringValueName = "C:\Program Files\Altiris\AClient\AClntUsr.EXE"
oReg.DeleteValue HKEY_LOCAL_MACHINE,strKeyPath,strStringValueName

strKeyPath = "SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List"
strStringValueName = "C:\Program Files\Altiris\AClient\AClntUsr.EXE"
oReg.DeleteValue HKEY_LOCAL_MACHINE,strKeyPath,strStringValueName

shell.LogEvent 0, "Successfully removed aclient"

Set shell = Nothing
Set fso = Nothing

WScript.Quit

Statistics
0 Favorited
1 Views
1 Files
0 Shares
0 Downloads
Attachment(s)
zip file
Uninstall_aclient.zip   1 KB   1 version
Uploaded - Feb 25, 2020

Tags and Keywords

Comments

Nov 03, 2009 07:11 PM

This does not work in all circumstances in particular your script will fail on folders with read-only attributes. Adding a function to remove read-only attributes if they are encountered is a smart move. You need to think about including logging and on error resume statements so that you can ininstall broken installations.

Aug 11, 2009 03:53 PM

[13:01 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 00E74278!
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:01 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 00E74CA0!
[13:01 13.08.2009] CMountedVolume2K::AttachToVolume():  Checking to see if \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ is a valid volume
[13:01 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Trying to find volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Found the volume!
[13:01 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::AttachToVolume():  Building a list of mount points for the volume
[13:01 13.08.2009] CMountedVolume2K::BuildMountPointList():  Finding all mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumMountPoints():  Finding all mount points
[13:01 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 128
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ doesn't have any mount points!
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 2
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\, last error = 2
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ doesn't support reparse points!
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 4390
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\, last error = 4390
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumMountPoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::BuildMountPointList():  Found mount point C:\
[13:01 13.08.2009] CMountedVolume2K::BuildMountPointList():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::GetVolumeLabel():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::GetVolumeIDBytes():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::AttachToVolume():  Returning 0
[13:01 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 00D834E0!
[13:01 13.08.2009] CMountedVolume2K::AttachToVolume():  Checking to see if \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ is a valid volume
[13:01 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Trying to find volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Found the volume!
[13:01 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::AttachToVolume():  Building a list of mount points for the volume
[13:01 13.08.2009] CMountedVolume2K::BuildMountPointList():  Finding all mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumMountPoints():  Finding all mount points
[13:01 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:01 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 128
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ doesn't have any mount points!
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 2
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\, last error = 2
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:01 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ doesn't support reparse points!
[13:01 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 4390
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\, last error = 4390
[13:01 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::EnumMountPoints():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::BuildMountPointList():  Found mount point D:\
[13:01 13.08.2009] CMountedVolume2K::BuildMountPointList():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::GetVolumeLabel():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::GetVolumeIDBytes():  Returning 0
[13:01 13.08.2009] CMountedVolume2K::AttachToVolume():  Returning 0
[13:01 13.08.2009] CMountedVolumeMgr::BuildVolumeList():  Returning 0
[13:01 13.08.2009] CMountedVolumeMgr::WriteToRegistry():  Attempting to write volumes to Software\Altiris\Client Service\Volumes!
[13:01 13.08.2009] CMountedVolume::WriteToRegistry():  Returning 0
[13:01 13.08.2009] CMountedVolume::WriteToRegistry():  Returning 0
[13:01 13.08.2009] CMountedVolumeMgr::WriteToRegistry():  Returning 0
[13:01 13.08.2009] CConfigVolumes::SaveVolumes():  Returning 0
[13:01 13.08.2009] CConfigEngine::RunPrepare():  SaveVolumes return 0
[13:01 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:01 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 2
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CMainWindow::Reboot(): Flags == 9
[13:01 13.08.2009] CMainWindow::Reboot():  Writing config file data
[13:01 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:01 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 2
[13:01 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:01 13.08.2009] CMainWindow::Reboot():  Shutting down NT
[13:01 13.08.2009] CMainWindow::KillWinlogon(): Trying to post a close message to the winlogon desktop!
[13:01 13.08.2009] CDesktopRCThread::OnPreInitThread(): SetThreadDesktop returnd 1, GetLastError = 0!
[13:01 13.08.2009] CMainWindow::KillWinlogon(): Thread created!
[13:01 13.08.2009] CDesktopRCThread::PostCloseBroadcast(): hEvent = 1276, bResult = 1
[13:01 13.08.2009] CDesktopRCThread::OnPostCloseBroadcast() Started into function...
[13:01 13.08.2009] CDesktopRCThread::PostCloseBroadcast(): Done waiting for event.
[13:01 13.08.2009] CMainWindow::KillWinlogon(): Post successful!
[13:01 13.08.2009] CMainWindow::Reboot():  trying ExitWindowsEx for 2k ACPI shutdown or suspend
[13:01 13.08.2009] CMainWindow::Reboot():  It appears the reboot was successful
[13:01 13.08.2009] CMainWindow::OnClose(): Got a close message!
[13:01 13.08.2009] CMainWindow::OnClose(): shutting down
[13:01 13.08.2009] CClientDlg::OnClose(): Closing client dialog
[13:01 13.08.2009] [00000230][00E5FCE8]  CDBClient::SyncronizeClose(): Waiting for close access
[13:01 13.08.2009] [00000230][00E5FCE8]  CDBClient::SyncronizeClose(): In close already: 0
[13:01 13.08.2009] [00000230][00E5FCE8]  CDBClient::Close(): shutting down
[13:01 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[13:01 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[13:01 13.08.2009] CMainWindow::OnEndSession():  Our session is ending, this is not a logoff!
[13:02 13.08.2009] CAClientApp::ProcessMessages():  Processing message 874, 0, 0
[13:02 13.08.2009] [00000230][00E5FCE8]  CDBClient::Close(): Closing permanently
[13:02 13.08.2009] [00000230][00E5FCE8]  CDBClient::Close(): shut down.
[13:02 13.08.2009] [00000230][00E5FCE8]  CDBClient::EndClose(): Were in a close: 1
[13:02 13.08.2009] CMainWindow::OnDestroy(): Closing Deleting dbcwindow!
[13:02 13.08.2009] CDBCWindow::OnDestroy: Destroying DBClient!!!!!!!!
[13:02 13.08.2009] CDBClient::~CDBClient(): Invalidating signature
[13:02 13.08.2009] CConfigNetworking::~CConfigNetworking():  Deleted...
[13:02 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[13:02 13.08.2009] CConfigNetware::~CConfigNetware():  Deleted...
[13:02 13.08.2009] CConfigLicense::~CConfigLicense():  Deleted...
[13:02 13.08.2009] CConfigGlobal::~CConfigGlobal():  Deleted...
[13:02 13.08.2009] CAClientApp::Run():  Calling ExitInstance under normal conditions...
[13:05 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[13:05 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[13:05 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[13:05 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[13:05 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[13:05 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[13:05 13.08.2009] Product Name from SystemInfo = System Product Name
[13:05 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[13:05 13.08.2009] AssetTagNumber = Asset-1234567890
[13:05 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[13:05 13.08.2009] Model-Number = P5GC
[13:05 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[13:05 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:05 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:05 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[13:05 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[13:05 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[13:05 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[13:05 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[13:05 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[13:05 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[13:05 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:05 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:05 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:05 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:05 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:05 13.08.2009] CNicInfo::Get():  Completed successfully
[13:05 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[13:05 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[13:05 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[13:05 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[13:05 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[13:05 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[13:05 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[13:05 13.08.2009] CAClientApp::InitInstance():  Preparing to run as a service.
[13:05 13.08.2009] CAClientApp::InitInstance():  Creating the main window.
[13:05 13.08.2009] CAClientApp::CreateMainWindow(): Hi, I'm AClient version 6.1.359
[13:05 13.08.2009] CAClientApp::CreateMainWindow(): OS: Windows XP Professional 5.1 (Build 2600: Service Pack 3)
[13:05 13.08.2009] CAClientApp::CreateMainWindow(): Got foreground window 65660
[13:05 13.08.2009] CDBCWindow::OnCreate: Creating DBClient!
[13:05 13.08.2009] [00000EA4][008DFCE8]  CDBClient::CDBClient(): I am not virtual!!!!
[13:05 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[13:05 13.08.2009] CMainWindow::InitConfig():  Creating new config engine
[13:05 13.08.2009] CConfigGlobal::Reset():  Setting m_nConfigMode to MODE_NONE
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:05 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:05 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:05 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:05 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:05 13.08.2009] CNicInfo::Get():  Completed successfully
[13:05 13.08.2009] CMainWindow::InitConfig(): Reading from the config file
[13:05 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:05 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 2
[13:05 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:05 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:05 13.08.2009] CConfigMultiIP::ReadFile():  Reading from file C:\AClient.cfg
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:05 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:05 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:05 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:05 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading nics from C:\AClient.cfg
[13:05 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading 1 nics from the config file, attempting to match up 1 local nics
[13:05 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading config file nic 0
[13:05 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:05 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Trying to find a match for config file nic 0: PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Testing local nic 0 for match, PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Local nic 0 is a match for 0, PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matching up 0 nics by index, 1 already done
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matched 1 config file nics, 0 left
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Done with ReadNicsBasedOnPCI
[13:06 13.08.2009] CConfigMultiIP::ReadFile():  Done!
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigSettings::ReadFile():  Reading from file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigSettings::ReadFile():  Done!
[13:06 13.08.2009] CMainWindow::OnCreate():  Creating main window!
[13:06 13.08.2009] CMainWindow::OnCreate():  Config status:  Mode = 2, Disabled = 1!
[13:06 13.08.2009] CMainWindow::OnCreate():  Not waiting for services!
[13:06 13.08.2009] CConfigGlobal::Reset():  Setting m_nConfigMode to MODE_NONE
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:06 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:06 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:06 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:06 13.08.2009] CNicInfo::Get():  Completed successfully
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 2
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadFile():  Reading from file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading nics from C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading 1 nics from the config file, attempting to match up 1 local nics
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading config file nic 0
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Trying to find a match for config file nic 0: PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Testing local nic 0 for match, PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Local nic 0 is a match for 0, PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matching up 0 nics by index, 1 already done
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matched 1 config file nics, 0 left
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Done with ReadNicsBasedOnPCI
[13:06 13.08.2009] CConfigMultiIP::ReadFile():  Done!
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigSettings::ReadFile():  Reading from file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigSettings::ReadFile():  Done!
[13:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 3
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigNetworking::~CConfigNetworking():  Deleted...
[13:06 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[13:06 13.08.2009] CConfigNetware::~CConfigNetware():  Deleted...
[13:06 13.08.2009] CConfigLicense::~CConfigLicense():  Deleted...
[13:06 13.08.2009] CConfigGlobal::~CConfigGlobal():  Deleted...
[13:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 3
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 6
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Showing NT splash screen
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Posting WMAPP_SHOW_CONFIG message on thread 2068
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Message posted
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Showing config splash screen
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Posting WMAPP_SHOW_CONFIG message on thread 1080
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Message posted
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Updating the registry settings
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): registry settings updated
[13:06 13.08.2009] CConfigEngine::OnConfigItemWrite
[13:06 13.08.2009] CConfigEngine::OnConfigItemRestore
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:06 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:06 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:06 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:06 13.08.2009] CNicInfo::Get():  Completed successfully
[13:06 13.08.2009] CNicInfo2K::SetDHCP():  Enabling DHCP!
[13:06 13.08.2009] CConfigNetworking::EnableComputerNameErrors():  Opening service control manager...
[13:06 13.08.2009] CConfigNetworking::EnableComputerNameErrors():  Service control manager opened.
[13:06 13.08.2009] CConfigNetworking::EnableComputerNameErrors():  Enabling NetBIOS over TCP/IP
[13:06 13.08.2009] CConfigNetworking::EnableComputerNameErrors():  Enabling lmhosts
[13:06 13.08.2009] CConfigNetworking::EnableComputerNameErrors():  Closing SC manager
[13:06 13.08.2009] CConfigNetworking::EnableComputerNameErrors():  returning zero...
[13:06 13.08.2009] CMountedVolumeMgr::ReadFromRegistry():  Attempting to read volumes from Software\Altiris\Client Service\Volumes!
[13:06 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 0091C618!
[13:06 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 0091C7A0!
[13:06 13.08.2009] CMountedVolumeMgr::BuildUnattachedVolumeList():  Returning 0
[13:06 13.08.2009] CMountedVolume::ReadFromRegistry():  Returning 0
[13:06 13.08.2009] CMountedVolume::ReadFromRegistry():  Returning 0
[13:06 13.08.2009] CMountedVolumeMgr::ReadFromRegistry():  Returning 0
[13:06 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 0091C928!
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:06 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 0091B458!
[13:06 13.08.2009] CMountedVolume2K::AttachToVolume():  Checking to see if \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ is a valid volume
[13:06 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Trying to find volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Found the volume!
[13:06 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::AttachToVolume():  Building a list of mount points for the volume
[13:06 13.08.2009] CMountedVolume2K::BuildMountPointList():  Finding all mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumMountPoints():  Finding all mount points
[13:06 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 128
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ doesn't have any mount points!
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 2
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\, last error = 2
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ doesn't support reparse points!
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 4390
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\, last error = 4390
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumMountPoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::BuildMountPointList():  Found mount point C:\
[13:06 13.08.2009] CMountedVolume2K::BuildMountPointList():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::GetVolumeLabel():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::GetVolumeIDBytes():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::AttachToVolume():  Returning 0
[13:06 13.08.2009] CMountedVolumeMgr::AllocateVolume():  Returning 012B34E0!
[13:06 13.08.2009] CMountedVolume2K::AttachToVolume():  Checking to see if \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ is a valid volume
[13:06 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Trying to find volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Found the volume!
[13:06 13.08.2009] CMountedVolume2K::IsVolumeNameValid():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::AttachToVolume():  Building a list of mount points for the volume
[13:06 13.08.2009] CMountedVolume2K::BuildMountPointList():  Finding all mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumMountPoints():  Finding all mount points
[13:06 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::EnumDriveLetterMountPoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added first volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Added volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\
[13:06 13.08.2009] CMountedVolume2K::EnumVolumes():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 128
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ doesn't have any mount points!
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 2
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\, last error = 2
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Enumerating drive letter mount points
[13:06 13.08.2009] CMountedVolume2K::DoesVolumeSupportReparsePoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  The volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ doesn't support reparse points!
[13:06 13.08.2009] CMountedVolume2K::EnumVolumeMountPoints():  Returning 4390
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Unable to enumerate mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\, last error = 4390
[13:06 13.08.2009] CMountedVolume2K::EnumNTFSMountPoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::EnumMountPoints():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::BuildMountPointList():  Found mount point D:\
[13:06 13.08.2009] CMountedVolume2K::BuildMountPointList():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::GetVolumeLabel():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::GetVolumeIDBytes():  Returning 0
[13:06 13.08.2009] CMountedVolume2K::AttachToVolume():  Returning 0
[13:06 13.08.2009] CMountedVolumeMgr::BuildVolumeList():  Returning 0
[13:06 13.08.2009] CConfigVolumes::MatchUpMountedVolumes():  Matching volumes by ID
[13:06 13.08.2009] CConfigVolumes::MatchUpMountedVolumes():  Matched volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\ with \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\!
[13:06 13.08.2009] CConfigVolumes::MatchUpMountedVolumes():  Matched volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\ with \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\!
[13:06 13.08.2009] CConfigVolumes::MatchUpMountedVolumes():  We matched up 2 volumes by ID
[13:06 13.08.2009] CConfigVolumes::MatchUpMountedVolumes():  We matched up 2 volumes of 2 total
[13:06 13.08.2009] CConfigVolumes::MatchUpMountedVolumes():  Returning 0
[13:06 13.08.2009] CConfigVolumes::FindBestMatchForVolume():  Returning 0
[13:06 13.08.2009] CConfigVolumes::RestoreVolumesDriveLetters():  Returning 0
[13:06 13.08.2009] CConfigVolumes::RestoreVolumePairMountPoints():  Rebuilding mount points for volume \\?\Volume{947dfb46-8293-11de-87b7-806d6172696f}\.
[13:06 13.08.2009] CConfigVolumes::RestoreVolumePairMountPoints():  Returning 0
[13:06 13.08.2009] CConfigVolumes::RestoreVolumePairMountPoints():  Rebuilding mount points for volume \\?\Volume{6ab96842-8294-11de-805c-806d6172696f}\.
[13:06 13.08.2009] CConfigVolumes::RestoreVolumePairMountPoints():  Returning 0
[13:06 13.08.2009] CConfigVolumes::RestoreVolumesMountPoints():  Returning 0
[13:06 13.08.2009] CConfigVolumes::RestoreVolumes():  Returning 0
[13:06 13.08.2009] CConfigVolumes::RestoreVolumesFromRegistry():  Returning 0
[13:06 13.08.2009] CConfigEngine::RunRestore():  RestoreVolumesFromRegistry return 0
[13:06 13.08.2009] CConfigNetworking::Set(): nMask = 2
, m_strComputerName = INTEL
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 6
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadFile():  Reading from file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading nics from C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading 1 nics from the config file, attempting to match up 1 local nics
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading config file nic 0
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Trying to find a match for config file nic 0: PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Testing local nic 0 for match, PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Local nic 0 is a match for 0, PCI Bus = 00, Dev = 00, Func = 00
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matching up 0 nics by index, 1 already done
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matched 1 config file nics, 0 left
[13:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Done with ReadNicsBasedOnPCI
[13:06 13.08.2009] CConfigMultiIP::ReadFile():  Done!
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigSettings::ReadFile():  Reading from file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigSettings::ReadFile():  Done!
[13:06 13.08.2009] CConfigEngine::OnConfigItemFinishNoReply
[13:06 13.08.2009] CConfigEngine::OnConfigurationComplete():  Restoring plain text passwords...
[13:06 13.08.2009] CConfigEngine::OnConfigurationComplete():  Restoring auto-logon...
[13:06 13.08.2009] CConfigEngine::GetRecordedAutoAdminLogon():  We have previously recorded the old auto-logon as:
[13:06 13.08.2009] CConfigEngine::OnConfigurationComplete():  Removing splash screen and restoring bitmap...
[13:06 13.08.2009] CConfigEngine::OnConfigurationComplete(): No more config to do...
[13:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CMainWindow::Reboot(): Flags == 2
[13:06 13.08.2009] CMainWindow::Reboot():  Writing config file data
[13:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[13:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:06 13.08.2009] CMainWindow::Reboot():  Checking to see if we need to boot production
[13:06 13.08.2009] CMainWindow::Reboot():  Shutting down NT
[13:06 13.08.2009] CMainWindow::KillWinlogon(): Trying to post a close message to the winlogon desktop!
[13:06 13.08.2009] CDesktopRCThread::OnPreInitThread(): SetThreadDesktop returnd 1, GetLastError = 0!
[13:06 13.08.2009] CMainWindow::KillWinlogon(): Thread created!
[13:06 13.08.2009] CDesktopRCThread::OnPostCloseBroadcast() Started into function...
[13:06 13.08.2009] CDesktopRCThread::PostCloseBroadcast(): hEvent = 1224, bResult = 1
[13:06 13.08.2009] CDesktopRCThread::PostCloseBroadcast(): Done waiting for event.
[13:06 13.08.2009] CMainWindow::KillWinlogon(): Post successful!
[13:06 13.08.2009] CMainWindow::Reboot():  trying InitiateSystemShutdown
[13:06 13.08.2009] CMainWindow::Reboot():  It appears the reboot was successful
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Hiding splash screen
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Posting WMAPP_HIDE_CONFIG message on thread 1080
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Message posted
[13:06 13.08.2009] CConfigWndThread::OnHideConfig(): Destroying window
[13:06 13.08.2009] CConfigWndThread::OnHideConfig(): Window destroyed
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Config wnd thread deleted
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Hiding NT splash screen
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Posting WMAPP_HIDE_CONFIG message on thread 2068
[13:06 13.08.2009] CConfigWndThread::ShowConfig(): Message posted
[13:06 13.08.2009] CConfigWndThread::OnHideConfig(): Destroying window
[13:06 13.08.2009] CConfigWndThread::OnHideConfig(): Window destroyed
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): NT Config wnd thread deleted
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Updating the registry settings
[13:06 13.08.2009] CConfigEngine::ShowConfigSplash(): registry settings updated
[13:06 13.08.2009] CMainWindow::OnDestroy(): Closing Deleting dbcwindow!
[13:06 13.08.2009] CDBCWindow::OnDestroy: Destroying DBClient!!!!!!!!
[13:06 13.08.2009] returning because DBClient->m_pMainWnd isn't valid or is closing - line 398
[13:06 13.08.2009] CDBClient::~CDBClient(): Invalidating signature
[13:06 13.08.2009] CConfigNetworking::~CConfigNetworking():  Deleted...
[13:06 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[13:06 13.08.2009] CConfigNetware::~CConfigNetware():  Deleted...
[13:06 13.08.2009] CConfigLicense::~CConfigLicense():  Deleted...
[13:06 13.08.2009] CConfigGlobal::~CConfigGlobal():  Deleted...
[13:07 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[13:07 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[13:07 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[13:07 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[13:07 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[13:07 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[13:07 13.08.2009] Product Name from SystemInfo = System Product Name
[13:07 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[13:07 13.08.2009] AssetTagNumber = Asset-1234567890
[13:07 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[13:07 13.08.2009] Model-Number = P5GC
[13:07 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[13:07 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:07 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[13:07 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[13:07 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[13:07 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[13:07 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[13:07 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[13:07 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[13:07 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[13:07 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:07 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:07 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:07 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:07 13.08.2009] CNicInfo::Get():  Completed successfully
[13:07 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[13:07 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[13:07 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[13:07 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[13:07 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[13:07 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[13:07 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[13:07 13.08.2009] CAClientApp::InitInstance():  Preparing to run as a service.
[13:07 13.08.2009] CAClientApp::InitInstance():  Creating the main window.
[13:07 13.08.2009] CAClientApp::CreateMainWindow(): Hi, I'm AClient version 6.1.359
[13:07 13.08.2009] CAClientApp::CreateMainWindow(): OS: Windows XP Professional 5.1 (Build 2600: Service Pack 3)
[13:07 13.08.2009] CAClientApp::CreateMainWindow(): Got foreground window 0
[13:07 13.08.2009] CDBCWindow::OnCreate: Creating DBClient!
[13:07 13.08.2009] [000002D8][00E5FCE8]  CDBClient::CDBClient(): I am not virtual!!!!
[13:07 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[13:07 13.08.2009] CMainWindow::InitConfig():  Creating new config engine
[13:07 13.08.2009] CConfigGlobal::Reset():  Setting m_nConfigMode to MODE_NONE
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:07 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:07 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:07 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:07 13.08.2009] CNicInfo::Get():  Completed successfully
[13:07 13.08.2009] CMainWindow::InitConfig(): Reading from the config file
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 0
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigMultiIP::ReadFile():  Reading from file C:\AClient.cfg
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading nics from C:\AClient.cfg
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading 1 nics from the config file, attempting to match up 1 local nics
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading config file nic 0
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Trying to find a match for config file nic 0: PCI Bus = 00, Dev = 00, Func = 00
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Testing local nic 0 for match, PCI Bus = 00, Dev = 00, Func = 00
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Local nic 0 is a match for 0, PCI Bus = 00, Dev = 00, Func = 00
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matching up 0 nics by index, 1 already done
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matched 1 config file nics, 0 left
[13:07 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Done with ReadNicsBasedOnPCI
[13:07 13.08.2009] CConfigMultiIP::ReadFile():  Done!
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigSettings::ReadFile():  Reading from file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigSettings::ReadFile():  Done!
[13:07 13.08.2009] CMainWindow::OnCreate():  Creating main window!
[13:07 13.08.2009] CMainWindow::OnCreate():  Config status:  Mode = 0, Disabled = 0!
[13:07 13.08.2009] CMainWindow::WaitForServices():  Waiting for services to start!
[13:07 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:07 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[13:07 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[13:07 13.08.2009] CConfigEngine::ShowConfigSplash(): Updating the registry settings
[13:07 13.08.2009] CConfigEngine::ShowConfigSplash(): registry settings updated
[13:07 13.08.2009] CInteractiveUserService::InstallHiddenApp():  Hidden app not detected.
[13:07 13.08.2009] CInteractiveUserService::InstallHiddenApp():  First resource extraction failed.
[13:08 13.08.2009] CInteractiveUserService::InstallHiddenApp():  File copy failed.
[13:08 13.08.2009] CMainWindow::InitClient():  We are no longer configuring, checking for aclient.bat
[13:08 13.08.2009] CAClientApp::CreateMainWindow(): Setting foreground window
[13:08 13.08.2009] CAClientApp::CreateMainWindow(): Reset forground window successfully
[13:08 13.08.2009] CAClientApp::InitInstance():  Initialization successful!
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnResetDBClient: Resetting All DBClients...
[13:08 13.08.2009] CMainWindow::OnInitVCs(): Initializing virtual clients: 0!
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:08 13.08.2009] Инициализация...
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:08 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:08 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:08 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:08 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:08 13.08.2009] CNicInfo::Get():  Completed successfully
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:08 13.08.2009] Создание сокета TCP.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:08 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:08 13.08.2009] AclntUsr timer event fired.
[13:08 13.08.2009] CAClientApp::IsFirewallInstalled(): COM initialized
[13:08 13.08.2009] CAClientApp::IsFirewallEnabled(): COM initialized
[13:08 13.08.2009] CAClientApp::AddAclntUsrToWindowsFirewall(): COM initialized
[13:08 13.08.2009] CAClientApp::AddAclntUsrToWindowsFirewall(): COM initialized
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:08 13.08.2009] Инициализация...
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:08 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:08 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:08 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:08 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:08 13.08.2009] CNicInfo::Get():  Completed successfully
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:08 13.08.2009] Создание сокета TCP.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:08 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[13:08 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[13:08 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[13:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:08 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:08 13.08.2009] Инициализация...
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:08 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:08 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:08 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:08 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:08 13.08.2009] CNicInfo::Get():  Completed successfully
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:08 13.08.2009] Создание сокета TCP.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:08 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:08 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:08 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:08 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:08 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:08 13.08.2009] CNicInfo::Get():  Completed successfully
[13:08 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:08 13.08.2009] Инициализация...
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:08 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:08 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:08 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:08 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:08 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:08 13.08.2009] CNicInfo::Get():  Completed successfully
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:08 13.08.2009] Создание сокета TCP.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:08 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:08 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[13:08 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[13:08 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[13:08 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[13:09 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:09 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:09 13.08.2009] Инициализация...
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:09 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:09 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:09 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:09 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:09 13.08.2009] CNicInfo::Get():  Completed successfully
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:09 13.08.2009] Создание сокета TCP.
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:09 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:09 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:09 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:09 13.08.2009] Инициализация...
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:09 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:09 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:09 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:09 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:09 13.08.2009] CNicInfo::Get():  Completed successfully
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:09 13.08.2009] Создание сокета TCP.
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:09 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:09 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[13:09 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[13:09 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[13:09 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[13:09 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:09 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:09 13.08.2009] Инициализация...
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:09 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:09 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:09 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:09 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:09 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:09 13.08.2009] CNicInfo::Get():  Completed successfully
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:09 13.08.2009] Создание сокета TCP.
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:09 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:09 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:10 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:10 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:10 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:10 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[13:11 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:11 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:11 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:11 13.08.2009] Инициализация...
[13:11 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:11 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:11 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:11 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:11 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:11 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:11 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:11 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:11 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:11 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:11 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:11 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:11 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:11 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:11 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:11 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:11 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:11 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:11 13.08.2009] CNicInfo::Get():  Completed successfully
[13:11 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:11 13.08.2009] Создание сокета TCP.
[13:11 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:11 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:11 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:11 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:11 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:12 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:12 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:12 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:12 13.08.2009] Инициализация...
[13:12 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:12 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:12 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:12 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:12 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:12 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:12 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:12 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:12 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:12 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:12 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:12 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:12 13.08.2009] CNicInfo::Get():  Completed successfully
[13:12 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:12 13.08.2009] Создание сокета TCP.
[13:12 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:12 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:12 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:12 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:12 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:13 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:13 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:13 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:13 13.08.2009] Инициализация...
[13:13 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:13 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:13 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:13 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:13 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:13 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:13 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:13 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:13 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:13 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:13 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:13 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:13 13.08.2009] CNicInfo::Get():  Completed successfully
[13:13 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:13 13.08.2009] Создание сокета TCP.
[13:13 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:13 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:13 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:14 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:14 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:15 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:15 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:15 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:15 13.08.2009] Инициализация...
[13:15 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:15 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:15 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:15 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:15 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:15 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:15 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:15 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:15 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:15 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:15 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:15 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:15 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:15 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:15 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:15 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:15 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:15 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:15 13.08.2009] CNicInfo::Get():  Completed successfully
[13:15 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:15 13.08.2009] Создание сокета TCP.
[13:15 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:15 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:15 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:15 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 32772, lParam = 1244812
[13:15 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:15 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:16 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:16 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:16 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:16 13.08.2009] Инициализация...
[13:16 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:16 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:16 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:16 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:16 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:16 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:16 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:16 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:16 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:16 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:16 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:16 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:16 13.08.2009] CNicInfo::Get():  Completed successfully
[13:16 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:16 13.08.2009] Создание сокета TCP.
[13:16 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:16 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:16 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:16 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:16 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:17 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:17 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:17 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:17 13.08.2009] Инициализация...
[13:17 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:17 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:17 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:17 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:17 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:17 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:17 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:17 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:17 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:17 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:17 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:17 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:17 13.08.2009] CNicInfo::Get():  Completed successfully
[13:17 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:17 13.08.2009] Создание сокета TCP.
[13:17 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:17 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:17 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:18 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:18 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:19 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:19 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:19 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:19 13.08.2009] Инициализация...
[13:19 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:19 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:19 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:19 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:19 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:19 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:19 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:19 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:19 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:19 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:19 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:19 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:19 13.08.2009] CNicInfo::Get():  Completed successfully
[13:19 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:19 13.08.2009] Создание сокета TCP.
[13:19 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:19 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:19 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:19 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:19 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:20 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[13:20 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[13:20 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[13:20 13.08.2009] Инициализация...
[13:20 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:20 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:20 13.08.2009] [000002D8][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[13:20 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:20 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:20 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[13:20 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[13:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[13:20 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[13:20 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[13:20 13.08.2009] CNicInfo::Get():  Getting IP Address
[13:20 13.08.2009] CNicInfo::Get():  Getting DNS Info
[13:20 13.08.2009] CNicInfo::Get():  Getting WINS Info
[13:20 13.08.2009] CNicInfo::Get():  Completed successfully
[13:20 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[13:20 13.08.2009] Создание сокета TCP.
[13:20 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[13:20 13.08.2009] Подключение к хосту: 192.168.192.168.
[13:20 13.08.2009] [000002D8][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[13:20 13.08.2009] [000002D8][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[13:20 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[13:21 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[13:21 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[13:21 13.08.2009] CMainWindow::OnEndSession():  Our session is ending, this is not a logoff!
[13:21 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[13:21 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[13:21 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[13:21 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[13:21 13.08.2009] CMainWindow::OnEndSession():  Our session is ending, this is not a logoff!
[13:21 13.08.2009] CMainWindow::OnClose(): Got a close message!
[13:21 13.08.2009] CMainWindow::OnClose(): shutting down
[13:21 13.08.2009] CClientDlg::OnClose(): Closing client dialog
[13:21 13.08.2009] [000002D8][00E5FCE8]  CDBClient::SyncronizeClose(): Waiting for close access
[13:21 13.08.2009] [000002D8][00E5FCE8]  CDBClient::SyncronizeClose(): In close already: 0
[13:21 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Close(): shutting down
[13:21 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Close(): Closing permanently
[13:21 13.08.2009] [000002D8][00E5FCE8]  CDBClient::Close(): shut down.
[13:21 13.08.2009] [000002D8][00E5FCE8]  CDBClient::EndClose(): Were in a close: 1
[13:21 13.08.2009] CMainWindow::OnDestroy(): Closing Deleting dbcwindow!
[13:21 13.08.2009] CDBCWindow::OnDestroy: Destroying DBClient!!!!!!!!
[13:21 13.08.2009] CDBClient::~CDBClient(): Invalidating signature
[13:21 13.08.2009] CConfigNetworking::~CConfigNetworking():  Deleted...
[13:21 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[13:21 13.08.2009] CConfigNetware::~CConfigNetware():  Deleted...
[13:21 13.08.2009] CConfigLicense::~CConfigLicense():  Deleted...
[13:21 13.08.2009] CConfigGlobal::~CConfigGlobal():  Deleted...
[13:21 13.08.2009] CAClientApp::Run():  Calling ExitInstance under normal conditions...
[21:03 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[21:03 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[21:03 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[21:03 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[21:03 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[21:03 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[21:03 13.08.2009] Product Name from SystemInfo = System Product Name
[21:03 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[21:03 13.08.2009] AssetTagNumber = Asset-1234567890
[21:03 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[21:03 13.08.2009] Model-Number = P5GC
[21:03 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[21:03 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:03 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:03 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[21:03 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[21:03 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[21:03 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[21:03 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[21:03 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[21:03 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[21:03 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[21:03 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:03 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:03 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:03 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:03 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:03 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:03 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:03 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:03 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:03 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:03 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:03 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:03 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:03 13.08.2009] CNicInfo::Get():  Completed successfully
[21:03 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[21:03 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[21:03 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[21:03 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[21:03 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[21:03 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[21:03 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[21:03 13.08.2009] CAClientApp::InitInstance():  Preparing to run as a service.
[21:03 13.08.2009] CAClientApp::InitInstance():  Creating the main window.
[21:03 13.08.2009] CAClientApp::CreateMainWindow(): Hi, I'm AClient version 6.1.359
[21:03 13.08.2009] CAClientApp::CreateMainWindow(): OS: Windows XP Professional 5.1 (Build 2600: Service Pack 3)
[21:03 13.08.2009] CAClientApp::CreateMainWindow(): Got foreground window 0
[21:03 13.08.2009] CDBCWindow::OnCreate: Creating DBClient!
[21:03 13.08.2009] [000001E0][00E5FCE8]  CDBClient::CDBClient(): I am not virtual!!!!
[21:03 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[21:04 13.08.2009] CMainWindow::InitConfig():  Creating new config engine
[21:04 13.08.2009] CConfigGlobal::Reset():  Setting m_nConfigMode to MODE_NONE
[21:04 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:04 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:04 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:04 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:04 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:04 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:04 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:04 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:04 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:04 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:04 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:04 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:04 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:04 13.08.2009] CNicInfo::Get():  Completed successfully
[21:04 13.08.2009] CMainWindow::InitConfig(): Reading from the config file
[21:04 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:04 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 0
[21:04 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[21:06 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[21:06 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[21:06 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[21:06 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[21:06 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[21:06 13.08.2009] Product Name from SystemInfo = System Product Name
[21:06 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[21:06 13.08.2009] AssetTagNumber = Asset-1234567890
[21:06 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[21:06 13.08.2009] Model-Number = P5GC
[21:06 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[21:06 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:06 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:06 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[21:06 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[21:06 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[21:06 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[21:06 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[21:06 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[21:06 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[21:06 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:06 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:06 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:06 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:06 13.08.2009] CNicInfo::Get():  Completed successfully
[21:06 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[21:06 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[21:06 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[21:06 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[21:06 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[21:06 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[21:06 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[21:06 13.08.2009] CAClientApp::InitInstance():  Preparing to run as a service.
[21:06 13.08.2009] CAClientApp::InitInstance():  Creating the main window.
[21:06 13.08.2009] CAClientApp::CreateMainWindow(): Hi, I'm AClient version 6.1.359
[21:06 13.08.2009] CAClientApp::CreateMainWindow(): OS: Windows XP Professional 5.1 (Build 2600: Service Pack 3)
[21:06 13.08.2009] CAClientApp::CreateMainWindow(): Got foreground window 0
[21:06 13.08.2009] CDBCWindow::OnCreate: Creating DBClient!
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::CDBClient(): I am not virtual!!!!
[21:06 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[21:06 13.08.2009] CMainWindow::InitConfig():  Creating new config engine
[21:06 13.08.2009] CConfigGlobal::Reset():  Setting m_nConfigMode to MODE_NONE
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:06 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:06 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:06 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:06 13.08.2009] CNicInfo::Get():  Completed successfully
[21:06 13.08.2009] CMainWindow::InitConfig(): Reading from the config file
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 0
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigMultiIP::ReadFile():  Reading from file C:\AClient.cfg
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading nics from C:\AClient.cfg
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading 1 nics from the config file, attempting to match up 1 local nics
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading config file nic 0
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Trying to find a match for config file nic 0: PCI Bus = 00, Dev = 00, Func = 00
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Testing local nic 0 for match, PCI Bus = 00, Dev = 00, Func = 00
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Local nic 0 is a match for 0, PCI Bus = 00, Dev = 00, Func = 00
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matching up 0 nics by index, 1 already done
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matched 1 config file nics, 0 left
[21:06 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Done with ReadNicsBasedOnPCI
[21:06 13.08.2009] CConfigMultiIP::ReadFile():  Done!
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigSettings::ReadFile():  Reading from file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigSettings::ReadFile():  Done!
[21:06 13.08.2009] CMainWindow::OnCreate():  Creating main window!
[21:06 13.08.2009] CMainWindow::OnCreate():  Config status:  Mode = 0, Disabled = 0!
[21:06 13.08.2009] CMainWindow::WaitForServices():  Waiting for services to start!
[21:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[21:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[21:06 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:06 13.08.2009] CConfigEngine::ShowConfigSplash(): Updating the registry settings
[21:06 13.08.2009] CConfigEngine::ShowConfigSplash(): registry settings updated
[21:06 13.08.2009] CInteractiveUserService::InstallHiddenApp():  Hidden app not detected.
[21:06 13.08.2009] CInteractiveUserService::InstallHiddenApp():  First resource extraction failed.
[21:06 13.08.2009] CInteractiveUserService::InstallHiddenApp():  File copy failed.
[21:06 13.08.2009] CMainWindow::InitClient():  We are no longer configuring, checking for aclient.bat
[21:06 13.08.2009] CAClientApp::CreateMainWindow(): Setting foreground window
[21:06 13.08.2009] CAClientApp::CreateMainWindow(): Reset forground window successfully
[21:06 13.08.2009] CAClientApp::InitInstance():  Initialization successful!
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnResetDBClient: Resetting All DBClients...
[21:06 13.08.2009] CMainWindow::OnInitVCs(): Initializing virtual clients: 0!
[21:06 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:06 13.08.2009] Инициализация...
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:06 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:06 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:06 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:06 13.08.2009] CNicInfo::Get():  Completed successfully
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:06 13.08.2009] Создание сокета TCP.
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:06 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:06 13.08.2009] AclntUsr timer event fired.
[21:06 13.08.2009] CAClientApp::IsFirewallInstalled(): COM initialized
[21:06 13.08.2009] CAClientApp::IsFirewallEnabled(): COM initialized
[21:06 13.08.2009] CAClientApp::AddAclntUsrToWindowsFirewall(): COM initialized
[21:06 13.08.2009] CAClientApp::AddAclntUsrToWindowsFirewall(): COM initialized
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:06 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:06 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:06 13.08.2009] Инициализация...
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:06 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:06 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:06 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:06 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:06 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:06 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:06 13.08.2009] CNicInfo::Get():  Completed successfully
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:06 13.08.2009] Создание сокета TCP.
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:06 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:06 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:06 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:06 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:06 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:06 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:07 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:07 13.08.2009] Инициализация...
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:07 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:07 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:07 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:07 13.08.2009] CNicInfo::Get():  Completed successfully
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:07 13.08.2009] Создание сокета TCP.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:07 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:07 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:07 13.08.2009] Инициализация...
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:07 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:07 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:07 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:07 13.08.2009] CNicInfo::Get():  Completed successfully
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:07 13.08.2009] Создание сокета TCP.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:07 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:07 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:07 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:07 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:07 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:07 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:07 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:07 13.08.2009] Инициализация...
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:07 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:07 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:07 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:07 13.08.2009] CNicInfo::Get():  Completed successfully
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:07 13.08.2009] Создание сокета TCP.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:07 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:07 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:07 13.08.2009] Инициализация...
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:07 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:07 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:07 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:07 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:07 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:07 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:07 13.08.2009] CNicInfo::Get():  Completed successfully
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:07 13.08.2009] Создание сокета TCP.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:07 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:07 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:07 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:07 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:07 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:08 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:08 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:08 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:08 13.08.2009] Инициализация...
[21:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:08 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:08 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:08 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:08 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:08 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:08 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:08 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:08 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:08 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:08 13.08.2009] CNicInfo::Get():  Completed successfully
[21:08 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:08 13.08.2009] Создание сокета TCP.
[21:08 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:08 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:08 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:08 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:08 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:09 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:09 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:09 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:09 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:09 13.08.2009] Инициализация...
[21:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:09 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:09 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:09 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:09 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:09 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:09 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:09 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:09 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:09 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:09 13.08.2009] CNicInfo::Get():  Completed successfully
[21:09 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:09 13.08.2009] Создание сокета TCP.
[21:09 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:09 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:09 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:09 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:09 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:09 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:09 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:10 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:10 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:10 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:10 13.08.2009] Инициализация...
[21:10 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:10 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:10 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:10 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:10 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:10 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:10 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:10 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:10 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:10 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:10 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:10 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:10 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:10 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:10 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:10 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:10 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:10 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:10 13.08.2009] CNicInfo::Get():  Completed successfully
[21:10 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:10 13.08.2009] Создание сокета TCP.
[21:10 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:10 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:10 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:11 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:11 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:12 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:12 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:12 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:12 13.08.2009] Инициализация...
[21:12 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:12 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:12 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:12 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:12 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:12 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:12 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:12 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:12 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:12 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:12 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:12 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:12 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:12 13.08.2009] CNicInfo::Get():  Completed successfully
[21:12 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:12 13.08.2009] Создание сокета TCP.
[21:12 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:12 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:12 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:12 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:12 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:13 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:13 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:13 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:13 13.08.2009] Инициализация...
[21:13 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:13 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:13 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:13 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:13 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:13 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:13 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:13 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:13 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:13 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:13 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:13 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:13 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:13 13.08.2009] CNicInfo::Get():  Completed successfully
[21:13 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:13 13.08.2009] Создание сокета TCP.
[21:13 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:13 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:13 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:13 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:13 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:14 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:14 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:14 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:14 13.08.2009] Инициализация...
[21:14 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:14 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:14 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:14 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:14 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:14 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:14 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:14 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:14 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:14 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:14 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:14 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:14 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:14 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:14 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:14 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:14 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:14 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:14 13.08.2009] CNicInfo::Get():  Completed successfully
[21:14 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:14 13.08.2009] Создание сокета TCP.
[21:14 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:14 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:14 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:15 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:15 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:16 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:16 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:16 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:16 13.08.2009] Инициализация...
[21:16 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:16 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:16 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:16 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:16 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:16 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:16 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:16 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:16 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:16 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:16 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:16 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:16 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:16 13.08.2009] CNicInfo::Get():  Completed successfully
[21:16 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:16 13.08.2009] Создание сокета TCP.
[21:16 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:16 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:16 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:16 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:16 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:17 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:17 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:17 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:17 13.08.2009] Инициализация...
[21:17 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:17 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:17 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:17 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:17 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:17 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:17 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:17 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:17 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:17 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:17 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:17 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:17 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:17 13.08.2009] CNicInfo::Get():  Completed successfully
[21:17 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:17 13.08.2009] Создание сокета TCP.
[21:17 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:17 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:17 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:18 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:18 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:18 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:19 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:19 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:19 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:19 13.08.2009] Инициализация...
[21:19 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:19 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:19 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:19 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:19 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:19 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:19 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:19 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:19 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:19 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:19 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:19 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:19 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:19 13.08.2009] CNicInfo::Get():  Completed successfully
[21:19 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:19 13.08.2009] Создание сокета TCP.
[21:19 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:19 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:19 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:19 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:19 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:20 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:20 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:20 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:20 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:20 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:20 13.08.2009] Инициализация...
[21:20 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:20 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:20 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:20 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:20 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:20 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:20 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:20 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:20 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:20 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:20 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:20 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:20 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:20 13.08.2009] CNicInfo::Get():  Completed successfully
[21:20 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:20 13.08.2009] Создание сокета TCP.
[21:20 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:20 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:20 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:20 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:20 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:21 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:21 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:21 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:21 13.08.2009] Инициализация...
[21:21 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:21 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:21 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:21 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:21 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:21 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:21 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:21 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:21 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:21 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:21 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:21 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:21 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:21 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:21 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:21 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:21 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:21 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:21 13.08.2009] CNicInfo::Get():  Completed successfully
[21:21 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:21 13.08.2009] Создание сокета TCP.
[21:21 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:21 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:21 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:22 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:22 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:23 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:23 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:23 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:23 13.08.2009] Инициализация...
[21:23 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:23 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:23 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:23 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:23 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:23 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:23 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:23 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:23 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:23 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:23 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:23 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:23 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:23 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:23 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:23 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:23 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:23 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:23 13.08.2009] CNicInfo::Get():  Completed successfully
[21:23 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:23 13.08.2009] Создание сокета TCP.
[21:23 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:23 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:23 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:23 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:23 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:24 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:24 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:24 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:24 13.08.2009] Инициализация...
[21:24 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:24 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:24 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:24 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:24 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:24 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:24 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:24 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:24 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:24 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:24 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:24 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:24 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:24 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:24 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:24 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:24 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:24 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:24 13.08.2009] CNicInfo::Get():  Completed successfully
[21:24 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:24 13.08.2009] Создание сокета TCP.
[21:24 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:24 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:24 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:24 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:24 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:25 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:25 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:25 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:25 13.08.2009] Инициализация...
[21:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:25 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:25 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:25 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:25 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:25 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:25 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:25 13.08.2009] CNicInfo::Get():  Completed successfully
[21:25 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:25 13.08.2009] Создание сокета TCP.
[21:25 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:25 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:25 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:26 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:26 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:35 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:41 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:41 13.08.2009] [00000344][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:41 13.08.2009] [00000344][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:41 13.08.2009] Инициализация...
[21:41 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:41 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:41 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:41 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:41 13.08.2009] [00000344][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:41 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:41 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:41 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:41 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:41 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:41 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:41 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:41 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:41 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:41 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:41 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:41 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:41 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:41 13.08.2009] CNicInfo::Get():  Completed successfully
[21:41 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:41 13.08.2009] Создание сокета TCP.
[21:41 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:41 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:41 13.08.2009] [00000344][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:41 13.08.2009] [00000344][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:41 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:48 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:48 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:48 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:53 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[21:53 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[21:53 13.08.2009] CMainWindow::OnEndSession():  Our session is ending, this is not a logoff!
[21:53 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[21:53 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[21:53 13.08.2009] CMainWindow::WindowProc():  Got a WM_QUERYENDSESSION message!
[21:53 13.08.2009] CMainWindow::OnEndSession():  Ending session = 1!
[21:53 13.08.2009] CMainWindow::OnEndSession():  Our session is ending, this is not a logoff!
[21:53 13.08.2009] CMainWindow::OnClose(): Got a close message!
[21:53 13.08.2009] CMainWindow::OnClose(): shutting down
[21:53 13.08.2009] CClientDlg::OnClose(): Closing client dialog
[21:53 13.08.2009] [00000344][00E5FCE8]  CDBClient::SyncronizeClose(): Waiting for close access
[21:53 13.08.2009] [00000344][00E5FCE8]  CDBClient::SyncronizeClose(): In close already: 0
[21:53 13.08.2009] [00000344][00E5FCE8]  CDBClient::Close(): shutting down
[21:53 13.08.2009] [00000344][00E5FCE8]  CDBClient::Close(): Closing permanently
[21:53 13.08.2009] [00000344][00E5FCE8]  CDBClient::Close(): shut down.
[21:53 13.08.2009] [00000344][00E5FCE8]  CDBClient::EndClose(): Were in a close: 1
[21:53 13.08.2009] CMainWindow::OnDestroy(): Closing Deleting dbcwindow!
[21:53 13.08.2009] CDBCWindow::OnDestroy: Destroying DBClient!!!!!!!!
[21:53 13.08.2009] CDBClient::~CDBClient(): Invalidating signature
[21:53 13.08.2009] CConfigNetworking::~CConfigNetworking():  Deleted...
[21:53 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[21:53 13.08.2009] CConfigNetware::~CConfigNetware():  Deleted...
[21:53 13.08.2009] CConfigLicense::~CConfigLicense():  Deleted...
[21:53 13.08.2009] CConfigGlobal::~CConfigGlobal():  Deleted...
[21:53 13.08.2009] CAClientApp::Run():  Calling ExitInstance under normal conditions...
[21:54 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[21:54 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[21:54 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[21:54 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[21:54 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[21:54 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[21:54 13.08.2009] Product Name from SystemInfo = System Product Name
[21:54 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[21:54 13.08.2009] AssetTagNumber = Asset-1234567890
[21:54 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[21:54 13.08.2009] Model-Number = P5GC
[21:54 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[21:54 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:54 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:54 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[21:54 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[21:54 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[21:54 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[21:54 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[21:54 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[21:54 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[21:54 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:54 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:54 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:54 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:54 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:54 13.08.2009] CNicInfo::Get():  Completed successfully
[21:54 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[21:54 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[21:54 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[21:54 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[21:54 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[21:54 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[21:54 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[21:54 13.08.2009] CAClientApp::InitInstance():  Preparing to run as a service.
[21:54 13.08.2009] CAClientApp::InitInstance():  Creating the main window.
[21:54 13.08.2009] CAClientApp::CreateMainWindow(): Hi, I'm AClient version 6.1.359
[21:54 13.08.2009] CAClientApp::CreateMainWindow(): OS: Windows XP Professional 5.1 (Build 2600: Service Pack 3)
[21:54 13.08.2009] CAClientApp::CreateMainWindow(): Got foreground window 0
[21:54 13.08.2009] CDBCWindow::OnCreate: Creating DBClient!
[21:54 13.08.2009] [00000220][00E5FCE8]  CDBClient::CDBClient(): I am not virtual!!!!
[21:54 13.08.2009] CConfigBootwork::~CConfigBootwork():  Deleted...
[21:54 13.08.2009] CMainWindow::InitConfig():  Creating new config engine
[21:54 13.08.2009] CConfigGlobal::Reset():  Setting m_nConfigMode to MODE_NONE
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:54 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:54 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:54 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:54 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:54 13.08.2009] CNicInfo::Get():  Completed successfully
[21:54 13.08.2009] CMainWindow::InitConfig(): Reading from the config file
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigGlobal::ReadFile():  reading m_nConfigMode == 0
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigMultiIP::ReadFile():  Reading from file C:\AClient.cfg
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:54 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:54 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:54 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading nics from C:\AClient.cfg
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading 1 nics from the config file, attempting to match up 1 local nics
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Reading config file nic 0
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Trying to find a match for config file nic 0: PCI Bus = 00, Dev = 00, Func = 00
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Testing local nic 0 for match, PCI Bus = 00, Dev = 00, Func = 00
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Local nic 0 is a match for 0, PCI Bus = 00, Dev = 00, Func = 00
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matching up 0 nics by index, 1 already done
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Matched 1 config file nics, 0 left
[21:54 13.08.2009] CConfigMultiIP::ReadNicsBasedOnPCI: Done with ReadNicsBasedOnPCI
[21:54 13.08.2009] CConfigMultiIP::ReadFile():  Done!
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigSettings::ReadFile():  Reading from file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigSettings::ReadFile():  Done!
[21:54 13.08.2009] CMainWindow::OnCreate():  Creating main window!
[21:54 13.08.2009] CMainWindow::OnCreate():  Config status:  Mode = 0, Disabled = 0!
[21:54 13.08.2009] CMainWindow::WaitForServices():  Waiting for services to start!
[21:54 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[21:54 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigEngine::WriteFile(): Writing data to C:\AClient.cfg
[21:54 13.08.2009] CConfigGlobal::WriteFile():  writing m_nConfigMode == 0
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigEngine::WriteFile(): bMinimum == FALSE, continuing write
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CAlInifile::Open(): trying to open file C:\AClient.cfg
[21:54 13.08.2009] CConfigEngine::ShowConfigSplash(): Updating the registry settings
[21:54 13.08.2009] CConfigEngine::ShowConfigSplash(): registry settings updated
[21:54 13.08.2009] CInteractiveUserService::InstallHiddenApp():  Hidden app not detected.
[21:54 13.08.2009] CInteractiveUserService::InstallHiddenApp():  First resource extraction failed.
[21:55 13.08.2009] CInteractiveUserService::InstallHiddenApp():  File copy failed.
[21:55 13.08.2009] CMainWindow::InitClient():  We are no longer configuring, checking for aclient.bat
[21:55 13.08.2009] CAClientApp::CreateMainWindow(): Setting foreground window
[21:55 13.08.2009] CAClientApp::CreateMainWindow(): Reset forground window successfully
[21:55 13.08.2009] CAClientApp::InitInstance():  Initialization successful!
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnResetDBClient: Resetting All DBClients...
[21:55 13.08.2009] CMainWindow::OnInitVCs(): Initializing virtual clients: 0!
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:55 13.08.2009] Инициализация...
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:55 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:55 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:55 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:55 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:55 13.08.2009] CNicInfo::Get():  Completed successfully
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:55 13.08.2009] Создание сокета TCP.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:55 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:55 13.08.2009] AclntUsr timer event fired.
[21:55 13.08.2009] CAClientApp::IsFirewallInstalled(): COM initialized
[21:55 13.08.2009] CAClientApp::IsFirewallEnabled(): COM initialized
[21:55 13.08.2009] CAClientApp::AddAclntUsrToWindowsFirewall(): COM initialized
[21:55 13.08.2009] CAClientApp::AddAclntUsrToWindowsFirewall(): COM initialized
[21:55 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:55 13.08.2009] Инициализация...
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:55 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:55 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:55 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:55 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:55 13.08.2009] CNicInfo::Get():  Completed successfully
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:55 13.08.2009] Создание сокета TCP.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:55 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:55 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:55 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:55 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:55 13.08.2009] Инициализация...
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:55 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:55 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:55 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:55 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:55 13.08.2009] CNicInfo::Get():  Completed successfully
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:55 13.08.2009] Создание сокета TCP.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:55 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:55 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:55 13.08.2009] Инициализация...
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:55 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:55 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:55 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:55 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:55 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:55 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:55 13.08.2009] CNicInfo::Get():  Completed successfully
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:55 13.08.2009] Создание сокета TCP.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:55 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:55 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:55 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:55 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:55 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:56 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:56 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:56 13.08.2009] Инициализация...
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:56 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:56 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:56 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:56 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:56 13.08.2009] CNicInfo::Get():  Completed successfully
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:56 13.08.2009] Создание сокета TCP.
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:56 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:56 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:56 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:56 13.08.2009] Инициализация...
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:56 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:56 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:56 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:56 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:56 13.08.2009] CNicInfo::Get():  Completed successfully
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:56 13.08.2009] Создание сокета TCP.
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:56 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:56 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:56 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:56 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10038!!
[21:56 13.08.2009] Сбой connect().  Ошибка. Присоединенное к системе устройство не работает. (последняя ошибка Windows 0)
[21:56 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:56 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:56 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:56 13.08.2009] Инициализация...
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:56 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:56 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:56 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:56 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:56 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:56 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:56 13.08.2009] CNicInfo::Get():  Completed successfully
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:56 13.08.2009] Создание сокета TCP.
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:56 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:56 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:56 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:56 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:56 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:56 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[21:57 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:57 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:57 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:57 13.08.2009] Инициализация...
[21:57 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:57 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:57 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:57 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:57 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:57 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:57 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:57 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:57 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:57 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:57 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:57 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:57 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:57 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:57 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:57 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:57 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:57 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:57 13.08.2009] CNicInfo::Get():  Completed successfully
[21:57 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.192.168:402
[21:57 13.08.2009] Создание сокета TCP.
[21:57 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:57 13.08.2009] Подключение к хосту: 192.168.192.168.
[21:57 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:58 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10060!!
[21:58 13.08.2009] Сбой connect().  Ошибка. Тайм-аут соединения. Сервер не отвечает. (последняя ошибка Windows 0)
[21:59 13.08.2009] CClientDlg::DoPropertiesDialog():  Different: 1, different member m_strTcpAddr
1:58 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[21:58 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[21:58 13.08.2009] Product Name from SystemInfo = System Product Name
[21:58 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[21:58 13.08.2009] AssetTagNumber = Asset-1234567890
[21:58 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[21:58 13.08.2009] Model-Number = P5GC
[21:58 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[21:58 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[21:58 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[21:58 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[21:58 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[21:58 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[21:58 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[21:58 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[21:58 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:58 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:58 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[21:58 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[21:58 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[21:58 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[21:58 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[21:58 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[21:58 13.08.2009] Product Name from SystemInfo = System Product Name
[21:58 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[21:58 13.08.2009] AssetTagNumber = Asset-1234567890
[21:58 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[21:58 13.08.2009] Model-Number = P5GC
[21:58 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[21:58 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[21:58 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[21:58 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[21:58 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[21:58 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[21:58 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[21:58 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[21:58 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[21:58 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[21:58 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:58 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:58 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:58 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:58 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:58 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:58 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:58 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:58 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:58 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:58 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:58 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:58 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:58 13.08.2009] CNicInfo::Get():  Completed successfully
[21:58 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[21:58 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[21:58 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[21:58 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[21:58 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[21:58 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[21:58 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[21:59 13.08.2009] CMainWindow::OnResetDBClient: Resetting All DBClients...
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::SyncronizeClose(): Waiting for close access
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::SyncronizeClose(): In close already: 0
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::Close(): shutting down
[21:59 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[21:59 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[21:59 13.08.2009] CAClientApp::ProcessMessages():  Processing message 512, 0, 13566077
[21:59 13.08.2009] CAClientApp::ProcessMessages():  Processing message 512, 0, 11141207
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::Close(): shut down.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::EndClose(): Were in a close: 1
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:59 13.08.2009] Инициализация...
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:59 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:59 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:59 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:59 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:59 13.08.2009] CNicInfo::Get():  Completed successfully
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[21:59 13.08.2009] Создание сокета TCP.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:59 13.08.2009] Подключение к хосту: 192.168.0.1.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[21:59 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[21:59 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:59 13.08.2009] Инициализация...
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:59 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:59 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:59 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:59 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:59 13.08.2009] CNicInfo::Get():  Completed successfully
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[21:59 13.08.2009] Создание сокета TCP.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:59 13.08.2009] Подключение к хосту: 192.168.0.1.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[21:59 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[21:59 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:59 13.08.2009] Инициализация...
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:59 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:59 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:59 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:59 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:59 13.08.2009] CNicInfo::Get():  Completed successfully
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[21:59 13.08.2009] Создание сокета TCP.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:59 13.08.2009] Подключение к хосту: 192.168.0.1.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[21:59 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[21:59 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[21:59 13.08.2009] Инициализация...
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[21:59 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[21:59 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[21:59 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[21:59 13.08.2009] CNicInfo::Get():  Getting IP Address
[21:59 13.08.2009] CNicInfo::Get():  Getting DNS Info
[21:59 13.08.2009] CNicInfo::Get():  Getting WINS Info
[21:59 13.08.2009] CNicInfo::Get():  Completed successfully
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[21:59 13.08.2009] Создание сокета TCP.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[21:59 13.08.2009] Подключение к хосту: 192.168.0.1.
[21:59 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[21:59 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[21:59 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[22:00 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[22:00 13.08.2009] Инициализация...
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:00 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:00 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:00 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:00 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:00 13.08.2009] CNicInfo::Get():  Completed successfully
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[22:00 13.08.2009] Создание сокета TCP.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[22:00 13.08.2009] Подключение к хосту: 192.168.0.1.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[22:00 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[22:00 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[22:00 13.08.2009] Инициализация...
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:00 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:00 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:00 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:00 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:00 13.08.2009] CNicInfo::Get():  Completed successfully
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[22:00 13.08.2009] Создание сокета TCP.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[22:00 13.08.2009] Подключение к хосту: 192.168.0.1.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[22:00 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[22:00 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_NONE || ST_ERROR
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[22:00 13.08.2009] Инициализация...
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:00 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:00 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:00 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:00 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:00 13.08.2009] CNicInfo::Get():  Completed successfully
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): 192.168.0.1:402
[22:00 13.08.2009] Создание сокета TCP.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): Trying to connect
[22:00 13.08.2009] Подключение к хосту: 192.168.0.1.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::ConnectToTcpServer(): waiting for connection to complete...
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnWSANotify(): Connect failed with error 10061!!
[22:00 13.08.2009] Сбой connect().  Ошибка. Сервер не отвечает или не загружен. (последняя ошибка Windows 0)
[22:00 13.08.2009] CClientDlg::DoPropertiesDialog():  Different: 1, different member m_strConsoleName
ntry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:00 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[22:00 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[22:00 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[22:00 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[22:00 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[22:00 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[22:00 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[22:00 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:00 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:00 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:00 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:00 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:00 13.08.2009] CNicInfo::Get():  Completed successfully
[22:00 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[22:00 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[22:00 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[22:00 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[22:00 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[22:00 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[22:00 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[22:00 13.08.2009] CMainWindow::OnResetDBClient: Resetting All DBClients...
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::SyncronizeClose(): Waiting for close access
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::SyncronizeClose(): In close already: 0
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::Close(): shutting down
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 15, 0, 0
[22:00 13.08.2009] CAClientApp::ProcessMessages():  Processing message 275, 1, 0
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::Close(): shut down.
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::EndClose(): Were in a close: 1
[22:00 13.08.2009] [00000220][00E57890]  CDBCWindow::OnResetDBClient(): Calling m_pDBClient->Init()!
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::Initialize():  Beginning initialization!
[22:00 13.08.2009] Инициализация...
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] [00000220][00E5FCE8]  [Line 670]: Detected local TCP/IP address: 192.168.0.50
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:00 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:00 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:00 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:00 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:00 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:00 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:00 13.08.2009] CNicInfo::Get():  Completed successfully
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[22:00 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:00 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:00 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[22:00 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[22:00 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[22:00 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[22:00 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[22:00 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[22:00 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[22:00 13.08.2009] Инициализация...
[22:00 13.08.2009] Поиск сервера развертывания...
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:00 13.08.2009] [00000220][00E5FCE8]  Multicast sockets opened for all adapters...
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): Calling SetProcessWorkingSetSize()
[22:00 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:00 13.08.2009] Инициализация...
[22:00 13.08.2009] Поиск сервера развертывания...
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:01 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:01 13.08.2009] Инициализация...
[22:01 13.08.2009] Поиск сервера развертывания...
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:01 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:01 13.08.2009] Инициализация...
[22:01 13.08.2009] Поиск сервера развертывания...
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:01 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:01 13.08.2009] Инициализация...
[22:01 13.08.2009] Поиск сервера развертывания...
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:01 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:01 13.08.2009] Инициализация...
[22:01 13.08.2009] Поиск сервера развертывания...
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:01 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:02 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:02 13.08.2009] Инициализация...
[22:02 13.08.2009] Поиск сервера развертывания...
[22:02 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:02 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:03 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:03 13.08.2009] Инициализация...
[22:03 13.08.2009] Поиск сервера развертывания...
[22:03 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:03 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:04 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:04 13.08.2009] Инициализация...
[22:04 13.08.2009] Поиск сервера развертывания...
[22:04 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:04 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:05 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:05 13.08.2009] Инициализация...
[22:05 13.08.2009] Поиск сервера развертывания...
[22:05 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:05 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:06 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:06 13.08.2009] Инициализация...
[22:06 13.08.2009] Поиск сервера развертывания...
[22:06 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:06 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:07 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:07 13.08.2009] Инициализация...
[22:07 13.08.2009] Поиск сервера развертывания...
[22:07 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:07 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:08 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:08 13.08.2009] Инициализация...
[22:08 13.08.2009] Поиск сервера развертывания...
[22:08 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:08 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:09 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:09 13.08.2009] Инициализация...
[22:09 13.08.2009] Поиск сервера развертывания...
[22:09 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:09 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:10 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:10 13.08.2009] Инициализация...
[22:10 13.08.2009] Поиск сервера развертывания...
[22:10 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:10 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:11 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:11 13.08.2009] Инициализация...
[22:11 13.08.2009] Поиск сервера развертывания...
[22:11 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:11 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:12 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:12 13.08.2009] Инициализация...
[22:12 13.08.2009] Поиск сервера развертывания...
[22:12 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:12 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:13 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:13 13.08.2009] Инициализация...
[22:13 13.08.2009] Поиск сервера развертывания...
[22:13 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:13 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:14 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:14 13.08.2009] Инициализация...
[22:14 13.08.2009] Поиск сервера развертывания...
[22:14 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:14 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:15 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:15 13.08.2009] Инициализация...
[22:15 13.08.2009] Поиск сервера развертывания...
[22:15 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:15 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:25 13.08.2009] CClientDlg::OnClose(): Closing client dialog
[22:30 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:30 13.08.2009] Инициализация...
[22:30 13.08.2009] Поиск сервера развертывания...
[22:30 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:30 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[22:45 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[22:45 13.08.2009] Инициализация...
[22:45 13.08.2009] Поиск сервера развертывания...
[22:45 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[22:45 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[23:00 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[23:00 13.08.2009] Инициализация...
[23:00 13.08.2009] Поиск сервера развертывания...
[23:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[23:00 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[23:08 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[23:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[23:12 13.08.2009] CMainWindow::OnDeviceChange():  Device change!  wParam = 7, lParam = 0
[23:15 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[23:15 13.08.2009] Инициализация...
[23:15 13.08.2009] Поиск сервера развертывания...
[23:15 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[23:15 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[23:30 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[23:30 13.08.2009] Инициализация...
[23:30 13.08.2009] Поиск сервера развертывания...
[23:30 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[23:30 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
[23:45 13.08.2009] CDBCWindow::OnTimer(): TIMER_DBCLIENT, dbClient state == ST_QUERY_BROKER
[23:45 13.08.2009] Инициализация...
[23:45 13.08.2009] Поиск сервера развертывания...
[23:45 13.08.2009] [00000220][00E5FCE8]  CDBClient::GetBroker(): shutting down socket 0
[23:45 13.08.2009] [00000220][00E5FCE8]  CDBClient::CreateMCastSockets(): Creating multicast socket 0
SMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:25 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[22:25 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[22:25 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[22:25 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[22:25 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[22:25 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[22:25 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[22:25 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[22:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:25 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:25 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:25 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:25 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:25 13.08.2009] CNicInfo::Get():  Completed successfully
[22:25 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[22:25 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[22:25 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[22:25 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[22:25 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[22:25 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[22:25 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.
[22:25 13.08.2009] CAClientApp::InitInstance():  Creating the service object.
[22:25 13.08.2009] CAClientApp::InitInstance():  Checking command line options
[22:25 13.08.2009] CAClientApp::InitInstance():  Creating the inventory manager.
[22:25 13.08.2009] CInventoryMgr::GetSMBTables():  Getting SMBIOS Tables
[22:25 13.08.2009] CInventoryMgr::GetSMBTables():  Building SMBIOS Information
[22:25 13.08.2009] Manufacturer from SystemInfo = System manufacturer
[22:25 13.08.2009] Product Name from SystemInfo = System Product Name
[22:25 13.08.2009] SerialNumber from SystemInfo = SYS-1234567890
[22:25 13.08.2009] AssetTagNumber = Asset-1234567890
[22:25 13.08.2009] UUID = 60F9E278:8DFED511:9EAD001D:60B9A151
[22:25 13.08.2009] Model-Number = P5GC
[22:25 13.08.2009] CAClientApp::InitInstance():  Creating the dynamic data manager.
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=hp!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-product-name=blade pc!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-product-name to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-reb=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-reb to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=1655mc!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=bladecenter hs20!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hs20-onboard-scsi=ultra320 scsi!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hs20-onboard-scsi to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=proliant!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=netserver!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=poweredge!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=eserver!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition product-name=primergy!
[22:25 13.08.2009] CDynamicSMBEntry::ParseData(): found condition hp-dino=yes!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:25 13.08.2009] CDynamicSMBEntry::EvaluateCondition(): unable to find entry hp-dino to evaluate condition!
[22:25 13.08.2009] CDynamicSMBInfo::ReadFromIni(): unable to read from ini file C:\Program Files\Altiris\AClient\customdata.ini, or it has no entries!
[22:25 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): no custom ini file!
[22:25 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Attempting to read processor info from C:\Program Files\Altiris\AClient\customdata.ini.
[22:25 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Unable to open file C:\Program Files\Altiris\AClient\customdata.ini, last error = 2
[22:25 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 2
[22:25 13.08.2009] CDynamicDataMgr::InitializeDynamicFile(): Error 2 reading processors from C:\Program Files\Altiris\AClient\customdata.ini, reading from C:\Program Files\Altiris\AClient\dynamic.ini.
[22:25 13.08.2009] CDynamicProcessorLookup::ReadFromIni():  Returning 0
[22:25 13.08.2009] CAClientApp::InitInstance():  Getting IP information.
[22:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CConfigMultiIP::AllocateNicInfo(): Using Windows 2000 or newer functions
[22:25 13.08.2009] CNicInfo::CNicInfo():  Nic Info create, resetting
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CNicInfoIPHlp::WaitForAdaptersInfoReady():  Error 111 returned from GetAdaptersInfo
[22:25 13.08.2009] CNicInfo2K::AttachToNIC():  Got NIC reg key {1B91B20D-513E-46E8-AC32-84DD7CB56C2E}!
[22:25 13.08.2009] CNicInfo2K::ReadPCIInfoFromLocation():  Unable to find bus from pci шина 2, устройство 0, функция 0
[22:25 13.08.2009] CNicInfo::Get():  Getting IP Address
[22:25 13.08.2009] CNicInfo::Get():  Getting DNS Info
[22:25 13.08.2009] CNicInfo::Get():  Getting WINS Info
[22:25 13.08.2009] CNicInfo::Get():  Completed successfully
[22:25 13.08.2009] CAClientApp::InitInstance():  Verifying client agent.
[22:25 13.08.2009] CAClientApp::InitInstance():  Checking to see if we need to be installed.
[22:25 13.08.2009] CAClientApp::CheckInstall():  Checking to see if we need to update the bInstall switch...
[22:25 13.08.2009] CAClientApp::CheckInstall():  Checking for sufficient rights!
[22:25 13.08.2009] CAClientApp::CheckInstall():  Checking for bInstall switch!
[22:25 13.08.2009] CAClientApp::InitInstance():  Initializing sockets.
[22:25 13.08.2009] CAClientApp::InitInstance():  Checking for service control command-line parameters.

Related Entries and Links

No Related Resource entered.