Showing posts with label task. Show all posts
Showing posts with label task. Show all posts

Wednesday, March 28, 2012

Receive multiple FTP files

Is there a way to get more than one file with a single ftp task in SQL 2005?

I need to get 5 files from one server. They are in two different directories is that makes any difference. Right now I have a separate task for each but would like to have one task if possible.

Thanks

You can use a wild card (*) in your path... If you can't use a wild card to get your 5 files, then you'll have to split up the tasks.|||

I figured something like that would be the answer...

Thats ok though... Thanks for the response.

|||

Bill, we actually use a table for our connection (directories, files, etc.) for FTP's and loop through the table replacing the FTP properties (in the FTP task) with the info from the table. If you did this, you could read the connection info into a recordset. Add a ForEach task and place the FTP task within the ForEach container.

The recordset info then drives the connection info for the FTP task... Since you mention two directories, you could use a row for each directory. Lots cleaner (and easier to maintain!) than having five separate FTP tasks firing...

sql

Receive "Acquiring a connection requires a valid Task name" when

Hi All,
I'm creating "DTSExecuteSQLTask" Task in DDQ ActiveX script code. Then
I'm trying to execute it from within this code with command:
oCustomerTask.execute oPkg, Nothing, Nothing,
DTSTaskExecResult_Success
but I receive error message:
"Acquiring a connection requires a valid Task name".
What's the matter?
Following is my activx script code
'***************************************
*******************************
' Visual Basic ActiveX Script
'***************************************
*********************************
Function Main()
Dim oPkg, startDate, oTask, oConnection, oCustomerTask
Dim oResult
set oPkg = DTSGlobalVariables.parent
startDate = DTSGlobalVariables("startDate")
Set oConnection = oPkg.Connections("db_conn2")
Set oTask = oPkg.tasks.new("DTSExecuteSQLTask")
oTask.Name = "DTSTask_DTSExecuteSQLTask_1"
Set oCustomerTask = oTask.CustomTask
oCustomerTask.Name = "DTSTask_DTSExecuteSQLTask_1"
oCustomerTask.description = "test task"
oCustomerTask.ConnectionID=oConnection.id
oCustomerTask.CommandTimeout=0
oCustomerTask.OutputAsRecordset = False
oCustomerTask.SQLStatement = "delete from tmp_table"
oCustomerTask.execute oPkg, Nothing, Nothing,
DTSTaskExecResult_Success
Set oCustomerTask = Nothing
set oTask=Nothing
Set oConnection=Nothing
set oPkg=nothing
Main = DTSTaskExecResult_Success
End Function
What's wrong?
Thanks in advance.I have found the resolution, after you create the task, you need
create a step object whcih will refers this new created task, you also
need add the task to current package. And then execute the step, you
can get the result. After the step complets, you need to remove the
task from package.
This solution works for me, but I do not know this is the best
solution or not. If anybody has more better solution, please post it.
Thanks a lot.
Following is the code which can run on my SQL Server 2000 Enterprise
Edition
'***************************************
*******************************
' Visual Basic ActiveX Script
'***************************************
*********************************
Function Main()
Dim oPkg, startDate, oTask, oConnection, oCustomerTask
Dim oResult
set oPkg = DTSGlobalVariables.parent
startDate = DTSGlobalVariables("startDate")
Set oConnection = oPkg.Connections("db_conn2")
'create task itself
Set oTask = oPkg.tasks.new("DTSExecuteSQLTask")
oTask.Name = "DTSTask_DTSExecuteSQLTask_1"
Set oCustomerTask = oTask.CustomTask
oCustomerTask.Name = "DTSTask_DTSExecuteSQLTask_1"
oCustomerTask.description = "test task"
oCustomerTask.ConnectionID=oConnection.id
oCustomerTask.CommandTimeout=0
oCustomerTask.OutputAsRecordset = False
oCustomerTask.SQLStatement = "select * from test_table"
oPkg.tasks.add oTask
'associate step with a task
Dim oStep
Set oStep = oPkg.Steps.New
oStep.Name = "DTSStep_DTSExecuteSQLTask_1"
oStep.Description = "Execute SQL Task: undefined"
oStep.ExecutionStatus = 1
oStep.TaskName = "DTSTask_DTSExecuteSQLTask_1"
oStep.CommitSuccess = False
oStep.RollbackFailure = False
oStep.ScriptLanguage = "VBScript"
oStep.AddGlobalVariables = True
oStep.RelativePriority = 3
oStep.CloseConnection = False
oStep.ExecuteInMainThread = False
oStep.IsPackageDSORowset = False
oStep.JoinTransactionIfPresent = False
oStep.DisableStep = False
oStep.FailPackageOnError = False
'run step
oStep.execute
'remove the added customer task
Dim index
For index=1 To oPkg.tasks.count
If (oPkg.tasks.item(index).name = "DTSTask_DTSExecuteSQLTask_1")
Then
oPkg.tasks.remove index
Exit For
End If
Next
Set oStep = Nothing
Set oCustomerTask = Nothing
set oTask=Nothing
Set oConnection=Nothing
set oPkg=nothing
Main = DTSTaskExecResult_Success
End Function

Monday, March 26, 2012

Receive "Acquiring a connection requires a valid Task name" when

Hi All,
I'm creating "DTSExecuteSQLTask" Task in DDQ ActiveX script code. Then
I'm trying to execute it from within this code with command:
oCustomerTask.execute oPkg, Nothing, Nothing,
DTSTaskExecResult_Success
but I receive error message:
"Acquiring a connection requires a valid Task name".
What's the matter?
Following is my activx script code
'**********************************************************************
' Visual Basic ActiveX Script
'************************************************************************
Function Main()
Dim oPkg, startDate, oTask, oConnection, oCustomerTask
Dim oResult
set oPkg = DTSGlobalVariables.parent
startDate = DTSGlobalVariables("startDate")
Set oConnection = oPkg.Connections("db_conn2")
Set oTask = oPkg.tasks.new("DTSExecuteSQLTask")
oTask.Name = "DTSTask_DTSExecuteSQLTask_1"
Set oCustomerTask = oTask.CustomTask
oCustomerTask.Name = "DTSTask_DTSExecuteSQLTask_1"
oCustomerTask.description = "test task"
oCustomerTask.ConnectionID=oConnection.id
oCustomerTask.CommandTimeout=0
oCustomerTask.OutputAsRecordset = False
oCustomerTask.SQLStatement = "delete from tmp_table"
oCustomerTask.execute oPkg, Nothing, Nothing,
DTSTaskExecResult_Success
Set oCustomerTask = Nothing
set oTask=Nothing
Set oConnection=Nothing
set oPkg=nothing
Main = DTSTaskExecResult_Success
End Function
What's wrong?
Thanks in advance.I have found the resolution, after you create the task, you need
create a step object whcih will refers this new created task, you also
need add the task to current package. And then execute the step, you
can get the result. After the step complets, you need to remove the
task from package.
This solution works for me, but I do not know this is the best
solution or not. If anybody has more better solution, please post it.
Thanks a lot.
Following is the code which can run on my SQL Server 2000 Enterprise
Edition
'**********************************************************************
' Visual Basic ActiveX Script
'************************************************************************
Function Main()
Dim oPkg, startDate, oTask, oConnection, oCustomerTask
Dim oResult
set oPkg = DTSGlobalVariables.parent
startDate = DTSGlobalVariables("startDate")
Set oConnection = oPkg.Connections("db_conn2")
'create task itself
Set oTask = oPkg.tasks.new("DTSExecuteSQLTask")
oTask.Name = "DTSTask_DTSExecuteSQLTask_1"
Set oCustomerTask = oTask.CustomTask
oCustomerTask.Name = "DTSTask_DTSExecuteSQLTask_1"
oCustomerTask.description = "test task"
oCustomerTask.ConnectionID=oConnection.id
oCustomerTask.CommandTimeout=0
oCustomerTask.OutputAsRecordset = False
oCustomerTask.SQLStatement = "select * from test_table"
oPkg.tasks.add oTask
'associate step with a task
Dim oStep
Set oStep = oPkg.Steps.New
oStep.Name = "DTSStep_DTSExecuteSQLTask_1"
oStep.Description = "Execute SQL Task: undefined"
oStep.ExecutionStatus = 1
oStep.TaskName = "DTSTask_DTSExecuteSQLTask_1"
oStep.CommitSuccess = False
oStep.RollbackFailure = False
oStep.ScriptLanguage = "VBScript"
oStep.AddGlobalVariables = True
oStep.RelativePriority = 3
oStep.CloseConnection = False
oStep.ExecuteInMainThread = False
oStep.IsPackageDSORowset = False
oStep.JoinTransactionIfPresent = False
oStep.DisableStep = False
oStep.FailPackageOnError = False
'run step
oStep.execute
'remove the added customer task
Dim index
For index=1 To oPkg.tasks.count
If (oPkg.tasks.item(index).name = "DTSTask_DTSExecuteSQLTask_1")
Then
oPkg.tasks.remove index
Exit For
End If
Next
Set oStep = Nothing
Set oCustomerTask = Nothing
set oTask=Nothing
Set oConnection=Nothing
set oPkg=nothing
Main = DTSTaskExecResult_Success
End Function

Rebuildm failed with Error 266

I am trying to run rebuildm to change the collation of SQL. I stop SQL and
even have deleted sqlmangr.exe out of Task Manager "Processes". I have
everything closed on the machine. SQL is definitely down - No services show
in "Services". However, when I run rebuildm - after I enter where the data
files are and the new collation and press Rebuild it returns an error. First
One "Cannot copy master: It is being used by another person or program.
Close any programs that might be using the file and try again" When I press
OK I get "Rebuild Master failed with error 266: The copy function cannot be
used. The error occurred due to a file copy failure"
How can there be a connection? - SQL is stopped! No one can connect - the
server isn't even connected to the network. I've got everything closed!
Can you please help me - This is driving me crazy -- Thanx!
Terry
Regina Qu'appelle Health Region
Saskatchewan
CANADA
Try copying the files to disk first and remove the read only
attribute. That's generally what causes the error you are
seeing.
-Sue
On Fri, 30 Sep 2005 15:15:03 -0700, "Terry"
<terry@.microsoft.newsgroups.com> wrote:

>I am trying to run rebuildm to change the collation of SQL. I stop SQL and
>even have deleted sqlmangr.exe out of Task Manager "Processes". I have
>everything closed on the machine. SQL is definitely down - No services show
>in "Services". However, when I run rebuildm - after I enter where the data
>files are and the new collation and press Rebuild it returns an error. First
>One "Cannot copy master: It is being used by another person or program.
>Close any programs that might be using the file and try again" When I press
>OK I get "Rebuild Master failed with error 266: The copy function cannot be
>used. The error occurred due to a file copy failure"
>How can there be a connection? - SQL is stopped! No one can connect - the
>server isn't even connected to the network. I've got everything closed!
>Can you please help me - This is driving me crazy -- Thanx!
|||thanks! - Tried it but...
My db files and rebuildm are on disk
The actual directory tree will not let me remove the RedOnly on the Data dir
Windows Server 2003 doesn't want me to remove it - Apply it but it just
reverts back to Read Only -- tried all the way up the dir structure.
I went ahead anyway and created another branch for the db files and copied
them to it.
I ran rebuildm - it went further but came back with a different but similar
error
"Rebuild Master failed with error -1: the error occurred due to a file copy
failure"
I didn't actually attach the new set of dbs to SQL though ?
Thanx!
Terry
Regina Health Region
Saskatchewan
CANADA
"Sue Hoegemeier" wrote:

> Try copying the files to disk first and remove the read only
> attribute. That's generally what causes the error you are
> seeing.
> -Sue
> On Fri, 30 Sep 2005 15:15:03 -0700, "Terry"
> <terry@.microsoft.newsgroups.com> wrote:
>
>
|||I'm not clear on what you moved where but I doubt it will
work if you split things apart.
Copy the entire x86\Data directory. Select all of the files
in the data directory and remove the read-only attribute.
Then run rebuildm. Use this other data directory as the
source directory for the data files.
-Sue
On Mon, 3 Oct 2005 10:36:04 -0700, "Terry"
<terry@.microsoft.newsgroups.com> wrote:

>thanks! - Tried it but...
>My db files and rebuildm are on disk
>The actual directory tree will not let me remove the RedOnly on the Data dir
>Windows Server 2003 doesn't want me to remove it - Apply it but it just
>reverts back to Read Only -- tried all the way up the dir structure.
>I went ahead anyway and created another branch for the db files and copied
>them to it.
>I ran rebuildm - it went further but came back with a different but similar
>error
>"Rebuild Master failed with error -1: the error occurred due to a file copy
>failure"
>I didn't actually attach the new set of dbs to SQL though ?
>Thanx!
|||We always install SQL onto another drive - usually D:
So a typical install puts files/dirs on both C: and D:
.../Data exists on D: that's what I copied to another directory
and used as a source for Rebuildm
data files are always in d:\Program Files\Microsoft SQL Server\MSSQL\Data
I took those files and copied them to D:\MSSQL\Data which is a new dir
I must be confused about something basic !?!?!
Is my problem due to installing SQL on D: ?
SQL 2000 - SP4 ? Windows Server 2003 ?
Rebuildm is on C:\...
Thanks!
Terry
Regina Health Region
Saskatchewan
CANADA
"Sue Hoegemeier" wrote:

> I'm not clear on what you moved where but I doubt it will
> work if you split things apart.
> Copy the entire x86\Data directory. Select all of the files
> in the data directory and remove the read-only attribute.
> Then run rebuildm. Use this other data directory as the
> source directory for the data files.
> -Sue
> On Mon, 3 Oct 2005 10:36:04 -0700, "Terry"
> <terry@.microsoft.newsgroups.com> wrote:
>
>
|||Yes...using rebuildm has nothing at all to do with whatever
data files you currently have. Ignore whatever you have and
where ever they are located for the rebuildm utility. Just
look at this as having nothing to do with whatever you
already installed.
Copy the entire x86\Data directory from your SQL Server
installation CD to a share. You need all of the original
files from the installation CD.
Select all of the files in the data directory that you
copied from the CD. Right click, select properties and
remove the read-only attribute.
Then run rebuildm. Use this data directory share where you
have just copied the files from the CD as the source
directory for the data files.
It sounds like you are trying to use some of your database
files and that's now how it works. The rebuildm utility
rebuilds the master database and system databases. It the
original files for these database from the CD. Rebuildm gets
you back up and running but you still need to restore you
master, model and msdb databases.
-Sue
On Tue, 4 Oct 2005 08:16:01 -0700, "Terry"
<terry@.microsoft.newsgroups.com> wrote:

>We always install SQL onto another drive - usually D:
>So a typical install puts files/dirs on both C: and D:
>.../Data exists on D: that's what I copied to another directory
>and used as a source for Rebuildm
>data files are always in d:\Program Files\Microsoft SQL Server\MSSQL\Data
>I took those files and copied them to D:\MSSQL\Data which is a new dir
>I must be confused about something basic !?!?!
>Is my problem due to installing SQL on D: ?
>SQL 2000 - SP4 ? Windows Server 2003 ?
>Rebuildm is on C:\...
>Thanks!
|||Thanks Sue!!! -- that's it !!! -- I wasn't understanding the intent of the
utility. I thought it wanted the location of the existing system files.
Terry
Regina Health Region
Saskatchewan
CANADA
"Sue Hoegemeier" wrote:

> Yes...using rebuildm has nothing at all to do with whatever
> data files you currently have. Ignore whatever you have and
> where ever they are located for the rebuildm utility. Just
> look at this as having nothing to do with whatever you
> already installed.
> Copy the entire x86\Data directory from your SQL Server
> installation CD to a share. You need all of the original
> files from the installation CD.
> Select all of the files in the data directory that you
> copied from the CD. Right click, select properties and
> remove the read-only attribute.
> Then run rebuildm. Use this data directory share where you
> have just copied the files from the CD as the source
> directory for the data files.
> It sounds like you are trying to use some of your database
> files and that's now how it works. The rebuildm utility
> rebuilds the master database and system databases. It the
> original files for these database from the CD. Rebuildm gets
> you back up and running but you still need to restore you
> master, model and msdb databases.
> -Sue
> On Tue, 4 Oct 2005 08:16:01 -0700, "Terry"
> <terry@.microsoft.newsgroups.com> wrote:
>
>
|||Glad to hear you got it. Your not the only one who I've seen
have problems with the same issue FWIW...
-Sue
On Wed, 5 Oct 2005 08:16:01 -0700, "Terry"
<terry@.microsoft.newsgroups.com> wrote:

>Thanks Sue!!! -- that's it !!! -- I wasn't understanding the intent of the
>utility. I thought it wanted the location of the existing system files.

Rebuilding System Databses

I have just spent 2 days trying to rebuild my system databases after a crash.

Each time I issued the start /wait setup.exe etc. command, the task would fail with the error:

MSI (s) (80:10) [12:07:34:815]: Product: Microsoft SQL Server 2005 -- Error 1706. An installation package for the product Microsoft SQL Server 2005 cannot be found. Try the installation again using a valid copy of the installation package 'SqlRun_SQL.msi'.

The initial install of SQL was run from a network share. The rebuild was from CD.

It seems that the original installation source paths are retained in the registry and are not ignored when attempting a rebuild.

Searching the registry for 'SqlRun_SQL.msi' throws up

HKEY_CLASSES_ROOT\Installer\Products\812B67BE5CF8FD14F9F1F73F0E443838

and

HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\812B67BE5CF8FD14F9F1F73F0E443838

Resolution:

Under the HKEY_CLASSES_ROOT key, change the Sourcelist from network (n) to media (m) and <drive>:\Servers\Setup\ instead of the share

Also change MediaPackage under the Media key to \Servers\Setup\

This will automatically amend the HKEY_LOCAL_MACHINE key

This allowed a successful rebuild of the system databases

Bring back Rebuildm!

Thank you for documenting your problem and the resolution for it.

Another option for this situation is to use the command:

start /wait <CD or DVD Drive>\setup.exe /qn INSTANCENAME=SQLExpress REINSTALL=SQL_Engine REBUILDDATABASE=1 SAPWD=<NewStrongPassword> REINSTALLMODE=vomus

The REINSTALLMODE=vomus instructs setup to ignore the cached location of the .MSI file and use the local one.

This situation is very problematic for Express installations where the .MSI is extracted to a temp file and deleted after the installation is completed, so there is no way to go back to the original source.

I wrote a blog post about the situation at: http://blogs.msdn.com/sqlserverstorageengine/archive/2006/09/26/772550.aspx

|||

Thanks for the info Kevin,

I have just tried this method on my testbed and it works fine.

D.

|||

it doesnt work in my environemnt and i m not able to rebuild my system databases here is the log

Summary.txt

==========================================

Microsoft SQL Server 2005 9.00.3042.00
==============================
OS Version : Microsoft Windows XP Professional Service Pack 2 (Build 2600)
Time : Wed Apr 18 14:04:29 2007
IBM-51406F0AE71 : The current system does not meet minimum hardware requirements for this SQL Server release. For detailed hardware requirements, see the readme file or SQL Server Books Online.
IBM-51406F0AE71 : Microsoft Internet Information Services (IIS) is either not installed or is disabled. IIS is required by some SQL Server features. Without IIS, some SQL Server features will not be available for installation. To install all SQL Server features, install IIS from Add or Remove Programs in Control Panel or enable the IIS service through the Control Panel if it is already installed, and then run SQL Server Setup again. For a list of features that depend on IIS, see Features Supported by Editions of SQL Server in Books Online.
IBM-51406F0AE71 : To change an existing instance of Microsoft SQL Server 2005 to a different edition of SQL Server 2005, you must run SQL Server 2005 Setup from the command prompt and include the SKUUPGRADE=1 parameter.
Setup succeeded with the installation, inspect the log file completely for status on all the components.

Time : Wed Apr 18 14:05:51 2007

SQLSetup0029_IBM-51406F0AE71_Core.log

================================================================

Microsoft SQL Server 2005 Setup beginning at Wed Apr 18 14:04:27 2007
Process ID : 36984
D:\setup.exe Version: 2005.90.1399.0
Running: LoadResourcesAction at: 2007/3/18 14:4:18
Complete: LoadResourcesAction at: 2007/3/18 14:4:20, returned true
Running: ParseBootstrapOptionsAction at: 2007/3/18 14:4:20
Loaded DLLBig Smile:\xmlrw.dll Version:2.0.3604.0
Complete: ParseBootstrapOptionsAction at: 2007/3/18 14:4:27, returned true
Running: ValidateWinNTAction at: 2007/3/18 14:4:27
Complete: ValidateWinNTAction at: 2007/3/18 14:4:27, returned true
Running: ValidateMinOSAction at: 2007/3/18 14:4:27
Complete: ValidateMinOSAction at: 2007/3/18 14:4:27, returned true
Running: PerformSCCAction at: 2007/3/18 14:4:27
Complete: PerformSCCAction at: 2007/3/18 14:4:27, returned true
Running: ActivateLoggingAction at: 2007/3/18 14:4:27
Complete: ActivateLoggingAction at: 2007/3/18 14:4:27, returned true
Running: DetectPatchedBootstrapAction at: 2007/3/18 14:4:27
Complete: DetectPatchedBootstrapAction at: 2007/3/18 14:4:27, returned true
Running: LaunchPatchedBootstrapAction at: 2007/3/18 14:4:27
Error: Action "LaunchPatchedBootstrapAction" threw an exception during execution. Error information reported during run:
"C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\setup.exe" finished and returned: 0
Aborting queue processing as nested installer has completed
Message pump returning: 0

SQLSetup0029_IBM-51406F0AE71_Core(Patched).log

=========================================================

Microsoft SQL Server 2005 Setup beginning at Wed Apr 18 14:04:29 2007
Process ID : 2988
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\setup.exe Version: 2005.90.3042.0
Running: LoadResourcesAction at: 2007/3/18 14:4:29
Complete: LoadResourcesAction at: 2007/3/18 14:4:29, returned true
Running: ParseBootstrapOptionsAction at: 2007/3/18 14:4:29
Loaded DLL:C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\xmlrw.dll Version:2.0.3609.0
Complete: ParseBootstrapOptionsAction at: 2007/3/18 14:4:29, returned true
Running: ValidateWinNTAction at: 2007/3/18 14:4:29
Complete: ValidateWinNTAction at: 2007/3/18 14:4:29, returned true
Running: ValidateMinOSAction at: 2007/3/18 14:4:29
Complete: ValidateMinOSAction at: 2007/3/18 14:4:29, returned true
Running: PerformSCCAction at: 2007/3/18 14:4:29
Complete: PerformSCCAction at: 2007/3/18 14:4:29, returned true
Running: ActivateLoggingAction at: 2007/3/18 14:4:29
Complete: ActivateLoggingAction at: 2007/3/18 14:4:29, returned true
Running: DetectPatchedBootstrapAction at: 2007/3/18 14:4:29
Complete: DetectPatchedBootstrapAction at: 2007/3/18 14:4:29, returned true
Action "LaunchPatchedBootstrapAction" will be skipped due to the following restrictions:
Condition "EventCondition: __STP_LaunchPatchedBootstrap__2988" returned false.
Running: PerformSCCAction2 at: 2007/3/18 14:4:29
Complete: PerformSCCAction2 at: 2007/3/18 14:4:31, returned true
Running: PerformDotNetCheck at: 2007/3/18 14:4:31
Complete: PerformDotNetCheck at: 2007/3/18 14:4:31, returned true
Running: ComponentUpdateAction at: 2007/3/18 14:4:31
Complete: ComponentUpdateAction at: 2007/3/18 14:5:16, returned true
Running: DetectLocalBootstrapAction at: 2007/3/18 14:5:16
Complete: DetectLocalBootstrapAction at: 2007/3/18 14:5:16, returned true
Action "LaunchLocalBootstrapAction" will be skipped due to the following restrictions:
Condition "EventCondition: __STP_LaunchLocalBootstrap__2988" returned false.
Running: PerformDotNetCheck2 at: 2007/3/18 14:5:16
Complete: PerformDotNetCheck2 at: 2007/3/18 14:5:16, returned true
Running: InvokeSqlSetupDllAction at: 2007/3/18 14:5:16
Loaded DLL:C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\sqlspars.dll Version:2005.90.3042.0
<Func Name='DwLaunchMsiExec'>
Examining 'sqlspars' globals to initialize 'SetupStateScope'
Opening 'MachineConfigScope' for [IBM-51406F0AE71]
Trying to find Product Code from command line or passed transform
If possible, determine install id and type
Trying to find Instance Name from command line.
No Instance Name provided on the command line
If possible, determine action
Machine = IBM-51406F0AE71, Article = WMIServiceWin32OSWorking, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = WMIServiceWin32CompSystemWorking, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = WMIServiceWin32ProcessorWorking, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = WMIServiceReadRegWorking, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = WMIServiceWin32DirectoryWorking, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = WMIServiceCIMDataWorking, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = XMLDomDocument, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = Processor, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = PhysicalMemory, Result = 70009 (0x11179)
Machine = IBM-51406F0AE71, Article = DiskFreeSpace, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = OSVersion, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = OSServicePack, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = OSType, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = iisDep, Result = 70348 (0x112cc)
Machine = IBM-51406F0AE71, Article = AdminShare, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = PendingReboot, Result = 70011 (0x1117b)
Machine = IBM-51406F0AE71, Article = PerfMon, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = IEVersion, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = DriveWriteAccess, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = COMPlus, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = ASPNETVersionRegistration, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = MDAC25Version, Result = 0 (0x0)
Machine = IBM-51406F0AE71, Article = SKUUpgrade, Result = 70391 (0x112f7)
*******************************************
Setup Consistency Check Report for Machine: IBM-51406F0AE71
*******************************************
Article: WMI Service Requirement, Result: CheckPassed
Article: MSXML Requirement, Result: CheckPassed
Article: Operating System Minimum Level Requirement, Result: CheckPassed
Article: Operating System Service Pack Level Requirement, Result: CheckPassed
Article: SQL Compatibility With Operating System, Result: CheckPassed
Article: Minimum Hardware Requirement, Result: Warning
Description: Minimum hardware requirements are not met, therefore, some components may not perform as expected. Action: Make sure minimum hardware requirements are met. Please refer to the readme for minimum requirements.
Article: IIS Feature Requirement, Result: Warning
Description: IIS is not installed, therefore Report Server feature will be disabled Action: Install IIS in order for Report Server feature to be enabled
Article: Pending Reboot Requirement, Result: CheckPassed
Article: Performance Monitor Counter Requirement, Result: CheckPassed
Article: Default Installation Path Permission Requirement, Result: CheckPassed
Article: Internet Explorer Requirement, Result: CheckPassed
Article: Check COM+ Catalogue, Result: CheckPassed
Article: ASP.Net Registration Requirement, Result: CheckPassed
Article: Minimum MDAC Version Requirement, Result: CheckPassed
Article: Edition Upgrade Check, Result: Warning
Description: There can be a product on higher SP level. Action: If you are attempting to upgrade an existing instance of Microsoft SQL Server to another Edition by installing the RTM version of the new Edition, you need to pass "SKUUPGRADE=1" to setup.exe on the command line.
<Func Name='PerformDetections'>
0
<EndFunc Name='PerformDetections' Return='0' GetLastError='0'>
Loaded DLL:C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\sqlsval.dll Version:2005.90.3042.0
<EndFunc Name='DwLaunchMsiExec' Return='0' GetLastError='0'>
Complete: InvokeSqlSetupDllAction at: 2007/3/18 14:5:37, returned true
Running: SetPackageInstallStateAction at: 2007/3/18 14:5:37
1: SQL_Engine = 3
1: SQL_Data_Files = 3
1: SQL_Replication = 3
1: SQL_FullText = 3
1: SQL_SharedTools = 3
1: SQL_BC_DEP = 3
2: Analysis_Server = 2
2: AnalysisDataFiles = 2
2: AnalysisSharedTools = 2
3: RS_Server = 2
3: RS_Web_Interface = 2
3: RS_SharedTools = 2
4: Notification_Services = 2
4: NS_Engine = 2
4: NS_Client = 2
5: SQL_DTS = 2
6: Client_Components = 2
6: TOOLS_BC_DEP = 2
6: Connectivity = 2
6: Tools_Legacy = 2
6: SQL_Tools90 = 2
6: SQL_WarehouseDevWorkbench = 2
6: SDK = 2
6: SQLXML = 2
6: SQL_BooksOnline = 2
6: SQL_Documentation = 2
6: SQL_Samples = 2
6: SQL_DatabaseSamples = 2
6: SQL_AdventureWorksSamples = 2
6: SQL_AdventureWorksDWSamples = 2
6: SQL_AdventureWorksASSamples = 2
6: SQL_SSMSEE = 2
2: Analysis_Server = 2
2: AnalysisDataFiles = 2
2: AnalysisSharedTools = 2
3: RS_Server = 2
3: RS_Web_Interface = 2
3: RS_SharedTools = 2
4: Notification_Services = 2
4: NS_Engine = 2
4: NS_Client = 2
5: SQL_DTS = 3
6: Client_Components = 2
6: TOOLS_BC_DEP = 2
6: Connectivity = 2
6: Tools_Legacy = 2
6: SQL_Tools90 = 2
6: SQL_WarehouseDevWorkbench = 2
6: SDK = 2
6: SQLXML = 2
6: SQL_BooksOnline = 2
6: SQL_Documentation = 2
6: SQL_Samples = 2
6: SQL_DatabaseSamples = 2
6: SQL_AdventureWorksSamples = 2
6: SQL_AdventureWorksDWSamples = 2
6: SQL_AdventureWorksASSamples = 2
6: SQL_SSMSEE = 2
2: Analysis_Server = 2
2: AnalysisDataFiles = 2
2: AnalysisSharedTools = 2
3: RS_Server = 2
3: RS_Web_Interface = 2
3: RS_SharedTools = 2
4: Notification_Services = 3
4: NS_Engine = 3
4: NS_Client = 3
6: Client_Components = 2
6: TOOLS_BC_DEP = 2
6: Connectivity = 2
6: Tools_Legacy = 2
6: SQL_Tools90 = 2
6: SQL_WarehouseDevWorkbench = 2
6: SDK = 2
6: SQLXML = 2
6: SQL_BooksOnline = 2
6: SQL_Documentation = 2
6: SQL_Samples = 2
6: SQL_DatabaseSamples = 2
6: SQL_AdventureWorksSamples = 2
6: SQL_AdventureWorksDWSamples = 2
6: SQL_AdventureWorksASSamples = 2
6: SQL_SSMSEE = 2
2: Analysis_Server = 2
2: AnalysisDataFiles = 2
2: AnalysisSharedTools = 2
3: RS_Server = 2
3: RS_Web_Interface = 2
3: RS_SharedTools = 2
6: Client_Components = 3
6: TOOLS_BC_DEP = 3
6: Connectivity = 3
6: Tools_Legacy = 3
6: SQL_Tools90 = 3
6: SQL_WarehouseDevWorkbench = 3
6: SDK = 3
6: SQLXML = 3
6: SQL_BooksOnline = 3
6: SQL_Documentation = 3
6: SQL_Samples = 2
6: SQL_DatabaseSamples = 2
6: SQL_AdventureWorksSamples = 2
6: SQL_AdventureWorksDWSamples = 2
6: SQL_AdventureWorksASSamples = 2
6: SQL_SSMSEE = 2
Complete: SetPackageInstallStateAction at: 2007/3/18 14:5:41, returned true
Running: DeterminePackageTransformsAction at: 2007/3/18 14:5:41
Complete: DeterminePackageTransformsAction at: 2007/3/18 14:5:46, returned true
Running: ValidateSetupPropertiesAction at: 2007/3/18 14:5:46
Complete: ValidateSetupPropertiesAction at: 2007/3/18 14:5:46, returned true
Running: OpenPipeAction at: 2007/3/18 14:5:46
Complete: OpenPipeAction at: 2007/3/18 14:5:46, returned false
Error: Action "OpenPipeAction" failed during execution.
Running: CreatePipeAction at: 2007/3/18 14:5:46
Complete: CreatePipeAction at: 2007/3/18 14:5:46, returned false
Error: Action "CreatePipeAction" failed during execution.
Action "RunRemoteSetupAction" will be skipped due to the following restrictions:
Condition "Action: CreatePipeAction has finished and passed." returned false.
Running: PopulateMutatorDbAction at: 2007/3/18 14:5:47
Complete: PopulateMutatorDbAction at: 2007/3/18 14:5:47, returned true
Running: GenerateRequestsAction at: 2007/3/18 14:5:47
SQL_Engine = -1
SQL_Data_Files = -1
SQL_Replication = -1
SQL_FullText = -1
SQL_SharedTools = -1
SQL_BC_DEP = -1
Analysis_Server = -1
AnalysisDataFiles = -1
AnalysisSharedTools = -1
RS_Server = -1
RS_Web_Interface = -1
RS_SharedTools = -1
Notification_Services = -1
NS_Engine = -1
NS_Client = -1
SQL_DTS = -1
Client_Components = -1
Connectivity = -1
SQL_Tools90 = -1
SQL_WarehouseDevWorkbench = -1
SDK = -1
SQLXML = -1
Tools_Legacy = -1
TOOLS_BC_DEP = -1
SQL_SSMSEE = -1
SQL_Documentation = -1
SQL_BooksOnline = -1
SQL_DatabaseSamples = -1
SQL_AdventureWorksSamples = -1
SQL_AdventureWorksDWSamples = -1
SQL_AdventureWorksASSamples = -1
SQL_Samples = -1
Complete: GenerateRequestsAction at: 2007/3/18 14:5:48, returned true
Running: CreateProgressWindowAction at: 2007/3/18 14:5:48
Complete: CreateProgressWindowAction at: 2007/3/18 14:5:48, returned false
Error: Action "CreateProgressWindowAction" failed during execution.
Running: ScheduleActionAction at: 2007/3/18 14:5:48
Complete: ScheduleActionAction at: 2007/3/18 14:5:49, returned true
Skipped: InstallASAction.11
Skipped: Action "InstallASAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "as", install will be skipped as a result.
Skipped: InstallASAction.18
Skipped: Action "InstallASAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "as", install will be skipped as a result.
Skipped: InstallASAction.22
Skipped: Action "InstallASAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "as", install will be skipped as a result.
Skipped: InstallASAction.9
Skipped: Action "InstallASAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "as", install will be skipped as a result.
Skipped: InstallDTSAction
Skipped: Action "InstallDTSAction" was not run. Information reported during analysis:
No install request found for package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.11
Skipped: Action "InstallDTSAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.12
Skipped: Action "InstallDTSAction.12" was not run. Information reported during analysis:
No install request found for package: "sqlncli", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.18
Skipped: Action "InstallDTSAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.22
Skipped: Action "InstallDTSAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.9
Skipped: Action "InstallDTSAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "dts", install will be skipped as a result.
Skipped: InstallNSAction
Skipped: Action "InstallNSAction" was not run. Information reported during analysis:
No install request found for package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.11
Skipped: Action "InstallNSAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.12
Skipped: Action "InstallNSAction.12" was not run. Information reported during analysis:
No install request found for package: "sqlncli", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.18
Skipped: Action "InstallNSAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.22
Skipped: Action "InstallNSAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.9
Skipped: Action "InstallNSAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "ns", install will be skipped as a result.
Skipped: InstallRSAction.11
Skipped: Action "InstallRSAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "rs", install will be skipped as a result.
Skipped: InstallRSAction.18
Skipped: Action "InstallRSAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "rs", install will be skipped as a result.
Skipped: InstallRSAction.22
Skipped: Action "InstallRSAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "rs", install will be skipped as a result.
Skipped: InstallSqlAction
Skipped: Action "InstallSqlAction" was not run. Information reported during analysis:
No install request found for package: "sql", install will be skipped as a result.
Skipped: InstallSqlAction.11
Skipped: Action "InstallSqlAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "sql", install will be skipped as a result.
Skipped: InstallSqlAction.12
Skipped: Action "InstallSqlAction.12" was not run. Information reported during analysis:
No install request found for package: "sqlncli", referred by package: "sql", install will be skipped as a result.
Skipped: InstallSqlAction.18
Skipped: Action "InstallSqlAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "sql", install will be skipped as a result.
Skipped: InstallSqlAction.21
Skipped: Action "InstallSqlAction.21" was not run. Information reported during analysis:
No install request found for package: "sqlwriter", referred by package: "sql", install will be skipped as a result.
Skipped: InstallSqlAction.22
Skipped: Action "InstallSqlAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "sql", install will be skipped as a result.
Skipped: InstallSqlAction.9
Skipped: Action "InstallSqlAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "sql", install will be skipped as a result.
Skipped: InstallToolsAction.11
Skipped: Action "InstallToolsAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.12
Skipped: Action "InstallToolsAction.12" was not run. Information reported during analysis:
No install request found for package: "sqlncli", referred by package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.18
Skipped: Action "InstallToolsAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.22
Skipped: Action "InstallToolsAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.23
Skipped: Action "InstallToolsAction.23" was not run. Information reported during analysis:
No install request found for package: "ssmsee", referred by package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.9
Skipped: Action "InstallToolsAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "tools", install will be skipped as a result.
Skipped: InstallASAction
Skipped: Action "InstallASAction" was not run. Information reported during analysis:
No install request found for package: "as", install will be skipped as a result.
Skipped: InstallNSAction.10
Skipped: Action "InstallNSAction.10" was not run. Information reported during analysis:
No install request found for package: "sqlxml4", referred by package: "ns", install will be skipped as a result.
Skipped: InstallRSAction
Skipped: Action "InstallRSAction" was not run. Information reported during analysis:
No install request found for package: "rs", install will be skipped as a result.
Skipped: InstallToolsAction.10
Skipped: Action "InstallToolsAction.10" was not run. Information reported during analysis:
No install request found for package: "sqlxml4", referred by package: "tools", install will be skipped as a result.
Skipped: RepairForBackwardsCompatRedistAction
Skipped: Action "RepairForBackwardsCompatRedistAction" was not run. Information reported during analysis:
No install request found for package: "bcRedist", install will be skipped as a result.
Skipped: UninstallForMSDE2000Action
Skipped: Action "UninstallForMSDE2000Action" was not run. Information reported during analysis:
Action: "UninstallForMSDE2000Action" will be skipped due to the following condition:
Condition "Action: InstallSqlAction was skipped." returned true.
Skipped: UninstallForSQLAction
Skipped: Action "UninstallForSQLAction" was not run. Information reported during analysis:
Action: "UninstallForSQLAction" will be skipped due to the following condition:
Condition "Action: InstallSqlAction was skipped." returned true.
Skipped: UninstallForRS2000Action
Skipped: Action "UninstallForRS2000Action" was not run. Information reported during analysis:
Action: "UninstallForRS2000Action" will be skipped due to the following condition:
Condition "Action: InstallRSAction was skipped." returned true.
Skipped: InstallToolsAction
Skipped: Action "InstallToolsAction" was not run. Information reported during analysis:
No install request found for package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.13
Skipped: Action "InstallToolsAction.13" was not run. Information reported during analysis:
No install request found for package: "PPESku", referred by package: "tools", install will be skipped as a result.
Skipped: InstallToolsAction.20
Skipped: Action "InstallToolsAction.20" was not run. Information reported during analysis:
No install request found for package: "BOL", referred by package: "tools", install will be skipped as a result.
Error: Action "ExposeVistaClusteredResources" failed during execution. Error information reported during run:
Action: "ExposeVistaClusteredResources" will be marked as failed due to the following condition:
Condition "The Clustered SQL Server instance that hosts is installed." returned false.
Running: ReportChainingResults at: 2007/3/18 14:5:50
Complete: ReportChainingResults at: 2007/3/18 14:5:51, returned true
Delay load of action "UploadDrWatsonLogAction" returned nothing. No action will occur as a result.
Message pump returning: 0


SQLSetup0029_IBM-51406F0AE71_SCC.log

===================================================

SCCOpenPerformer Added machine: IBM-51406F0AE71
RegisterAddCheckArticleCallbackFunction registered callback function

Calling add article callback function for article: WMIServiceWin32OSWorking
Callback function returned TRUE
Adding Article...
Article Id: WMIServiceWin32OSWorking
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 2
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: OSLanguage
Property type: 2
Value: 2
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: SystemDirectory
Property type: 2

Calling add article callback function for article: WMIServiceWin32CompSystemWorking
Callback function returned TRUE
Adding Article...
Article Id: WMIServiceWin32CompSystemWorking
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_ComputerSystem
Property name: NumberOfProcessors
Property type: 2

Calling add article callback function for article: WMIServiceWin32ProcessorWorking
Callback function returned TRUE
Adding Article...
Article Id: WMIServiceWin32ProcessorWorking
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Processor
Property name: CpuStatus
Property type: 2

Calling add article callback function for article: WMIServiceReadRegWorking
Callback function returned TRUE
Adding Article...
Article Id: WMIServiceReadRegWorking
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SOFTWARE\Microsoft\Windows\CurrentVersion
Value name: ProgramFilesDir
Registry type: 4

Calling add article callback function for article: WMIServiceWin32DirectoryWorking
Callback function returned TRUE
Adding Article...
Article Id: WMIServiceWin32DirectoryWorking
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: Select * from Win32_Directory where name='C:\\'

Calling add article callback function for article: WMIServiceCIMDataWorking
Callback function returned TRUE
Adding Article...
Article Id: WMIServiceCIMDataWorking
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: Select * from CIM_DataFile where name='C:\\'

Calling add article callback function for article: XMLDomDocument
Callback function returned TRUE
Adding Article...
Article Id: XMLDomDocument
Article type: 1, ARTICLE_TYPE_GENERIC_FUNCTION
RegisterCallbackFunction registered callback function
Callback filter = 0x6

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Creating class instance Win32_ComputerSystem
CreateInstanceEnum Win32_ComputerSystem returned 0 (0x0)
Enumerating the first class of Win32_ComputerSystem
EnumClass of Win32_ComputerSystem returned 0 (0x0)
Getting property NumberOfProcessors
Get property NumberOfProcessors returned 0 (0x0)
Variant value: 1
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property OSLanguage
Get property OSLanguage returned 0 (0x0)
Variant value: 1033
Getting property SystemDirectory
Get property SystemDirectory returned 0 (0x0)
Variant value: C:\WINDOWS\system32
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property SystemDirectory
Get property SystemDirectory returned 0 (0x0)
Variant value: C:\WINDOWS\system32
Creating class instance Win32_Processor
CreateInstanceEnum Win32_Processor returned 0 (0x0)
Enumerating the first class of Win32_Processor
EnumClass of Win32_Processor returned 0 (0x0)
Getting property CpuStatus
Get property CpuStatus returned 0 (0x0)
Variant value: 1
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ProgramFilesDir registry value
Registry type for ProgramFilesDir registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value ProgramFilesDir
Variant value: C:\Program Files

Processing article WMIServiceWin32OSWorking
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article WMIServiceWin32CompSystemWorking
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article WMIServiceWin32ProcessorWorking
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article WMIServiceReadRegWorking
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article WMIServiceWin32DirectoryWorking
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article WMIServiceCIMDataWorking
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article XMLDomDocument
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE
SccPerformer closed.
SCCOpenPerformer Added machine: IBM-51406F0AE71
RegisterAddCheckArticleCallbackFunction registered callback function

Calling add article callback function for article: Processor
Callback function returned TRUE
Adding Article...
Article Id: Processor
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: Select * from Win32_Processor

Calling add article callback function for article: PhysicalMemory
Callback function returned TRUE
Adding Article...
Article Id: PhysicalMemory
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: Select * from Win32_ComputerSystem

Calling add article callback function for article: DiskFreeSpace
Callback function returned TRUE
Adding Article...
Article Id: DiskFreeSpace
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: Select * from CIM_LogicalDisk
RegisterCallbackFunction registered callback function
Callback filter = 0x6

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)

Processing article Processor
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article PhysicalMemory
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 50022 (0xc366)
Error code: 70009 (0x11179)
Calling callback function for reason: 0x2
Callback function returned TRUE

Processing article DiskFreeSpace
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE
SccPerformer closed.
SCCOpenPerformer Added machine: IBM-51406F0AE71
RegisterAddCheckArticleCallbackFunction registered callback function

Calling add article callback function for article: OSVersion
Callback function returned TRUE
Adding Article...
Article Id: OSVersion
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 2
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: Version
Property type: 2
Value: 2
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: OSType
Property type: 2

Calling add article callback function for article: OSServicePack
Callback function returned TRUE
Adding Article...
Article Id: OSServicePack
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 2
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: Version
Property type: 2
Value: 2
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: ServicePackMajorVersion
Property type: 2

Calling add article callback function for article: OSType
Callback function returned TRUE
Adding Article...
Article Id: OSType
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 4
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: OSProductSuite
Property type: 2
Value: 2
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: SuiteMask
Property type: 2
Value: 3
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: Version
Property type: 2
Value: 4
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_OperatingSystem
Property name: OSType
Property type: 2

Calling add article callback function for article: iisDep
Callback function returned TRUE
Adding Article...
Article Id: iisDep
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SYSTEM\CurrentControlSet\Services\IISAdmin
Value name: Start
Registry type: 4

Calling add article callback function for article: AdminShare
Callback function returned TRUE
Adding Article...
Article Id: AdminShare
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SYSTEM\CurrentControlSet\Services\lanmanserver
Value name: AutoShareServer
Registry type: 4

Calling add article callback function for article: PendingReboot
Callback function returned TRUE
Adding Article...
Article Id: PendingReboot
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SYSTEM\CurrentControlSet\Control\Session Manager
Value name: PendingFileRenameOperations
Registry type: 4

Calling add article callback function for article: PerfMon
Callback function returned TRUE
Adding Article...
Article Id: PerfMon
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 4
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib
Value name: Last Counter
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib
Value name: Last Help
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\009
Value name: Counter
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\009
Value name: Help
Registry type: 4

Calling add article callback function for article: IEVersion
Callback function returned TRUE
Adding Article...
Article Id: IEVersion
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: select * from CIM_DataFile where Name='C:\\WINDOWS\\system32\\shdocvw.dll'

Calling add article callback function for article: DriveWriteAccess
Callback function returned TRUE
Adding Article...
Article Id: DriveWriteAccess
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: select * from Win32_Directory where Name='C:\\Program Files\\Microsoft SQL Server' or Name='C:\\Program Files'

Calling add article callback function for article: COMPlus
Callback function returned TRUE
Adding Article...
Article Id: COMPlus
Article type: 1, ARTICLE_TYPE_GENERIC_FUNCTION

Calling add article callback function for article: ASPNETVersionRegistration
Callback function returned TRUE
Adding Article...
Article Id: ASPNETVersionRegistration
Article type: 1, ARTICLE_TYPE_GENERIC_FUNCTION

Calling add article callback function for article: MDAC25Version
Callback function returned TRUE
Adding Article...
Article Id: MDAC25Version
Article type: 1, ARTICLE_TYPE_GENERIC_FUNCTION

Calling add article callback function for article: SKUUpgrade
Callback function returned TRUE
Adding Article...
Article Id: SKUUpgrade
Article type: 1, ARTICLE_TYPE_GENERIC_FUNCTION
RegisterCallbackFunction registered callback function
Callback filter = 0x6

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property OSProductSuite
Get property OSProductSuite returned 0 (0x0)
Getting property OSType
Get property OSType returned 0 (0x0)
Variant value: 18
Getting property ServicePackMajorVersion
Get property ServicePackMajorVersion returned 0 (0x0)
Variant value: 2
Getting property SuiteMask
Get property SuiteMask returned 0 (0x0)
Variant value: 272
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 5.1.2600
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property OSType
Get property OSType returned 0 (0x0)
Variant value: 18
Getting property ServicePackMajorVersion
Get property ServicePackMajorVersion returned 0 (0x0)
Variant value: 2
Getting property SuiteMask
Get property SuiteMask returned 0 (0x0)
Variant value: 272
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 5.1.2600
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property ServicePackMajorVersion
Get property ServicePackMajorVersion returned 0 (0x0)
Variant value: 2
Getting property SuiteMask
Get property SuiteMask returned 0 (0x0)
Variant value: 272
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 5.1.2600
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property SuiteMask
Get property SuiteMask returned 0 (0x0)
Variant value: 272
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 5.1.2600
Creating class instance Win32_OperatingSystem
CreateInstanceEnum Win32_OperatingSystem returned 0 (0x0)
Enumerating the first class of Win32_OperatingSystem
EnumClass of Win32_OperatingSystem returned 0 (0x0)
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 5.1.2600
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for Last Counter registry value
Registry type for Last Counter registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Last Counter
Variant value: 9968
Looking for registry type for Last Help registry value
Registry type for Last Help registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Last Help
Variant value: 9969
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for Counter registry value
Registry type for Counter registry value is 7
Getting method GetMultiStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetMultiStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Counter
Variant array value of 5392 element(s)
Value [0]: 1
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for Help registry value
Registry type for Help registry value is 7
Getting method GetMultiStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetMultiStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Help
Variant array value of 5464 element(s)
Value [0]: 3
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for PendingFileRenameOperations registry value
Registry type for PendingFileRenameOperations registry value is 7
Getting method GetMultiStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetMultiStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PendingFileRenameOperations
Variant array value of 166 element(s)
Value [0]: \?\C:\swd\_ta01360\sharea\clntcfg
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for Start registry value
Registry type for Start registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for AutoShareServer registry value
Registry type for AutoShareServer registry value is 0

Processing article OSVersion
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article OSServicePack
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article OSType
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article iisDep
Scc Error: 50022 (0xc366)
Error code: 70348 (0x112cc)
Calling callback function for reason: 0x2
Callback function returned TRUE

Processing article AdminShare
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article PendingReboot
Scc Error: 50022 (0xc366)
Error code: 70011 (0x1117b)
Calling callback function for reason: 0x2
Callback function returned TRUE

Processing article PerfMon
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article IEVersion
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article DriveWriteAccess
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article COMPlus
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article ASPNETVersionRegistration
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article MDAC25Version
Scc Error: 0 (0x0)
Error code: 0 (0x0)
Calling callback function for reason: 0x4
Callback function returned TRUE

Processing article SKUUpgrade
Scc Error: 50022 (0xc366)
Error code: 70391 (0x112f7)
Calling callback function for reason: 0x2
Callback function returned TRUE
SccPerformer closed.
SCCOpenPerformer Added machine: IBM-51406F0AE71

Adding Article...
Article Id: CheckMSIProvider
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: select * from __Win32Provider where NAME='MSIProv'

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)

Processing article CheckMSIProvider
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: CIM_OperatingSystem
Article type: 3, ARTICLE_WMI_TYPE_CLASS
Namespace: cimv2
WQL Query: select * from CIM_OperatingSystem

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)

Processing article CIM_OperatingSystem
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: Pre-split Yukon instance
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\Instance Names
Value name:
Registry type: 2

Adding Article...
Article Id: SQL Server Standalone Product
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\Instance Names\SQL
Value name:
Registry type: 2

Adding Article...
Article Id: Olap Standalone Product
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\Instance Names\OLAP
Value name:
Registry type: 2

Adding Article...
Article Id: Report Server Standalone Product
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\Instance Names\RS
Value name:
Registry type: 2

Adding Article...
Article Id: Pre-split Yukon instance
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Wow6432Node\Microsoft\Microsoft SQL Server\Instance Names
Value name:
Registry type: 2

Adding Article...
Article Id: SQL Server Standalone Product
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Wow6432Node\Microsoft\Microsoft SQL Server\Instance Names\SQL
Value name:
Registry type: 2

Adding Article...
Article Id: Olap Standalone Product
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Wow6432Node\Microsoft\Microsoft SQL Server\Instance Names\OLAP
Value name:
Registry type: 2

Adding Article...
Article Id: Report Server Standalone Product
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Wow6432Node\Microsoft\Microsoft SQL Server\Instance Names\RS
Value name:
Registry type: 2

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)

Processing article Pre-split Yukon instance
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article SQL Server Standalone Product
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article Olap Standalone Product
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article Report Server Standalone Product
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article Pre-split Yukon instance
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article SQL Server Standalone Product
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article Olap Standalone Product
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article Report Server Standalone Product
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: MSSQLSERVER
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="MSSQLServerOLAPService"
Property name: PathName
Property type: 2

Adding Article...
Article Id: MSSQLSERVER
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="ReportServer"
Property name: PathName
Property type: 2

Adding Article...
Article Id: MSSQLSERVER
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="MSSQLSERVER"
Property name: PathName
Property type: 2

Adding Article...
Article Id: SECINS
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="MSSQL$SECINS"
Property name: PathName
Property type: 2

Adding Article...
Article Id: TEST
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="MSSQL$TEST"
Property name: PathName
Property type: 2

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Getting property PathName
Get property PathName returned 0 (0x0)
Variant value: "C:\Program Files\Microsoft SQL Server\MSSQL.2\MSSQL\Binn\sqlservr.exe" -sSECINS
Getting property PathName
Get property PathName returned 0 (0x0)
Variant value: "C:\Program Files\Microsoft SQL Server\MSSQL.3\MSSQL\Binn\sqlservr.exe" -sTEST
Getting property PathName
Get property PathName returned 0 (0x0)
Variant value: "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlservr.exe" -sMSSQLSERVER

Processing article MSSQLSERVER
Scc Error: 50038 (0xc376)
Error code: 1626 (0x65a)

Processing article MSSQLSERVER
Scc Error: 50038 (0xc376)
Error code: 1626 (0x65a)

Processing article MSSQLSERVER
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article SECINS
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article TEST
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: MSSQLSERVER
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="MSSQLServerOLAPService"
Property name: PathName
Property type: 2

Adding Article...
Article Id: MSSQLSERVER
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: Win32_Service.Name="ReportServer"
Property name: PathName
Property type: 2

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)

Processing article MSSQLSERVER
Scc Error: 50038 (0xc376)
Error code: 1626 (0x65a)

Processing article MSSQLSERVER
Scc Error: 50038 (0xc376)
Error code: 1626 (0x65a)

Adding Article...
Article Id: InstallDetails
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 13
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Windows\CurrentVersion\Uninstall\{130A3BE1-85CC-4135-8EA7-5A724EE6CE2C}
Value name: DisplayName
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: SqlProgramDir
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: SQLPath
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: SQLBinRoot
Registry type: 4
Value: 5
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: SQLDataRoot
Registry type: 4
Value: 6
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: Language
Registry type: 4
Value: 7
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: CSDVersionNumber
Registry type: 4
Value: 8
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: CSDVersion
Registry type: 4
Value: 9
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: PatchLevel
Registry type: 4
Value: 10
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: SP
Registry type: 4
Value: 11
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Cluster
Value name: ClusterName
Registry type: 4
Value: 12
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: SqlCluster
Registry type: 4
Value: 13
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Value name: checksum
Registry type: 4

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ClusterName registry value
Registry type for ClusterName registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for checksum registry value
Registry type for checksum registry value is 3
Getting method GetBinaryValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetBinaryValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value checksum
Variant array value of 195 element(s)
Value [0]: 57
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for CSDVersion registry value
Registry type for CSDVersion registry value is 0
Looking for registry type for CSDVersionNumber registry value
Registry type for CSDVersionNumber registry value is 0
Looking for registry type for Language registry value
Registry type for Language registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Language
Variant value: 1033
Looking for registry type for PatchLevel registry value
Registry type for PatchLevel registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PatchLevel
Variant value: 9.2.3042
Looking for registry type for SP registry value
Registry type for SP registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SP
Variant value: 2
Looking for registry type for SQLBinRoot registry value
Registry type for SQLBinRoot registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLBinRoot
Variant value: c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn
Looking for registry type for SqlCluster registry value
Registry type for SqlCluster registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SqlCluster
Variant value: 0
Looking for registry type for SQLDataRoot registry value
Registry type for SQLDataRoot registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLDataRoot
Variant value: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL
Looking for registry type for SQLPath registry value
Registry type for SQLPath registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLPath
Variant value: c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL
Looking for registry type for SqlProgramDir registry value
Registry type for SqlProgramDir registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SqlProgramDir
Variant value: c:\Program Files\Microsoft SQL Server\
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for DisplayName registry value
Registry type for DisplayName registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value DisplayName
Variant value: Microsoft SQL Server 2005

Processing article InstallDetails
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: InstallDetails
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 13
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Windows\CurrentVersion\Uninstall\{FFFA78A7-BD51-4255-8470-C4D4A85B49F5}
Value name: DisplayName
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: SqlProgramDir
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: SQLPath
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: SQLBinRoot
Registry type: 4
Value: 5
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: SQLDataRoot
Registry type: 4
Value: 6
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: Language
Registry type: 4
Value: 7
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: CSDVersionNumber
Registry type: 4
Value: 8
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: CSDVersion
Registry type: 4
Value: 9
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: PatchLevel
Registry type: 4
Value: 10
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: SP
Registry type: 4
Value: 11
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Cluster
Value name: ClusterName
Registry type: 4
Value: 12
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: SqlCluster
Registry type: 4
Value: 13
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.2\Setup
Value name: checksum
Registry type: 4

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ClusterName registry value
Registry type for ClusterName registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for checksum registry value
Registry type for checksum registry value is 3
Getting method GetBinaryValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetBinaryValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value checksum
Variant array value of 195 element(s)
Value [0]: 57
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for CSDVersion registry value
Registry type for CSDVersion registry value is 0
Looking for registry type for CSDVersionNumber registry value
Registry type for CSDVersionNumber registry value is 0
Looking for registry type for Language registry value
Registry type for Language registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Language
Variant value: 1033
Looking for registry type for PatchLevel registry value
Registry type for PatchLevel registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PatchLevel
Variant value: 9.2.3042
Looking for registry type for SP registry value
Registry type for SP registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SP
Variant value: 2
Looking for registry type for SQLBinRoot registry value
Registry type for SQLBinRoot registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLBinRoot
Variant value: c:\Program Files\Microsoft SQL Server\MSSQL.2\MSSQL\Binn
Looking for registry type for SqlCluster registry value
Registry type for SqlCluster registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SqlCluster
Variant value: 0
Looking for registry type for SQLDataRoot registry value
Registry type for SQLDataRoot registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLDataRoot
Variant value: C:\Program Files\Microsoft SQL Server\MSSQL.2\MSSQL
Looking for registry type for SQLPath registry value
Registry type for SQLPath registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLPath
Variant value: c:\Program Files\Microsoft SQL Server\MSSQL.2\MSSQL
Looking for registry type for SqlProgramDir registry value
Registry type for SqlProgramDir registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SqlProgramDir
Variant value: c:\Program Files\Microsoft SQL Server\
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for DisplayName registry value
Registry type for DisplayName registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value DisplayName
Variant value: Microsoft SQL Server 2005 (SECINS)

Processing article InstallDetails
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: InstallDetails
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 13
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Windows\CurrentVersion\Uninstall\{14AD8FEC-4128-4133-A49D-66A7F14651A2}
Value name: DisplayName
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: SqlProgramDir
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: SQLPath
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: SQLBinRoot
Registry type: 4
Value: 5
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: SQLDataRoot
Registry type: 4
Value: 6
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: Language
Registry type: 4
Value: 7
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: CSDVersionNumber
Registry type: 4
Value: 8
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: CSDVersion
Registry type: 4
Value: 9
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: PatchLevel
Registry type: 4
Value: 10
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: SP
Registry type: 4
Value: 11
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Cluster
Value name: ClusterName
Registry type: 4
Value: 12
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: SqlCluster
Registry type: 4
Value: 13
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\MSSQL.3\Setup
Value name: checksum
Registry type: 4

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ClusterName registry value
Registry type for ClusterName registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for checksum registry value
Registry type for checksum registry value is 3
Getting method GetBinaryValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetBinaryValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value checksum
Variant array value of 195 element(s)
Value [0]: 57
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for CSDVersion registry value
Registry type for CSDVersion registry value is 0
Looking for registry type for CSDVersionNumber registry value
Registry type for CSDVersionNumber registry value is 0
Looking for registry type for Language registry value
Registry type for Language registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Language
Variant value: 1033
Looking for registry type for PatchLevel registry value
Registry type for PatchLevel registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PatchLevel
Variant value: 9.00.1399.06
Looking for registry type for SP registry value
Registry type for SP registry value is 0
Looking for registry type for SQLBinRoot registry value
Registry type for SQLBinRoot registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLBinRoot
Variant value: C:\Program Files\Microsoft SQL Server\MSSQL.3\MSSQL\Binn
Looking for registry type for SqlCluster registry value
Registry type for SqlCluster registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SqlCluster
Variant value: 0
Looking for registry type for SQLDataRoot registry value
Registry type for SQLDataRoot registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLDataRoot
Variant value: C:\Program Files\Microsoft SQL Server\MSSQL.3\MSSQL
Looking for registry type for SQLPath registry value
Registry type for SQLPath registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLPath
Variant value: C:\Program Files\Microsoft SQL Server\MSSQL.3\MSSQL
Looking for registry type for SqlProgramDir registry value
Registry type for SqlProgramDir registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SqlProgramDir
Variant value: C:\Program Files\Microsoft SQL Server\
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for DisplayName registry value
Registry type for DisplayName registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value DisplayName
Variant value: Microsoft SQL Server 2005 (TEST)

Processing article InstallDetails
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: KeyFileVersion
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.1\\MSSQL\\Binn\\sqlservr.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyFileVersion
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.2\\MSSQL\\Binn\\sqlservr.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyFileVersion
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="C:\\Program Files\\Microsoft SQL Server\\MSSQL.3\\MSSQL\\Binn\\sqlservr.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: InstIDList
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server
Value name:
Registry type: 1

Adding Article...
Article Id: InstIDListWow64
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Wow6432Node\Microsoft\Microsoft SQL Server
Value name:
Registry type: 1

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.3042.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.3042.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.1399.00
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumKey in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumKey in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumKey in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumKey in StdRegProv class
ExecMethod returned 0 (0x0)

Processing article KeyFileVersion
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyFileVersion
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyFileVersion
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article InstIDList
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article InstIDListWow64
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: ToolList
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90
Value name:
Registry type: 1

Adding Article...
Article Id: ToolListWow64
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Wow6432Node\Microsoft\Microsoft SQL Server\90
Value name:
Registry type: 1

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumKey in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumKey in StdRegProv class
ExecMethod returned 0 (0x0)
Getting method EnumKey in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumKey in StdRegProv class
ExecMethod returned 0 (0x0)

Processing article ToolList
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article ToolListWow64
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: InstallDetails
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 13
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Windows\CurrentVersion\Uninstall\{EE8CFFD9-6E29-4DC3-A967-7348D5F41F44}
Value name: DisplayName
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: SqlProgramDir
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: SQLPath
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: SQLBinRoot
Registry type: 4
Value: 5
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: SQLDataRoot
Registry type: 4
Value: 6
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: Language
Registry type: 4
Value: 7
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: CSDVersionNumber
Registry type: 4
Value: 8
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: CSDVersion
Registry type: 4
Value: 9
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: PatchLevel
Registry type: 4
Value: 10
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: SP
Registry type: 4
Value: 11
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Cluster
Value name: ClusterName
Registry type: 4
Value: 12
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: SqlCluster
Registry type: 4
Value: 13
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\DTS\Setup
Value name: checksum
Registry type: 4

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ClusterName registry value
Registry type for ClusterName registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for checksum registry value
Registry type for checksum registry value is 3
Getting method GetBinaryValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetBinaryValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value checksum
Variant array value of 195 element(s)
Value [0]: 57
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for CSDVersion registry value
Registry type for CSDVersion registry value is 0
Looking for registry type for CSDVersionNumber registry value
Registry type for CSDVersionNumber registry value is 0
Looking for registry type for Language registry value
Registry type for Language registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Language
Variant value: 1033
Looking for registry type for PatchLevel registry value
Registry type for PatchLevel registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PatchLevel
Variant value: 9.2.3042
Looking for registry type for SP registry value
Registry type for SP registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SP
Variant value: 2
Looking for registry type for SQLBinRoot registry value
Registry type for SQLBinRoot registry value is 0
Looking for registry type for SqlCluster registry value
Registry type for SqlCluster registry value is 0
Looking for registry type for SQLDataRoot registry value
Registry type for SQLDataRoot registry value is 0
Looking for registry type for SQLPath registry value
Registry type for SQLPath registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLPath
Variant value: c:\Program Files\Microsoft SQL Server\90\DTS\
Looking for registry type for SqlProgramDir registry value
Registry type for SqlProgramDir registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for DisplayName registry value
Registry type for DisplayName registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value DisplayName
Variant value: Microsoft SQL Server 2005 Integration Services

Processing article InstallDetails
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: InstallDetails
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 13
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Windows\CurrentVersion\Uninstall\{37E9AD9F-3217-4229-B5A5-7A0C82364C6C}
Value name: DisplayName
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: SqlProgramDir
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: SQLPath
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: SQLBinRoot
Registry type: 4
Value: 5
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: SQLDataRoot
Registry type: 4
Value: 6
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: Language
Registry type: 4
Value: 7
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: CSDVersionNumber
Registry type: 4
Value: 8
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: CSDVersion
Registry type: 4
Value: 9
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: PatchLevel
Registry type: 4
Value: 10
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: SP
Registry type: 4
Value: 11
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Cluster
Value name: ClusterName
Registry type: 4
Value: 12
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: SqlCluster
Registry type: 4
Value: 13
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\NS\Setup
Value name: checksum
Registry type: 4

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ClusterName registry value
Registry type for ClusterName registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for checksum registry value
Registry type for checksum registry value is 3
Getting method GetBinaryValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetBinaryValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value checksum
Variant array value of 195 element(s)
Value [0]: 57
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for CSDVersion registry value
Registry type for CSDVersion registry value is 0
Looking for registry type for CSDVersionNumber registry value
Registry type for CSDVersionNumber registry value is 0
Looking for registry type for Language registry value
Registry type for Language registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Language
Variant value: 1033
Looking for registry type for PatchLevel registry value
Registry type for PatchLevel registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PatchLevel
Variant value: 9.2.3042
Looking for registry type for SP registry value
Registry type for SP registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SP
Variant value: 2
Looking for registry type for SQLBinRoot registry value
Registry type for SQLBinRoot registry value is 0
Looking for registry type for SqlCluster registry value
Registry type for SqlCluster registry value is 0
Looking for registry type for SQLDataRoot registry value
Registry type for SQLDataRoot registry value is 0
Looking for registry type for SQLPath registry value
Registry type for SQLPath registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLPath
Variant value: c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\
Looking for registry type for SqlProgramDir registry value
Registry type for SqlProgramDir registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for DisplayName registry value
Registry type for DisplayName registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value DisplayName
Variant value: Microsoft SQL Server 2005 Notification Services

Processing article InstallDetails
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: InstallDetails
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 13
Value: 1
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Windows\CurrentVersion\Uninstall\{1DD463C0-A50A-4394-B7E4-5895C02F9E0D}
Value name: DisplayName
Registry type: 4
Value: 2
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: SqlProgramDir
Registry type: 4
Value: 3
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: SQLPath
Registry type: 4
Value: 4
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: SQLBinRoot
Registry type: 4
Value: 5
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: SQLDataRoot
Registry type: 4
Value: 6
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: Language
Registry type: 4
Value: 7
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: CSDVersionNumber
Registry type: 4
Value: 8
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: CSDVersion
Registry type: 4
Value: 9
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: PatchLevel
Registry type: 4
Value: 10
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: SP
Registry type: 4
Value: 11
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Cluster
Value name: ClusterName
Registry type: 4
Value: 12
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: SqlCluster
Registry type: 4
Value: 13
Type: ARTICLE_WMI_TYPE_REGISTRY
DefKey: 0x80000002
Subkey name: Software\Microsoft\Microsoft SQL Server\90\Tools\Setup
Value name: checksum
Registry type: 4

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\default
GetNamespace \\root\default returned 0 (0x0)
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for ClusterName registry value
Registry type for ClusterName registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for checksum registry value
Registry type for checksum registry value is 3
Getting method GetBinaryValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetBinaryValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value checksum
Variant array value of 195 element(s)
Value [0]: 57
Value [1]:
Value [2]:
Value [3]:
Value [4]:
Value [5]:
Value Devil:
Value [7]:
Value Music:
Value [9]:
Looking for registry type for CSDVersion registry value
Registry type for CSDVersion registry value is 0
Looking for registry type for CSDVersionNumber registry value
Registry type for CSDVersionNumber registry value is 0
Looking for registry type for Language registry value
Registry type for Language registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value Language
Variant value: 1033
Looking for registry type for PatchLevel registry value
Registry type for PatchLevel registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value PatchLevel
Variant value: 9.2.3042
Looking for registry type for SP registry value
Registry type for SP registry value is 4
Getting method GetDWORDValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetDWORDValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SP
Variant value: 2
Looking for registry type for SQLBinRoot registry value
Registry type for SQLBinRoot registry value is 0
Looking for registry type for SqlCluster registry value
Registry type for SqlCluster registry value is 0
Looking for registry type for SQLDataRoot registry value
Registry type for SQLDataRoot registry value is 0
Looking for registry type for SQLPath registry value
Registry type for SQLPath registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value SQLPath
Variant value: c:\Program Files\Microsoft SQL Server\90\Tools\
Looking for registry type for SqlProgramDir registry value
Registry type for SqlProgramDir registry value is 0
Getting method EnumValues in StdRegProv class
GetMethod returned 0 (0x0)
Executing method EnumValues in StdRegProv class
ExecMethod returned 0 (0x0)
Looking for registry type for DisplayName registry value
Registry type for DisplayName registry value is 1
Getting method GetStringValue in StdRegProv class
GetMethod returned 0 (0x0)
Executing method GetStringValue in StdRegProv class
ExecMethod returned 0 (0x0)
Getting registry value DisplayName
Variant value: Microsoft SQL Server 2005 Tools

Processing article InstallDetails
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.1\\MSSQL\\Binn\\SQLServr.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.1\\MSSQL\\Binn\\msftesql.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.1\\MSSQL\\Binn\\XpRepl.dll"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.2\\MSSQL\\Binn\\SQLServr.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.2\\MSSQL\\Binn\\msftesql.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="c:\\Program Files\\Microsoft SQL Server\\MSSQL.2\\MSSQL\\Binn\\XpRepl.dll"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="C:\\Program Files\\Microsoft SQL Server\\MSSQL.3\\MSSQL\\Binn\\SQLServr.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="C:\\Program Files\\Microsoft SQL Server\\MSSQL.3\\MSSQL\\Binn\\msftesql.exe"
Property name: Version
Property type: 2

Adding Article...
Article Id: KeyValue
Article type: 4, ARTICLE_WMI_TYPE_VALUES
Number of value: 1
Value: 1
Type: ARTICLE_WMI_TYPE_PROPERTY
Namespace: cimv2
Class name: CIM_DataFile.Name="C:\\Program Files\\Microsoft SQL Server\\MSSQL.3\\MSSQL\\Binn\\XpRepl.dll"
Property name: Version
Property type: 2

Performing check on local machine IBM-51406F0AE71
Connecting to IBM-51406F0AE71 machine
ConnectServer returned 0 (0x0)
ConnectServer returned 0 (0x0)
Openning namespace \\root\cimv2
GetNamespace \\root\cimv2 returned 0 (0x0)
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 12.0.6828.0
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.3042.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.1399.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 12.0.6828.0
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.3042.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.1399.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 12.0.5626.1
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.1399.00
Getting property Version
Get property Version returned 0 (0x0)
Variant value: 2005.090.1399.00

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)

Processing article KeyValue
Scc Error: 0 (0x0)
Error code: 0 (0x0)
SccPerformer closed.


|||
I had this problem and it ended up that the flags needed to match the case
ie INSTANCENAME needed to be in caps, SQL_Engine needed to be in the correct case. Once I did this it worked fine

I hope this helps.

Cheers,

Patrick