Friday, March 30, 2012

Problems Linking to Oracle Server

Has anyone successfully linked to an Linux Oracle server running 9i? We are unable to get the link working.....have installe dvarious drivers and still get connection refused. Any thoughts?

If this is a Linked Server issue I would try the SQL Server Engine forum.

Donald

Problems linking Access to SQL replicated tables

Hello!
I was wondering if anyone could help me.
I am running an Access application that uses linked tables to connect to a SQL server.
Ever since I turned on replication on those tables, I cannot add records to the table using regular Access forms (and, for that matter, I cannot do it by just double-clicking on the table from Access and trying to enter records).

Any help will be greatly appreciated!!!!!Have you also refreshed those links i.e.(deleted the links and recreated them in Access) since you "turned on replication on those tables" (or not)?|||Yes, I have deleted the link and recreated it after turning on replication, but I still get the same error every time I add a record.|||You are able to add a row via query analyzer or EM, and the table is not a read only subscribed table you are attempting to add rows to? (just asking the obvious things)
If all that is in order you might check to see if the generated link schemas include columns that the system automatically populates with data. If there are some (replication related columns) or others such as identity, GUID, timestamp, etc. columns (that are automatically populated), try removing them from the Access link schemas (not the base tables) then recreate your link(s) and attempt a test row insert. If that does not work try creating a view (test insertion in QA / EM), then create a linked table to the view and test its behavior.sql

problems joing data that contains quotes.....

How can I do a join where the data contins single quotes?
eg we have two suburbs in canberra called
O'MALLEY
and
O'CONNER
I have to make a join between two tables based on the value of the
suburb...but the join fails and always returns null when joining on these
two suburbs - other suburbs work just fine. Given that I cant change the
name of the suburbs(!) how can I make the join work:
select c.surname, homesuburb,uluACTSuburbs.code from community c join
join addresses a on a.addressid=c.addressid
left join uluACTSuburbs on homesuburb=uluACTSuburbs.description
returns null where homesuburb = O'MALLEY or O'CONNOR
Is there any way to quote the entire value before making the join?
Al Blake, Canberra, AustraliaHi
create table #test1
(
col1 varchar(50)
)
insert into #test1 values ('John')
insert into #test1 values ('Bill')
insert into #test1 values ('O''Connor')
create table #test2
(
col1 varchar(50)
)
insert into #test2 values ('Alexl')
insert into #test2 values ('Tom')
insert into #test2 values ('O''Connor')
select a.col1,b.col1 from #test1 a join #test2 b
on a.col1=b.col1
Note: If it does not help you please post DDL + sample data + expected
result
"Al Blake" <al@._delete_this_.blakes.net> wrote in message
news:uw$%23rilEFHA.3492@.TK2MSFTNGP12.phx.gbl...
> How can I do a join where the data contins single quotes?
> eg we have two suburbs in canberra called
> O'MALLEY
> and
> O'CONNER
> I have to make a join between two tables based on the value of the
> suburb...but the join fails and always returns null when joining on these
> two suburbs - other suburbs work just fine. Given that I cant change the
> name of the suburbs(!) how can I make the join work:
> select c.surname, homesuburb,uluACTSuburbs.code from community c join
> join addresses a on a.addressid=c.addressid
> left join uluACTSuburbs on homesuburb=uluACTSuburbs.description
> returns null where homesuburb = O'MALLEY or O'CONNOR
> Is there any way to quote the entire value before making the join?
> Al Blake, Canberra, Australia
>|||Doh,
I this case it was my own fault ;)
The data had been imported from word and someone had used the ACCENT
character, not single quote for O'Malley.
When I changed the character the join works prefectly without any messing
about.
Thanks for your reply anyway.
Al
"Uri Dimant" <urid@.iscar.co.il> wrote in message
news:e%237NCrlEFHA.3416@.TK2MSFTNGP09.phx.gbl...
> Hi
> create table #test1
> (
> col1 varchar(50)
> )
> insert into #test1 values ('John')
> insert into #test1 values ('Bill')
> insert into #test1 values ('O''Connor')
> create table #test2
> (
> col1 varchar(50)
> )
> insert into #test2 values ('Alexl')
> insert into #test2 values ('Tom')
> insert into #test2 values ('O''Connor')
>
> select a.col1,b.col1 from #test1 a join #test2 b
> on a.col1=b.col1
>
> Note: If it does not help you please post DDL + sample data + expected
> result
>
>
>
> "Al Blake" <al@._delete_this_.blakes.net> wrote in message
> news:uw$%23rilEFHA.3492@.TK2MSFTNGP12.phx.gbl...
>|||Hi
Check what type of quote is actually present: ' or `
It is a normal character, so a join does not care what type of character it
is.
Regards
--
Mike Epprecht, Microsoft SQL Server MVP
Zurich, Switzerland
IM: mike@.epprecht.net
MVP Program: http://www.microsoft.com/mvp
Blog: http://www.msmvps.com/epprecht/
"Al Blake" <al@._delete_this_.blakes.net> wrote in message
news:uw$#rilEFHA.3492@.TK2MSFTNGP12.phx.gbl...
> How can I do a join where the data contins single quotes?
> eg we have two suburbs in canberra called
> O'MALLEY
> and
> O'CONNER
> I have to make a join between two tables based on the value of the
> suburb...but the join fails and always returns null when joining on these
> two suburbs - other suburbs work just fine. Given that I cant change the
> name of the suburbs(!) how can I make the join work:
> select c.surname, homesuburb,uluACTSuburbs.code from community c join
> join addresses a on a.addressid=c.addressid
> left join uluACTSuburbs on homesuburb=uluACTSuburbs.description
> returns null where homesuburb = O'MALLEY or O'CONNOR
> Is there any way to quote the entire value before making the join?
> Al Blake, Canberra, Australia
>

Problems ith Connection string to SQL Express

My application is usningtraditional connection string:

<

addkey="DbConnection"value="driver={SQL Native Driver}; provider=SQLNCLI;server=localhost;trusted_connection=yes;database=ebay" />

It works fine with database attached to SQL Server, how do I make this working with SQL Express attachable file in data directory?

I have tried this, but it does not work:

Provider=SQLNCLI;Server=RAF001\SQLExpress;AttachDbFilename=..\TestSite\App_Data\ebay.mdf;Database=ebay;Trusted_Connection=Yes;

Problems integrating reporting services into a web app

Hello

I have an existing web app on my web server, and reporting services on my app server. I'm trying to integrate the reports into the web app.

The problem is, when the user clicks 'execute report', the app, predictably, falls over, because the aspx page thinks it's on the same server as reporting services, whereas it's not.

Does anybody know how these requests from the aspx page can be redirected to a different server? The way I see it, if I can't get the integration working through url access, I'll have to use the soap api, which will involve dynamically creating drop downs for the report parameters, etc, which is moving away from utilising the advantages that reporting services brings!

Any thoughts would be greatly appreciated.

Thanks in advance
Dominic

Hi Dominic,

this article will help you embed the report in your web application:
http://msdn2.microsoft.com/en-us/library/ms153563.aspx

regards
Helen|||

Thanks for the reply helen. My problem is that in our architecture the client can't access the report server directly. I've decided to go with the reportviewer control instead.

Cheers

Dominic

Problems instancing Reporting Services

I set up Reporting Services as a Web Reference and when I try to instance it, I get a "type expected" error message. Let's say the web reference is named SQLRS. When I do a DIM rs as NEW SQLRS, a blue squiggly appears under SQLRS and it displays the type expected error message.

What am I missing? Anyone know or have a link to an example I could look at? Thanks for any help.Additional information:

When I bring up the Reporting Services as a web reference, I don't get a drop down list of the methods and properties that are listed in the Add a Web Reference dialogue box and from what I've seen in examples online. For instance, there should be a ListChildren method, but I don't see it when intellisense kicks in.

Example: Let's say I name the web service ReportingService. If I try to instance it by going DIM rs as NEW ReportingService, I get the blue squiggly line complaining that "Type expected". If I type ReportingService. intellisense kicks in, but what appears in the drop down box is not what I expect. There are no ListChildren, ListEvents, ListJobs, etc.

What I suspect is that I need to DIM the ReportingService with one of the selections from the intellisense dropdown box, but I have no idea which one as all the examples I've seen online show differently. Has there been changes to this with service pack 2 that I'm not aware of? Any help would be appreciated.|||Ok, I just love answering my own questions.

It turns out that all the examples I've been trying to follow are a bit off. To create an instance of the Reporting Services as a web service, first add the web service as a web reference to your project. (i.e., right click on references in the solution explorer and type in the web address of the reporting services: http://myserver/ReportServer/ReportService.asmx)

Then, to create an instance, use something like:

DIM rs as NEW ReportingService.ReportingService

Now you will have an object called rs that will have the properties and methods of the ReportingService web service such as ListChildren, ListJobs, Render, etc.

Problems installing/accessing SQL server via web

Hello,
I am doing some development for a client who has an IIS server running
webmail on the same box as the SQL server 2000 sp3 install. I am trying to connect to
this box but do not know how to set it up to connect. The IIS for SQL server
tool lets me add a virtual directory just fine but will not connect. This
problem is not firewall based, as the 1433 port is open, and the database is
running just fine, as those in the LAN can connect ok. My problem is with
the 'external' face and my concern that the running IIS process is
preventing web-based connection. How do I modify/change the IIS for SQL
virtual directory to respond?
If you need more information, please let me know.
Thanks,
Donald Wheeler
What error do you get when you attempt to connect?
Rand
This posting is provided "as is" with no warranties and confers no rights.
|||I get the standard server not found or access denied error - both via ASP calls and the SQL Server Query analyzer. I don't think that it's an authentication problem because I've tried using both valid and invalid passwords, as well as trying to the connec
t to the Northwind database, and received the same error
Donald
|||Just to clarify, I am trying to enable web access to a SQL Server 2k sp3 database on a machine that already has a set of active IIS directories for webmail. I think the firewall is ok but the connections are getting 'swallowed' by the active IIS and not h
itting the SQL server - does this make sense and if so, how may I remedy it?
Thanks,
Donald Wheeler
sql

Problems installing/accessing SQL server via web

Hello,
I am doing some development for a client who has an IIS server running
webmail on the same box as the SQL server 2000 sp3 install. I am trying to c
onnect to
this box but do not know how to set it up to connect. The IIS for SQL server
tool lets me add a virtual directory just fine but will not connect. This
problem is not firewall based, as the 1433 port is open, and the database is
running just fine, as those in the LAN can connect ok. My problem is with
the 'external' face and my concern that the running IIS process is
preventing web-based connection. How do I modify/change the IIS for SQL
virtual directory to respond?
If you need more information, please let me know.
Thanks,
Donald WheelerWhat error do you get when you attempt to connect?
Rand
This posting is provided "as is" with no warranties and confers no rights.|||I get the standard server not found or access denied error - both via ASP ca
lls and the SQL Server Query analyzer. I don't think that it's an authentica
tion problem because I've tried using both valid and invalid passwords, as w
ell as trying to the connec
t to the Northwind database, and received the same error
Donald|||Just to clarify, I am trying to enable web access to a SQL Server 2k sp3 dat
abase on a machine that already has a set of active IIS directories for webm
ail. I think the firewall is ok but the connections are getting 'swallowed'
by the active IIS and not h
itting the SQL server - does this make sense and if so, how may I remedy it?
Thanks,
Donald Wheeler

Problems installing SSRS on web server

Hi gang -
I've just recently begun playing around with SQL Server Reporting
Services (SSRS), and I was blown away by it. I had no problem
installing it to my development machine (XP Pro, IIS 6, SQL Server 2000
Dev Ed), but I'm having a lot of trouble setting it up in the
production environment.
I am incredibly frustrated by the documentation on this, and from what
I've seen, no one else has had this problem.
When I'm attempting to install to the first WEB SERVER(IIS 5.0), I get
a warning message during the install that I don't have the Visual
Studio IDE installed (which shouldn't be a problem--I mean, hey, it's a
server, right?). Fine.
The next page or so is the list of which components you want to
install--and Tada, NO SERVER COMPONENTS are in the list. The first time
this happened, I shrugged, and went through the rest of the set up
process. I didn't recieve any of the other setup pages (virtual
directories, SQL Server connection info, etc). It ended up installing a
handful of other dlls (everything under the client components branch
was available for install).
Stumped? I am.
Here's the last little bit of info: I'm attempting to install this
software over a terminal connection. The servers are co-located, and I
was hopeing to install this without taking the neccessary road trip. I
doubt this is the problem, but hey, you never know.
If anyone else has experienced this problem and has a resolution,
please, please let me know.
Thanks much,
Mark S. Milley, MCADI have found a post that had a similar problem until they upgrade to
SP4 on the web server. I'm going to see if that corrects the problem.
In addition, there is no Default Web Site on the server, however, my
symptoms so far are different than what others have experienced. I'll
keep you posted...|||Ignore warning about VS, that is only for development tools, not production.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Mark Milley - BinarySwitch" <mark.milley@.binaryswitch.com> wrote in message
news:1126879087.836704.12350@.z14g2000cwz.googlegroups.com...
> Hi gang -
> I've just recently begun playing around with SQL Server Reporting
> Services (SSRS), and I was blown away by it. I had no problem
> installing it to my development machine (XP Pro, IIS 6, SQL Server 2000
> Dev Ed), but I'm having a lot of trouble setting it up in the
> production environment.
> I am incredibly frustrated by the documentation on this, and from what
> I've seen, no one else has had this problem.
>
> When I'm attempting to install to the first WEB SERVER(IIS 5.0), I get
> a warning message during the install that I don't have the Visual
> Studio IDE installed (which shouldn't be a problem--I mean, hey, it's a
> server, right?). Fine.
> The next page or so is the list of which components you want to
> install--and Tada, NO SERVER COMPONENTS are in the list. The first time
> this happened, I shrugged, and went through the rest of the set up
> process. I didn't recieve any of the other setup pages (virtual
> directories, SQL Server connection info, etc). It ended up installing a
> handful of other dlls (everything under the client components branch
> was available for install).
> Stumped? I am.
> Here's the last little bit of info: I'm attempting to install this
> software over a terminal connection. The servers are co-located, and I
> was hopeing to install this without taking the neccessary road trip. I
> doubt this is the problem, but hey, you never know.
> If anyone else has experienced this problem and has a resolution,
> please, please let me know.
> Thanks much,
> Mark S. Milley, MCAD
>

Problems installing SRS

I'm trying to install Reporting Services on a new XP Pro SP2 IIS 6
development box. The local database is SQL Server 2000 sp3.
At the end of the installation I get an error message indicating that
the 'Setup could not initialize the report server' and that I'll have
to manually initialize the Report Server.
After running rsactive I got the message indicating that the "Report
Server Web Service has not generated a public key".
Looking in the log files is less-than-helpful (hundreds of lines
indicating that some -unknown- file is missing):
===============================================================================
aspnet_wp!library!a4!12/01/2004-10:15:58:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for
more details., ;
Info: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for
more details. --> System.IO.FileNotFoundException: The system cannot
find the file specified.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(String
key)
at Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty(String
name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(String
name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageContent()
at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
-- End of inner exception stack trace --
a
===============================================================================
When I navigate to the http://localhost/ReportServer I get the
following error message:
An internal error occurred on the report server. (again not very
helpful).
IIS is listening on port 80 (and there are no other apps on the port).
SO... I'm running out of things to try and patience. Is there anyone
out there who can help me get over this problem? I really need to
get this installed ASAP and there doesn't seem to be any documentation
anywhere that explains what is going wrong!!!
Any help appreciated.
GlennAfter much trail-and-error and finally a call to Microsoft I was able to
install the SRS and get everything working. I'm posting this in hopes that my
solution will help someone in a similar situation.
Ultimately the problem was solved by:
1) accessing the machine.config file
2) find the user name in the process model section (by default it's set
to 'machine')
3) change this to 'system' (temporarily)
4) using EnterpriseManager open the Keys table of the ReportServer
database (three are probably 2 keys)
5) delete the NON-ZERO key (don't delete the ZERO key)
6) browse to http:/localhost/ReportServer (should no longer produce any
errors!!!)
7) browse to http:/localhost/Reposrts
Hope this helps...
Glenn
"Glenn" wrote:
> I'm trying to install Reporting Services on a new XP Pro SP2 IIS 6
> development box. The local database is SQL Server 2000 sp3.
> At the end of the installation I get an error message indicating that
> the 'Setup could not initialize the report server' and that I'll have
> to manually initialize the Report Server.
> After running rsactive I got the message indicating that the "Report
> Server Web Service has not generated a public key".
> Looking in the log files is less-than-helpful (hundreds of lines
> indicating that some -unknown- file is missing):
> ===============================================================================> aspnet_wp!library!a4!12/01/2004-10:15:58:: e ERROR: Throwing
> Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
> more details., ;
> Info: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
> more details. --> System.IO.FileNotFoundException: The system cannot
> find the file specified.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(String
> key)
> at Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty(String
> name)
> at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(String
> name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageContent()
> at Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> -- End of inner exception stack trace --
> a
> ===============================================================================> When I navigate to the http://localhost/ReportServer I get the
> following error message:
> An internal error occurred on the report server. (again not very
> helpful).
> IIS is listening on port 80 (and there are no other apps on the port).
>
> SO... I'm running out of things to try and patience. Is there anyone
> out there who can help me get over this problem? I really need to
> get this installed ASAP and there doesn't seem to be any documentation
> anywhere that explains what is going wrong!!!
> Any help appreciated.
> Glenn
>

problems installing sqlxml 3.0

I was planning to import data from an XML document to my sql-server using
this guide: http://www.perfectxml.com/articles/X...rtXMLSQL.asp#3
But i can't make the Soap toolkit work (it's shall be installed to use
sqlxml), when i have installed the Soap toolkit and installing the sqlxml it
says that i shall install Soap toolkit to make sqlxml work.
Any that can help me?
//Peter
Soap Toolkit is only needed if you plan on using web services. You should
be able to install SqlXml and use bulkload with no problems even if the
toolkit is not installed. We're working on removing this dependency, not
sure when we'll get that out.
Irwin
Irwin Dolobowsky
Program Manager - SqlXml
http://weblogs.asp.net/irwando
This posting is provided "AS IS" with no warranties, and confers no rights.
"Peter" <dj-pnr@.get2net.dk> wrote in message
news:4061934b@.news.wineasy.se...
> I was planning to import data from an XML document to my sql-server using
> this guide: http://www.perfectxml.com/articles/X...rtXMLSQL.asp#3
>
> But i can't make the Soap toolkit work (it's shall be installed to use
> sqlxml), when i have installed the Soap toolkit and installing the sqlxml
it
> says that i shall install Soap toolkit to make sqlxml work.
>
> Any that can help me?
>
> //Peter
>

Problems installing SQLServer 2000 Developer Edition on Windows XP Pro

Hello!

When trying to install SqlServer 2000 Developer (as Administrator) on my
Windows XP Professional I get the following message at the point where
the system asks Local Account or Domain account:

The logon account cannot be validated for the SQL server service. Verify
that the user name and password entered are correct. The logon attempt
failed.

Anyone an idea what goes wrong here?

Thanks for your info.

Daniel

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!Make sure that the account you are providing has the "log on as
service" rights to local machine. After you verified that you didn't
make a typo entering the login. :-)
Alexey

Daniel Kim <daekim_2000@.netzero.net> wrote in message news:<3f73dfb0$0$62084$75868355@.news.frii.net>...
> Hello!
> When trying to install SqlServer 2000 Developer (as Administrator) on my
> Windows XP Professional I get the following message at the point where
> the system asks Local Account or Domain account:
>
> The logon account cannot be validated for the SQL server service. Verify
> that the user name and password entered are correct. The logon attempt
> failed.
>
> Anyone an idea what goes wrong here?
> Thanks for your info.
>
> Daniel
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!sql

Problems installing SQL7 Desktop on WinXP

I am having great difficulty installing SQL Server 7 Desktop Edition onto WinXP

Pro. The installation proceeds without error until an attempt is made to
configure and then connect to SQL Server, at which point the installation fails and all installed components are removed from the PC. I have tried to install on repeated occasions, always with the same result.

I would be very grateful for any help in solving this problem.

The contents of the CNFGSVR.OUT and ERRORLOG are as below:

CNFGSVR.OUT
===========

Starting Service ...

Connecting to Server ...

driver={sql server};server=.;UID=sa;PWD=;database=master

[Microsoft][ODBC SQL Server Driver][DBNETLIB]General network error. Check your network documentation.

[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionRead (recv()).

driver={sql server};server=.;UID=sa;PWD=;database=master

[Microsoft][ODBC SQL Server Driver][DBNETLIB]General network error. Check your network documentation.

[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionRead (recv()).

driver={sql server};server=DAVIS;UID=sa;PWD=;database=master

[Microsoft][ODBC SQL Server Driver][Shared Memory]General network error. Check your network documentation.

[Microsoft][ODBC SQL Server Driver][Shared Memory]ConnectionRead (recv()).

SQL Server configuration failed.

ERRORLOG
========

2003-05-25 23:32:19.09 kernel Microsoft SQL Server 7.00 - 7.00.623 (Intel X86)
Nov 27 1998 22:20:07
Copyright (c) 1988-1998 Microsoft Corporation
Desktop Edition on Windows NT 5.1 (Build 2600: Service Pack 1)

2003-05-25 23:32:19.09 kernel Copyright (C) 1988-1997 MicrosoftCorporation.
2003-05-25 23:32:19.09 kernel All rights reserved.
2003-05-25 23:32:19.09 kernel Logging SQL Server messages in file
'C:\MSSQL7\log\ERRORLOG'.
2003-05-25 23:32:19.12 kernel initconfig: Number of user connections limited to 32767.
2003-05-25 23:32:19.12 kernel SQL Server is starting at priority class
'normal'(1 CPU detected).
2003-05-25 23:32:19.12 kernel User Mode Scheduler configured for thread processing
2003-05-25 23:32:20.17 server Directory Size: 21633
2003-05-25 23:32:20.18 spid1 Using dynamic lock allocation. [500] Lock Blocks, [1000] Lock Owner Blocks
2003-05-25 23:32:20.18 spid1 Warning ******************
2003-05-25 23:32:20.18 spid1 SQL Server started in single user mode. Updates allowed to system catalogs.
2003-05-25 23:32:20.18 spid1 Warning ******************
2003-05-25 23:32:20.18 spid1 Recovering only master database
2003-05-25 23:32:20.18 spid1 Starting up database 'master'.
2003-05-25 23:32:20.18 spid1 Opening file C:\MSSQL7\data\master.mdf.
2003-05-25 23:32:20.20 spid1 Opening file C:\MSSQL7\data\mastlog.ldf.
2003-05-25 23:32:20.26 spid1 Loading SQL Server's Unicode collation.
2003-05-25 23:32:20.28 spid1 Loading SQL Server's non-Unicode sort order and character set.
2003-05-25 23:32:20.40 spid1 4 transactions rolled forward in database 'master' (1).
2003-05-25 23:32:20.40 spid1 0 transactions rolled back in database 'master' (1).
2003-05-25 23:32:20.58 spid1 Server is unnamed.
2003-05-25 23:32:20.58 kernel Using 'SQLEVN70.DLL' version '7.00.623'.
2003-05-25 23:32:20.58 kernel Using 'OPENDS60.DLL' version '7.00.00.0623'.
2003-05-25 23:32:20.59 ods Using 'SSNMPN70.DLL' version '7.0.623' to listen on '\\.\pipe\sql\query'.
2003-05-25 23:32:20.59 ods Using 'SSMSSO70.DLL' version '7.0.623' to listen on '1433'.
2003-05-25 23:32:21.09 ods Using 'SSMSRP70.DLL' version '7.0.623' to listen on 'DAVIS'.
2003-05-25 23:32:21.19 spid1 SQL Server's Unicode collation is:
2003-05-25 23:32:21.19 spid1 'English' (ID = 1033).
2003-05-25 23:32:21.19 spid1 comparison style = 196609.
2003-05-25 23:32:21.19 spid1 SQL Server's non-Unicode sort order is:
2003-05-25 23:32:21.19 spid1 'nocase_iso' (ID = 52).
2003-05-25 23:32:21.19 spid1 SQL Server's non-Unicode character set is:
2003-05-25 23:32:21.19 spid1 'iso_1' (ID = 1).
2003-05-25 23:32:21.20 kernel Warning: override, autoexec procedures skipped.
2003-05-25 23:32:35.88 kernel SQL Server is terminating due to 'stop' request from Service Control Manager.Try downloading latest MDAC from MS Data (http://www.microsoft.com/data) and reinstall again.|||Satya,

I have already downloaded MDAC 2.7 but the install still fails.

It's probably not relevant but if I run Component Checker against version "2.7 SP1(WinXP)" the utility reports the following anomalies:

HKEY_LOCAL_MACHINE\SOFTWARE\Classes\MSDASC\Default Icon
Registry
Field 'Value' mismatch: Expect 'C:\Program Files\Common Files\System\Ole DB\oledb32.dll^0' Got 'C:\WINDOWS\System32\migicons.exe^101'
Error

MSADCO.DLL
COM
Unknown Class ID = {9381d8f1-0288-11d0-9501-00aa00b911a5}
Warning

MSDATT.DLL
COM
Unknown Class ID = {c8b522ce-5cf3-11ce-ade5-00aa0044773d}
Warning|||Refer to dasetup.log files in the windows directory that might shed some light on the problem. You can log MDAC installation by using \MDACSetup\Setup.exe /gc C:\MdacInstalllog.txt

If no avail then make sure those 2 DLLs got registered properly on XP, try reinstall XP with all available SPs.|||Any ideas how I can stop the install removing all components on failure? If I could stop the components being removed I might be able to try starting and configuring the service by hand.|||Remove all reference registry keys and delete the directories during the installation.

Problems Installing SQL Server when CTP was previously installed

If you are having problems installing SQL Server, including Express Edition, and you previously installed one of the Community Technology Preview (CTP) releases, then read on...

Please provide feedback if any of these steps are confusing.

--

Note that if the user already has .NET Framework on their machine, they're going to have to go back to an earlier version, do the SQL Uninstall, then go forward to the RTM version.

Please look at the %Program Files%\Microsoft SQL Server\90\Setup
Bootstrap\LOG\Files\SQLSetup*_Core.log file. It should have a bit of
information in it saying what the conflict is and some GUIDs indicating
the product codes of the conflicting programs. The section you are looking
for will look something like this (and may repeat):
Running: PerformSCCAction2 at: 2004/6/27 13:54:12
Product "{982DB00A-9C4E-436B-8707-18E113BAA44C}" versioned
9.00.823 is not compatible with current builds of SQL
Server.Expected at least version: 9.00.849
The Product Name is "Microsoft SQL Server 2005 Analysis
Services Beta 2"
In this case, the offending product is “Microsoft SQL Server 2005 Analysis Services Beta 2" with a product code of "{982DB00A-9C4E-436B-8707-18E113BAA44C}"
If the programs are still visible in the Add/Remove Programs control panel (ARP),
please remove them in the order specified by the readme file.

If they are not in ARP, please run the following steps:
Assuming you still have the media for the old build,
1/ Uninstall the current SQL Support files.
2/ Uninstall the current SQL Native Client (SNAC)
3/ Uninstall the current .NET Frameworks 2.0
4/ Run the old setup.exe up until it starts asking you what you want to install
(let it install SNAC and .NET), then exit setup.
5/ (**Skip this step for: SNAC, SQL Support Files and .NET Frameworks 2.0) run "msiexec /x {ProductGUID} /l*v c:\logfile.txt" for each of the ProductGUIDs listed in your Core log file from above.

Assuming that succeeds,
6/ Uninstall SQL Support Files
7/ Uninstall SQL Native Client
8/ Uninstall .NET Frameworks 2.0
9/ Install the RTM product.
--

Wow!

Would it not be easier/faster to
1) backup schemas
2) backup data
3) wipe system clean
4) install OS
5) install RTM?|||left out two most important steps Tongue Tied
6) restore schema
7) restore data

Problems installing SQL Server 2005 SP 1

SQL Server installation fails with the message:

"A recently applied update, KB913090 failed to install"

The last executed task was:

Integration Service

The last installation message was:

Checking for lock files via Windows installer sqlrun_tolls.msp

It's not immediately obvious what went wrong. Please post a description of your configuration and a link to your SQL Server install logs.

Thanks,

Paul

|||

The error logs for this component can be found at %windir%\Hotfix\DTS9\Logs. DTS9_Hotfix_KB913090_sqlrun_dts.msp.log will most likely contain the error.

Thanks,
Sam

|||

I also am receiving the error message:
"A recently applied update, KB913090 failed to install"

And here is the contents of the log file you reference.

04/19/2006 15:30:33.092 ================================================================================
04/19/2006 15:30:33.252 Hotfix package launched
04/19/2006 15:30:41.123 Product discovery successfully completed during the install process for DTS
04/19/2006 15:30:41.314 SP Level check successfully completed during the install process for DTS
04/19/2006 15:30:41.864 Product language check successfully completed during the install process for DTS
04/19/2006 15:30:42.295 Product version check successfully completed during the install process for DTS
04/19/2006 15:30:42.645 Command-line instance name check completed during the install process
04/19/2006 15:30:43.056 Baseline build check completed during the install process
04/19/2006 15:35:16.900 Hotfix package closed

|||

Thanks for the post, Tony. This log that you supplied is primarily a summary log. Can you post the MSP log as well (typically the largest file)? It should contain the debugging info we'll need.

Thanks,
Samuel Lester (MSFT)

|||

Here is my MSP file - I am having a similar issue....

=== Verbose logging started: 4/19/2006 23:51:20 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: C:\WINDOWS\system32\msiexec.exe ===
MSI (c) (18:D0) [23:51:20:750]: Resetting cached policy values
MSI (c) (18:D0) [23:51:20:750]: Machine policy value 'Debug' is 0
MSI (c) (18:D0) [23:51:20:750]: ******* RunEngine:
******* Product: {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}
******* Action:
******* CommandLine: **********
MSI (c) (18:D0) [23:51:20:750]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (18:D0) [23:51:20:750]: Grabbed execution mutex.
MSI (c) (18:D0) [23:51:20:765]: Cloaking enabled.
MSI (c) (18:D0) [23:51:20:765]: Attempting to enable all disabled priveleges before calling Install on Server
MSI (c) (18:D0) [23:51:20:765]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (18:EC) [23:51:20:781]: Grabbed execution mutex.
MSI (s) (18:38) [23:51:20:781]: Resetting cached policy values
MSI (s) (18:38) [23:51:20:781]: Machine policy value 'Debug' is 0
MSI (s) (18:38) [23:51:20:781]: ******* RunEngine:
******* Product: {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}
******* Action:
******* CommandLine: **********
MSI (s) (18:38) [23:51:20:781]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (18:38) [23:51:20:781]: Adding MSIINSTANCEGUID to command line.
MSI (s) (18:38) [23:51:20:781]: End dialog not enabled
MSI (s) (18:38) [23:51:20:781]: Original package ==> C:\WINDOWS\Installer\47ff54.msi
MSI (s) (18:38) [23:51:20:781]: Package we're running from ==> C:\WINDOWS\Installer\47ff54.msi
MSI (s) (18:38) [23:51:20:828]: APPCOMPAT: looking for appcompat database entry with ProductCode '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'.
MSI (s) (18:38) [23:51:20:828]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (18:38) [23:51:20:828]: Detected that this product uses a multiple instance transform.
MSI (s) (18:38) [23:51:20:828]: MSCOREE already loaded, using loaded copy
MSI (s) (18:38) [23:51:20:828]: Applying multiple instance transform ':SqlRun01.mst'...
MSI (s) (18:38) [23:51:20:828]: Looking for storage transform: SqlRun01.mst
MSI (s) (18:38) [23:51:20:828]: Validating transform 'SqlRun01.mst' with validation bits 0x809
MSI (s) (18:38) [23:51:20:828]: Transform 'SqlRun01.mst' is valid.
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2205 2: 3: Patch
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2205 2: 3: PatchPackage
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: TRANSFORM: 'PatchPackage' table is missing or empty. No pre-transform fixup necessary.
MSI (s) (18:38) [23:51:20:828]: TRANSFORM: Applying regular transform to database.
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _Validation 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Directory 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Registry 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlObjectSecurity 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: InstallUISequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: AdminExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlActionsModule 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ReserveCost 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ModuleComponents 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: MsiAssemblyName 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlGroup 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlHotfixScript 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlScript 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlDelimitProperty 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlPerfCounters 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUnmanagedComponent 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlServiceState 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: FeatureComponents 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Upgrade 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:20:828]: Note: 1: 2262 2: _MsiPatchTransformView 3: -2147287038
MSI (s) (18:38) [23:51:20:843]: File will have security applied from OpCode.
MSI (s) (18:38) [23:51:21:015]: Original patch ==> \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp
MSI (s) (18:38) [23:51:21:015]: Patch we're running from ==> C:\WINDOWS\Installer\11320b1.msp
MSI (s) (18:38) [23:51:21:015]: SOFTWARE RESTRICTION POLICY: Verifying patch --> '\\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp' against software restriction policy
MSI (s) (18:38) [23:51:21:015]: Note: 1: 2262 2: DigitalSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:015]: SOFTWARE RESTRICTION POLICY: \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp is not digitally signed
MSI (s) (18:38) [23:51:21:015]: SOFTWARE RESTRICTION POLICY: \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp is permitted to run at the 'unrestricted' authorization level.
MSI (s) (18:38) [23:51:21:015]: SequencePatches starts. Product code: {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}, Product version: 9.00.1399.06, Upgrade code: {12EEFC9F-91FB-490B-B00B-7164C31C1650}, Product language 1033
MSI (s) (18:38) [23:51:21:015]: 3.0 patch \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp of type minor upgrade takes product {1774CD15-E1D3-47D4-A4FA-80C3F3F7FCF0} to version 9.1.2047.00
MSI (s) (18:38) [23:51:21:015]: PATCH SEQUENCER: verifying the applicability of minor upgrade patch \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp against product code: {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}, product version: 9.00.1399.06, product language 1033 and upgrade code: {12EEFC9F-91FB-490B-B00B-7164C31C1650}
MSI (s) (18:38) [23:51:21:015]: Validating transform 'Target01ToUpgrade01' with validation bits 0x920
MSI (s) (18:38) [23:51:21:015]: Transform 'Target01ToUpgrade01' is valid.
MSI (s) (18:38) [23:51:21:015]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:015]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:015]: PATCH SEQUENCER: minor upgrade patch \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp is applicable.
MSI (s) (18:38) [23:51:21:015]: SequencePatches returns success.
MSI (s) (18:38) [23:51:21:015]: Final Patch Application Order:
MSI (s) (18:38) [23:51:21:015]: {234D7159-D1F9-4F8B-9230-378FD7DA6BC0} - \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp
MSI (s) (18:38) [23:51:21:015]: Machine policy value 'DisablePatch' is 0
MSI (s) (18:38) [23:51:21:015]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (18:38) [23:51:21:015]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (18:38) [23:51:21:015]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (18:38) [23:51:21:015]: Turning off patch optimization. {234D7159-D1F9-4F8B-9230-378FD7DA6BC0} patch is not authored to support it.
MSI (s) (18:38) [23:51:21:015]: Looking for patch transform: Target01ToUpgrade01
MSI (s) (18:38) [23:51:21:015]: Validating transform 'Target01ToUpgrade01' with validation bits 0x920
MSI (s) (18:38) [23:51:21:015]: Transform 'Target01ToUpgrade01' is valid.
MSI (s) (18:38) [23:51:21:015]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:015]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Transforming table Component.

MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:21:031]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlPerfCounters 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _Validation 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Component 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Directory 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Registry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlObjectSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: InstallUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlActionsModule 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ReserveCost 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ModuleComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiAssemblyName 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlHotfixScript 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlScript 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlDelimitProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlPerfCounters 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUnmanagedComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceState 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: FeatureComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Upgrade 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: MsiPatchHeaders 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2205 2: 3: Patch
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2228 2: 3: Patch 4: CREATE TABLE `Patch` ( `File_` CHAR(72) NOT NULL, `Sequence` INTEGER NOT NULL, `PatchSize` LONG NOT NULL, `Attributes` INTEGER NOT NULL, `Header` OBJECT, `StreamRef_` CHAR(72) PRIMARY KEY `File_`, `Sequence` )
MSI (s) (18:38) [23:51:21:062]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2715 2: sysdbupg.sql.C6E0C081_E7D8_416E_A408_F9A50D275EB9
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2715 2: SQLAgentMail90.rll.E561C919_2F04_446E_B1AA_C373A51990FE
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2715 2: SQLAgentMail90.dll.96E1321F_B7D1_4051_BEF1_FE74AC590F64
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2715 2: sysdbupg.sql.43B382ED_FDC0_470B_8189_A8CEE9BFA9C3
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2205 2: 3: PatchPackage
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: 'PatchPackage' table is missing or empty. No pre-transform fixup necessary.
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: Applying regular transform to database.
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlPerfCounters 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _MsiPatchPatchTransformView 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: __MsiRegistryList 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _MsiPatchAuthorTransformView 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_BaselineCost 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_BaselineFile 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_BaselineData 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_PatchCache 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table Media.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table Media.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2205 2: 3: PatchPackage
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: The minimum 'Media.DiskId' value inserted by a patch transform is 100
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: The maximum 'Media.DiskId' value inserted by a patch transform is 99
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: The minimum 'File.Sequence' or 'Patch.Sequence' value inserted by a patch transform is 10000
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: The maximum 'File.Sequence' or 'Patch.Sequence' value inserted by a patch transform is 9999.
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: Applying special patch transform to database.
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _Validation 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Component 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Directory 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Registry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlObjectSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: InstallUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlActionsModule 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ReserveCost 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ModuleComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiAssemblyName 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlHotfixScript 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlScript 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlDelimitProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlPerfCounters 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUnmanagedComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceState 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: FeatureComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Upgrade 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _MsiPatchPatchTransformView 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiPatchHeaders 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: __MsiRegistryList 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_BaselineCost 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_BaselineFile 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_BaselineData 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: #_PatchCache 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table Media.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table Media.

MSI (s) (18:38) [23:51:21:078]: Transforming table Media.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table PatchPackage.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table PatchPackage.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table PatchPackage.

MSI (s) (18:38) [23:51:21:078]: TRANSFORM: Modifying 'File' and 'Patch' rows added by this patch transform to have appropriate 'Sequence' values. Offsetting values by 7447
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: Modifying 'PatchPackage' table row added by this patch transform to use 'Media_' value 100.
MSI (s) (18:38) [23:51:21:078]: TRANSFORM: Modifying 'Media' table row added by this patch transform to use 'DiskId' value 100 and 'Source' values MSPSRC234D7159D1F94F8B9230378FD7DA6BC0.
MSI (s) (18:38) [23:51:21:078]: Transforming table MsiFileHash.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:21:078]: Transforming table MsiFileHash.

MSI (s) (18:38) [23:51:21:078]: Transforming table MsiFileHash.

MSI (s) (18:38) [23:51:21:078]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Transforming table Component.

MSI (s) (18:38) [23:51:21:093]: Transforming table Component.

MSI (s) (18:38) [23:51:21:093]: Transforming table Component.

MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Component 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Patch Modified Files List:
MSI (s) (18:38) [23:51:21:093]: File = MS.SqlSac.Public.dll.31B260B9_8DE6_4C1B_BA50_2B54A89A7515: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlSAC.exe.31B260B9_8DE6_4C1B_BA50_2B54A89A7515: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.SqlServer.Smo.3F2E28BC_880E_4E46_AA1D_42EF392D14CB: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.SqlServer.SqlEnum.3F2E28BC_880E_4E46_AA1D_42EF392D14CB: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = MS.Sql.Batchparser.dll.3F2E28BC_880E_4E46_AA1D_42EF392D14CB: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.DataWarehouse.Interfaces.65BCC1EB_0614_40A3_8917_01E051F436C1: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.AnalysisServices.65BCC1EB_0614_40A3_8917_01E051F436C1: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.SqlServer.Rmo.547BE0DB_B0B5_4D8F_B19F_D4F6B1203778: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlDumper.exe.FED827E1_CA9A_4BC8_A570_C116C6814A45: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = dbghelp.dll.FED827E1_CA9A_4BC8_A570_C116C6814A45: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlWtsn.exe.FED827E1_CA9A_4BC8_A570_C116C6814A45: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlDumper.exe.849A7465_46A7_4507_A464_5D1E076DACFE: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = dbghelp.dll.849A7465_46A7_4507_A464_5D1E076DACFE: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlWtsn.exe.849A7465_46A7_4507_A464_5D1E076DACFE: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsqm.exe.E94C92D4_7AE4_462A_84A1_2500279B2670: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsqm.exe.5FCCA333_5048_4565_B97A_1310A6370D1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlBoot.dll.80AE02E7_1738_456C_8B9D_0F23B5902BDA: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlBoot.dll.E09E3350_C854_4DC8_BAEA_9E662C6D2301: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = svrenumapi.dll.9754C2F0_FC41_4ADF_9C17_1D45EA972478: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = isacctchange.dll.9754C2F0_FC41_4ADF_9C17_1D45EA972478: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlftacct.dll.9754C2F0_FC41_4ADF_9C17_1D45EA972478: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsecacctchg.dll.9754C2F0_FC41_4ADF_9C17_1D45EA972478: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsvcsync.dll.9754C2F0_FC41_4ADF_9C17_1D45EA972478: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = svrenumapi.dll.6080319C_1466_426E_9E7A_1DD555143E0A: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = isacctchange.dll.6080319C_1466_426E_9E7A_1DD555143E0A: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlftacct.dll.6080319C_1466_426E_9E7A_1DD555143E0A: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsecacctchg.dll.6080319C_1466_426E_9E7A_1DD555143E0A: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsvcsync.dll.6080319C_1466_426E_9E7A_1DD555143E0A: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = OSQL.EXE.D5EDBF4D_19A8_4E05_B526_4D7A7B981089: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLdiag.exe.D5EDBF4D_19A8_4E05_B526_4D7A7B981089: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrw.dll.D5EDBF4D_19A8_4E05_B526_4D7A7B981089: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sysdbupg.sql.C6E0C081_E7D8_416E_A408_F9A50D275EB9: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLSVC90.DLL.87F3872B_D1ED_40D4_9795_D008D4A973F4: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLSVC90.DLL.2B7DE3D3_96A3_4BF8_B9C5_0B7A06005599: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLAgentMail90.rll.E561C919_2F04_446E_B1AA_C373A51990FE: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLAgentMail90.dll.96E1321F_B7D1_4051_BEF1_FE74AC590F64: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sysdbupg.sql.43B382ED_FDC0_470B_8189_A8CEE9BFA9C3: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLCMD.rll.A6830822_1FAE_4BC1_8B68_1AF97B140BED: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = batchparser90.dll.A1B03765_6985_43A0_8AD0_A58DD3FE2A40: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = batchparser90.dll.1C6AFEDF_63FF_40A8_993E_C1831B71DF2D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlManager.dll.B495F067_56F6_4F94_9FD5_2EB9A41746D5: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlManager.dll.17BE9BF7_E184_4520_9821_63C293505384: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlManager_rll.873AE6A7_8CF1_422A_A2B1_880CEAB3C819: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlcm_xml.873AE6A7_8CF1_422A_A2B1_880CEAB3C819: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = cmptmgr9_chm.873AE6A7_8CF1_422A_A2B1_880CEAB3C819: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SqlManager_rll.276A9F5C_E5C0_4605_A155_2D2D0CBD6361: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlcm_xml.276A9F5C_E5C0_4605_A155_2D2D0CBD6361: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = cmptmgr9_chm.276A9F5C_E5C0_4605_A155_2D2D0CBD6361: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = GAC_AS_AdomdClient_dll.155D22DC_32C8_4417_920C_787FB022ABB6: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = MS_AS_AdomdClient_dll.155D22DC_32C8_4417_920C_787FB022ABB6: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = GAC_AS_AdomdClient_dll.DC566FED_FB4A_4A81_8366_0ED2594F1CCC: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = MS_AS_AdomdClient_dll.DC566FED_FB4A_4A81_8366_0ED2594F1CCC: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = MS_AS_AdomdClient_xml.6442BD71_CD43_42FF_A0B8_F31B1FBED2C4: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = MS_AS_AdomdClient_xml.EF185095_6F09_491A_96A2_64839546D998: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msasxpress.dll.83CB421B_3E94_44A1_AC0F_2C468317B61C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msasxpress.dll.827E81FF_B7E6_4375_AD26_900BA981CB05: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlbrowser.exe.2FC2D269_8625_4826_BB3F_F9059090CB38: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrw.dll.663228C2_415C_4E0C_8889_57D61E295126: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrwbin.dll.663228C2_415C_4E0C_8889_57D61E295126: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrw.dll.1887A514_D285_4653_98A1_6B7128517683: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrwbin.dll.1887A514_D285_4653_98A1_6B7128517683: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SBMsmdlocal.dll.DFD11762_2D29_4D77_B888_9E2D50D43136: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SBmsmdredir_dll.155D5DFD_B9E7_4CB8_A2EE_8E0E8C9FBFE9: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msmdsrv.rll.AA576C27_D4DC_4FC9_B157_1253DFB8D0AD: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLAGENT90.EXE.96E1321F_B7D1_4051_BEF1_FE74AC590F64: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLAGENT90.RLL.E561C919_2F04_446E_B1AA_C373A51990FE: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = batchparser90.dll.C164D3FE_3670_4BA0_8215_EA0CE5F11FF5: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlservr.exe.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xplog70.dll.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xpsqlbot.dll.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = SQLBOOT.dll.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = XPStar90.DLL.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlsvc90.dll.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrw.dll.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlrwbin.dll.B2156BC9_6CE8_422F_A957_E99A65256B1D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = MSXMLSQL.DLL.6C6C27BB_3FBB_44F0_B2BA_5AAEF2ABEB26: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlaccess.dll.22ABDCB8_4B95_4078_92BE_86ADCBC78670: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = XPStar90.RLL.25E33D19_C00F_468C_931E_ED247D816AAD: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.9C857462_411C_4C6C_9BE9_6BA47BDE2A8C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.B9763CE4_C826_4568_88E3_2282EDAC0299: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.C5C2AFE8_A3E7_4A6F_A996_5E5726A8C4BD: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.84DEECB4_D3D0_494F_BF91_95553A2FCAF8: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.F190F1D9_0604_4651_8C64_9EAA35EBC0CB: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.F9EDA333_C5A3_4F2B_875E_F84A521CA685: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.906B5DE1_7798_4E64_BF86_535459F727DC: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.035C68BE_547C_4C72_A3C9_B95C534172A7: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.8659C6F8_0370_46EC_B958_70FCEDCF88EF: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.6FE1AB4B_57C9_4D71_B8C6_D729BE7931A7: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.6E3256FA_90FF_4B6C_AC64_90102A64816F: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlevn70.rll.F12B21D2_09F5_40CB_9378_E2D1C3FC3E0C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = DatabaseMail90.exe.8B64EE81_A704_4728_9F0E_3668328A2D9F: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = HAUResourceDb.ldf.87A24044_BA5C_47E5_B5EB_5F91BF18D10F: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = HAUResourceDb.mdf.87A24044_BA5C_47E5_B5EB_5F91BF18D10F: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = template_HAUResourceDb.ldf.87A24044_BA5C_47E5_B5EB_5F91BF18D10F: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = template_HAUResourceDb.mdf.87A24044_BA5C_47E5_B5EB_5F91BF18D10F: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = HAUdistmdl.ldf.94464A8B_CF29_4B53_A28F_029F5948047C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = HAUdistmdl.mdf.94464A8B_CF29_4B53_A28F_029F5948047C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = DISTRIB.exe.A9B7A3DC_C396_495B_BF39_95DB8E021241: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = rdistcom.dll.A9B7A3DC_C396_495B_BF39_95DB8E021241: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = tablediff.exe.A9B7A3DC_C396_495B_BF39_95DB8E021241: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = replmerg.exe.A9B7A3DC_C396_495B_BF39_95DB8E021241: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlmergx.dll.A9B7A3DC_C396_495B_BF39_95DB8E021241: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = snapshot.exe.B942AADD_36BA_46D3_BAF1_801D691D4B7D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = snapshot.exe.2468C12D_A5BA_4E76_9F6E_71BA279FD63D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = logread.exe.D06D1F40_07DE_4AA8_916A_CED8013DCE3D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = qrdrsvc.exe.D06D1F40_07DE_4AA8_916A_CED8013DCE3D: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = instdist.sql.323F8559_D57C_4B71_95DD_0F7FC5749137: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = repl_hotfix_install.sql.323F8559_D57C_4B71_95DD_0F7FC5749137: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = REPLRES2.rll.EEF25944_9E21_44B1_8255_2220E15561E8: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.SqlServer.DataStorage.8BE3FA6B_9152_4CF6_84D5_80497D9005F5: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = Microsoft.SqlServer.Replication.dll.4AEEA44D_0F9D_4C96_9EF6_D3896B80B511: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msgprox.dll.8635FFE9_8DC9_4FFA_9A81_EA364D66625E: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = rplisapi.dll.8635FFE9_8DC9_4FFA_9A81_EA364D66625E: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = replprov.dll.8635FFE9_8DC9_4FFA_9A81_EA364D66625E: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = replrec.dll.8635FFE9_8DC9_4FFA_9A81_EA364D66625E: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = replsub.dll.8635FFE9_8DC9_4FFA_9A81_EA364D66625E: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = REPLRES.rll.A91180FA_2A3B_44F7_B90A_A026DC49F9D3: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = sqlfth90.dll.48AF318F_8269_469F_B200_0BEDC908BF87: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = chsbrkr_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = chtbrkr_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = fteref_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = infosoft_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = korwbrkr_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = langwrbk_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msfte_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msftefd_exe.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msftepxy_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msftesql_exe.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = msir5jp_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = nlhtml_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = nls400_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = query9x_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = thawbrkr_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: File = xmlfilt_dll.68C6D1F2_77E0_11D5_8528_00C04F68155C: Final State = Install
MSI (s) (18:38) [23:51:21:093]: Looking for storage transform: InstID01.mst
MSI (s) (18:38) [23:51:21:093]: Validating transform 'InstID01.mst' with validation bits 0
MSI (s) (18:38) [23:51:21:093]: Transform 'InstID01.mst' is valid.
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: TRANSFORM: This transform is not changing the 'Media.DiskId' column. No pre-transform fixup of this column is necessary.
MSI (s) (18:38) [23:51:21:093]: TRANSFORM: This transform not changing the 'Media.LastSequence' or 'File.Sequence' columns. No pre-transform fixup of these columns is necessary.
MSI (s) (18:38) [23:51:21:093]: TRANSFORM: Applying regular transform to database.
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Property 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Validation 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Directory 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Registry 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlObjectSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: InstallUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdminExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlActionsModule 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ReserveCost 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiAssemblyName 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlHotfixScript 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlScript 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlDelimitProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlPerfCounters 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUnmanagedComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceState 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: FeatureComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Upgrade 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiPatchHeaders 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: __MsiPatchFileList 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: __MsiRegistryList 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: #_BaselineCost 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: #_BaselineFile 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: #_BaselineData 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: #_PatchCache 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _MsiPatchTransformView 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Looking for storage transform: InstName01.mst
MSI (s) (18:38) [23:51:21:093]: Validating transform 'InstName01.mst' with validation bits 0
MSI (s) (18:38) [23:51:21:093]: Transform 'InstName01.mst' is valid.
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: TRANSFORM: This transform is not changing the 'Media.DiskId' column. No pre-transform fixup of this column is necessary.
MSI (s) (18:38) [23:51:21:093]: TRANSFORM: This transform not changing the 'Media.LastSequence' or 'File.Sequence' columns. No pre-transform fixup of these columns is necessary.
MSI (s) (18:38) [23:51:21:093]: TRANSFORM: Applying regular transform to database.
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Tables 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Columns 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Property 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _Validation 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: File 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Signature 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: RegLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AppSearch 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CompLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: DrLocator 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Directory 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Registry 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Condition 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: CreateFolder 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlObjectSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Icon 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: InstallUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdminExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlActionsModule 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlDriveType 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ReserveCost 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: TypeLib 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Feature 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Class 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: PublishComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleDependency 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleSignature 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleExclusion 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ModuleComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlBuiltInAccounts 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: MsiAssemblyName 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ServiceInstall 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlNativeImage 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlPropertyValues 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUserSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceControl 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlHiveCopy 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlRegSecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlGroupMember 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlUpgradeScript 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlHotfixScript 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlScript 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlSku 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlStart 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlServiceAccount 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlDelimitProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlEquivalent 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlWizardSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: Dialog 3: -2147287038
MSI (s) (18:38) [23:51:21:093]: Note: 1: 2262 2: _sqlMofcomp 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlWMISecurity 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlInstanceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlInstanceComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlAssembly 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlCollation 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlExecutable 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlFileSR 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlUnmanagedComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlUpgradeComponent 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlTopLevelFeatureProducts 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlFileRename 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlFollowComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlLocalServers 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlVerIndependentProgID 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlServiceState 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlServiceProperty 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlServiceConfig 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlSupportFiles 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlDomainGroup 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: FeatureComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Control 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: ControlEvent 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: ControlCondition 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: ListBox 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: ListView 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: ComboBox 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: CheckBox 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: EventMapping 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: RadioButton 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Upgrade 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: TextStyle 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: UIText 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Media 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Shortcut 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: SxsMsmGenComponents 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: MsiSFCBypass 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: MsiPatchHeaders 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Patch 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: PatchPackage 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: RemoveFile 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: RemoveRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Environment 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlUpgradeFile 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlUpgradeRegistry 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _sqlUpgradeFolders 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: __MsiPatchFileList 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: __MsiRegistryList 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: #_BaselineCost 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: #_BaselineFile 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: #_BaselineData 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: #_PatchCache 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: _MsiPatchTransformView 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: APPCOMPAT: looking for appcompat database entry with ProductCode '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'.
MSI (s) (18:38) [23:51:21:109]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (18:38) [23:51:21:109]: Transforms are not secure.
MSI (s) (18:38) [23:51:21:109]: Transforming table Property.

MSI (s) (18:38) [23:51:21:109]: Transforming table Property.

MSI (s) (18:38) [23:51:21:109]: Transforming table Property.

MSI (s) (18:38) [23:51:21:109]: Transforming table Property.

MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Property 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Transforming table Property.

MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Property 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Command Line: PATCH=\\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp REINSTALL=All REINSTALLMODE=omus SQLBUILD=2047 KBNUMBER=KB913090 REBOOT=ReallySuppress QUERYMODE=1 QUERYTYPE=PATCHFILELIST QUERYOUTPUT=C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.out CURRENTDIRECTORY=e:\fcbfc64b194f985c25d4251ed3 CLIENTUILEVEL=3 CLIENTPROCESSID=5912 MSIINSTANCEGUID={79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{F00423DA-5642-4A55-8B9E-D06B9F8EE637}'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding TRANSFORMS property. Its value is ':SqlRun01.mst;:InstID01.mst;:InstName01.mst'.
MSI (s) (18:38) [23:51:21:109]: Product Code passed to Engine.Initialize: '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'
MSI (s) (18:38) [23:51:21:109]: Product Code from property table before transforms: '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'
MSI (s) (18:38) [23:51:21:109]: Product Code from property table after multiple instance transforms: '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'
MSI (s) (18:38) [23:51:21:109]: Product Code from property table after transforms: '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'
MSI (s) (18:38) [23:51:21:109]: Product registered: entering maintenance mode
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
MSI (s) (18:38) [23:51:21:109]: Package name retrieved from configuration data: 'SqlRun_SQL.msi'
MSI (s) (18:38) [23:51:21:109]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
MSI (s) (18:38) [23:51:21:109]: Transforming table Error.

MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Transforming table Error.

MSI (s) (18:38) [23:51:21:109]: Transforming table Error.

MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Transforming table Error.

MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Transforming table Error.

MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Note: 1: 2262 2: AdminProperties 3: -2147287038
MSI (s) (18:38) [23:51:21:109]: Machine policy value 'DisableMsi' is 1
MSI (s) (18:38) [23:51:21:109]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (18:38) [23:51:21:109]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (18:38) [23:51:21:109]: Product {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7} is admin assigned: LocalSystem owns the publish key.
MSI (s) (18:38) [23:51:21:109]: Product {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7} is managed.
MSI (s) (18:38) [23:51:21:109]: Running product '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}' with elevated privileges: Product is assigned.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding PATCH property. Its value is '\\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding REINSTALL property. Its value is 'All'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding REINSTALLMODE property. Its value is 'omus'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding SQLBUILD property. Its value is '2047'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding KBNUMBER property. Its value is 'KB913090'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding REBOOT property. Its value is 'ReallySuppress'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding QUERYMODE property. Its value is '1'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding QUERYTYPE property. Its value is 'PATCHFILELIST'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding QUERYOUTPUT property. Its value is 'C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.out'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'e:\fcbfc64b194f985c25d4251ed3'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '5912'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding MSIINSTANCEGUID property. Its value is '{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}'.
MSI (s) (18:38) [23:51:21:109]: TRANSFORMS property is now: :SqlRun01.mst;:InstID01.mst;:InstName01.mst
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '1033'.
MSI (s) (18:38) [23:51:21:109]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '150'.
MSI (s) (18:38) [23:51:21:109]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Application Data
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Favorites
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\NetHood
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\My Documents
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\PrintHood
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Recent
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\SendTo
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Templates
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Application Data
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Local Settings\Application Data
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\My Documents\My Pictures
MSI (s) (18:38) [23:51:21:125]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs\Administrative Tools
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs\Startup
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Desktop
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Start Menu\Programs\Administrative Tools
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Start Menu\Programs\Startup
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Start Menu\Programs
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Start Menu
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Administrator.DTPOCHQ\Desktop
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Templates
MSI (s) (18:38) [23:51:21:140]: SHELL32::SHGetFolderPath returned: C:\WINDOWS\Fonts
MSI (s) (18:38) [23:51:21:140]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding ProductID property. Its value is '**********'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'value customer'.
MSI (s) (18:38) [23:51:21:140]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding Installed property. Its value is '00:00:00'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\WINDOWS\Installer\47ff54.msi'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\WINDOWS\Installer\47ff54.msi'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding MSPSRC234D7159D1F94F8B9230378FD7DA6BC0 property. Its value is 'C:\WINDOWS\Installer\11320b1.msp'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding SQL200564Hotfix2047 property. Its value is '\\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp'.
MSI (s) (18:38) [23:51:21:140]: Machine policy value 'DisableRollback' is 0
MSI (s) (18:38) [23:51:21:140]: User policy value 'DisableRollback' is 0
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding QFEUpgrade property. Its value is '2'.
=== Logging started: 4/19/2006 23:51:21 ===
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding Preselected property. Its value is '1'.
MSI (s) (18:38) [23:51:21:140]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (18:38) [23:51:21:140]: Doing action: INSTALL
MSI (s) (18:38) [23:51:21:140]: Transforming table ActionText.

MSI (s) (18:38) [23:51:21:140]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:140]: Transforming table ActionText.

MSI (s) (18:38) [23:51:21:140]: Transforming table ActionText.

MSI (s) (18:38) [23:51:21:140]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:140]: Transforming table ActionText.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table ActionText.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: ActionText 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Running ExecuteSequence
MSI (s) (18:38) [23:51:21:156]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:21:156]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Doing action: ProgramFiles64Folder.68C6D1F2_77E0_11D5_8528_00C04F68155C
Action start 23:51:21: INSTALL.
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: PROPERTY CHANGE: Adding ProgramFiles64Folder.68C6D1F2_77E0_11D5_8528_00C04F68155C property. Its value is 'C:\Program Files\'.
Action start 23:51:21: ProgramFiles64Folder.68C6D1F2_77E0_11D5_8528_00C04F68155C.
MSI (s) (18:38) [23:51:21:156]: Doing action: CommonFiles64Folder.EEF25944_9E21_44B1_8255_2220E15561E8
Action ended 23:51:21: ProgramFiles64Folder.68C6D1F2_77E0_11D5_8528_00C04F68155C. Return value 1.
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: PROPERTY CHANGE: Adding CommonFiles64Folder.EEF25944_9E21_44B1_8255_2220E15561E8 property. Its value is 'C:\Program Files\Common Files\'.
Action start 23:51:21: CommonFiles64Folder.EEF25944_9E21_44B1_8255_2220E15561E8.
MSI (s) (18:38) [23:51:21:156]: Doing action: System64Folder.E404BFC4_105E_4D01_9B3B_56E62C596549
Action ended 23:51:21: CommonFiles64Folder.EEF25944_9E21_44B1_8255_2220E15561E8. Return value 1.
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: PROPERTY CHANGE: Adding System64Folder.E404BFC4_105E_4D01_9B3B_56E62C596549 property. Its value is 'C:\WINDOWS\system32\'.
Action start 23:51:21: System64Folder.E404BFC4_105E_4D01_9B3B_56E62C596549.
MSI (s) (18:38) [23:51:21:156]: Doing action: SystemFolder.7188DA12_A95E_46B7_8623_9D93B5260E2A
Action ended 23:51:21: System64Folder.E404BFC4_105E_4D01_9B3B_56E62C596549. Return value 1.
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:156]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:156]: PROPERTY CHANGE: Adding SystemFolder.7188DA12_A95E_46B7_8623_9D93B5260E2A property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.7188DA12_A95E_46B7_8623_9D93B5260E2A.
MSI (s) (18:38) [23:51:21:171]: Doing action: System64Folder.18229817_4DF8_46F2_9382_E3F8FA0A2E4C
Action ended 23:51:21: SystemFolder.7188DA12_A95E_46B7_8623_9D93B5260E2A. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: PROPERTY CHANGE: Adding System64Folder.18229817_4DF8_46F2_9382_E3F8FA0A2E4C property. Its value is 'C:\WINDOWS\system32\'.
Action start 23:51:21: System64Folder.18229817_4DF8_46F2_9382_E3F8FA0A2E4C.
MSI (s) (18:38) [23:51:21:171]: Doing action: SystemFolder.7F92F353_B3A2_4AE0_A288_5B746146B1B8
Action ended 23:51:21: System64Folder.18229817_4DF8_46F2_9382_E3F8FA0A2E4C. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: PROPERTY CHANGE: Adding SystemFolder.7F92F353_B3A2_4AE0_A288_5B746146B1B8 property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.7F92F353_B3A2_4AE0_A288_5B746146B1B8.
MSI (s) (18:38) [23:51:21:171]: Doing action: System64Folder.6340BF09_CE4D_49E9_9CDF_B9C671FC2E9C
Action ended 23:51:21: SystemFolder.7F92F353_B3A2_4AE0_A288_5B746146B1B8. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: PROPERTY CHANGE: Adding System64Folder.6340BF09_CE4D_49E9_9CDF_B9C671FC2E9C property. Its value is 'C:\WINDOWS\system32\'.
Action start 23:51:21: System64Folder.6340BF09_CE4D_49E9_9CDF_B9C671FC2E9C.
MSI (s) (18:38) [23:51:21:171]: Doing action: ProgramFiles64Folder.96E1321F_B7D1_4051_BEF1_FE74AC590F64
Action ended 23:51:21: System64Folder.6340BF09_CE4D_49E9_9CDF_B9C671FC2E9C. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: PROPERTY CHANGE: Adding ProgramFiles64Folder.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'C:\Program Files\'.
Action start 23:51:21: ProgramFiles64Folder.96E1321F_B7D1_4051_BEF1_FE74AC590F64.
MSI (s) (18:38) [23:51:21:171]: Doing action: CommonFiles64Folder.94D398F8_566F_41D7_97E4_57CB30A4BBFC
Action ended 23:51:21: ProgramFiles64Folder.96E1321F_B7D1_4051_BEF1_FE74AC590F64. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: PROPERTY CHANGE: Adding CommonFiles64Folder.94D398F8_566F_41D7_97E4_57CB30A4BBFC property. Its value is 'C:\Program Files\Common Files\'.
Action start 23:51:21: CommonFiles64Folder.94D398F8_566F_41D7_97E4_57CB30A4BBFC.
MSI (s) (18:38) [23:51:21:171]: Doing action: CommonFilesFolder.1887A514_D285_4653_98A1_6B7128517683
Action ended 23:51:21: CommonFiles64Folder.94D398F8_566F_41D7_97E4_57CB30A4BBFC. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: PROPERTY CHANGE: Adding CommonFilesFolder.1887A514_D285_4653_98A1_6B7128517683 property. Its value is 'C:\Program Files (x86)\Common Files\'.
Action start 23:51:21: CommonFilesFolder.1887A514_D285_4653_98A1_6B7128517683.
MSI (s) (18:38) [23:51:21:171]: Doing action: CommonFiles64Folder.663228C2_415C_4E0C_8889_57D61E295126
Action ended 23:51:21: CommonFilesFolder.1887A514_D285_4653_98A1_6B7128517683. Return value 1.
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:171]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:171]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding CommonFiles64Folder.663228C2_415C_4E0C_8889_57D61E295126 property. Its value is 'C:\Program Files\Common Files\'.
Action start 23:51:21: CommonFiles64Folder.663228C2_415C_4E0C_8889_57D61E295126.
MSI (s) (18:38) [23:51:21:187]: Doing action: SystemFolder.60A85CA1_D9D8_43FA_9DD5_574BEF970F9F
Action ended 23:51:21: CommonFiles64Folder.663228C2_415C_4E0C_8889_57D61E295126. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding SystemFolder.60A85CA1_D9D8_43FA_9DD5_574BEF970F9F property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.60A85CA1_D9D8_43FA_9DD5_574BEF970F9F.
MSI (s) (18:38) [23:51:21:187]: Doing action: System64Folder.1C95762F_0C32_4EB1_98BC_93BF309401A1
Action ended 23:51:21: SystemFolder.60A85CA1_D9D8_43FA_9DD5_574BEF970F9F. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding System64Folder.1C95762F_0C32_4EB1_98BC_93BF309401A1 property. Its value is 'C:\WINDOWS\system32\'.
Action start 23:51:21: System64Folder.1C95762F_0C32_4EB1_98BC_93BF309401A1.
MSI (s) (18:38) [23:51:21:187]: Doing action: WindowsFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E
Action ended 23:51:21: System64Folder.1C95762F_0C32_4EB1_98BC_93BF309401A1. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding WindowsFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:187]: Doing action: SystemFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding SystemFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:187]: Doing action: WindowsFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding WindowsFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:187]: Doing action: SystemFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:187]: PROPERTY CHANGE: Adding SystemFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:187]: Doing action: WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:187]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:187]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: WindowsFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding WindowsFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: SystemFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding SystemFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:203]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:203]: PROPERTY CHANGE: Adding WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:203]: Doing action: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: WindowsFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding WindowsFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: SystemFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:218]: PROPERTY CHANGE: Adding SystemFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:218]: Doing action: WindowsFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding WindowsFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: SystemFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding SystemFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: WindowsFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding WindowsFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: SystemFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding SystemFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:234]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:234]: PROPERTY CHANGE: Adding WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:234]: Doing action: SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
Action ended 23:51:21: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 23:51:21: WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
Action ended 23:51:21: WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:250]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:250]: PROPERTY CHANGE: Adding SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\SysWOW64\'.
Action start 23:51:21: SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E.
MSI (s) (18:38) [23:51:21:250]: Doing action: ProgramMenuFolder.ConfigurationTools1033
Action ended 23:51:21: SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: PROPERTY CHANGE: Adding ProgramMenuFolder.ConfigurationTools1033 property. Its value is 'C:\Documents and Settings\All Users\Start Menu\Programs\'.
Action start 23:51:21: ProgramMenuFolder.ConfigurationTools1033.
MSI (s) (18:38) [23:51:21:265]: Doing action: ProgramFiles64Folder.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:21: ProgramMenuFolder.ConfigurationTools1033. Return value 1.
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: PROPERTY CHANGE: Adding ProgramFiles64Folder.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B property. Its value is 'C:\Program Files\'.
Action start 23:51:21: ProgramFiles64Folder.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
MSI (s) (18:38) [23:51:21:265]: Doing action: SetMDACSxS
Action ended 23:51:21: ProgramFiles64Folder.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: PROPERTY CHANGE: Adding MDACSXS property. Its value is '1'.
Action start 23:51:21: SetMDACSxS.
MSI (s) (18:38) [23:51:21:265]: Doing action: SetInstanceName
Action ended 23:51:21: SetMDACSxS. Return value 1.
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetInstanceName.
MSI (s) (18:38) [23:51:21:265]: Doing action: SetCollation
Action ended 23:51:21: SetInstanceName. Return value 1.
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetCollation.
MSI (s) (18:38) [23:51:21:265]: Doing action: SetSecurityMode
Action ended 23:51:21: SetCollation. Return value 1.
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:265]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:265]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetSecurityMode.
MSI (s) (18:38) [23:51:21:265]: Doing action: SetUpgradeUser
Action ended 23:51:21: SetSecurityMode. Return value 1.
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetUpgradeUser.
MSI (s) (18:38) [23:51:21:281]: Skipping action: ErrorDisableNetworkProtocols (condition is false)
MSI (s) (18:38) [23:51:21:281]: Skipping action: SetCluster (condition is false)
MSI (s) (18:38) [23:51:21:281]: Doing action: SetClusterSec
Action ended 23:51:21: SetUpgradeUser. Return value 1.
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetClusterSec.
MSI (s) (18:38) [23:51:21:281]: Doing action: SetSaPwd
Action ended 23:51:21: SetClusterSec. Return value 1.
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetSaPwd.
MSI (s) (18:38) [23:51:21:281]: Doing action: SetUpgradePwd
Action ended 23:51:21: SetSaPwd. Return value 1.
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
Action start 23:51:21: SetUpgradePwd.
MSI (s) (18:38) [23:51:21:281]: Doing action: LaunchConditions
Action ended 23:51:21: SetUpgradePwd. Return value 1.
MSI (s) (18:38) [23:51:21:281]: Note: 1: 2205 2: 3: LaunchCondition
MSI (s) (18:38) [23:51:21:281]: Note: 1: 2228 2: 3: LaunchCondition 4: SELECT `Condition`, `Description` FROM `LaunchCondition`
Action start 23:51:21: LaunchConditions.
MSI (s) (18:38) [23:51:21:281]: Skipping action: Collation.B2156BC9_6CE8_422F_A957_E99A65256B1D (condition is false)
MSI (s) (18:38) [23:51:21:281]: Doing action: StreamSupportFiles.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:21: LaunchConditions. Return value 0.
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:281]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:281]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:296]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:21:296]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:21:296]: Transforming table Binary.

MSI (s) (18:38) [23:51:21:296]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:296]: Transforming table Binary.

MSI (s) (18:38) [23:51:21:296]: Transforming table Binary.

MSI (s) (18:38) [23:51:21:296]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:296]: Transforming table Binary.

MSI (s) (18:38) [23:51:21:296]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:21:296]: Transforming table Binary.

MSI (s) (18:38) [23:51:21:296]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:D4) [23:51:21:296]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8F7.tmp, Entrypoint: StreamSupportFiles
MSI (s) (18:5C) [23:51:21:296]: Generating random cookie.
MSI (s) (18:5C) [23:51:21:296]: Created Custom Action Server with PID 6036 (0x1794).
MSI (s) (18:DC) [23:51:21:312]: Running as a service.
MSI (s) (18:DC) [23:51:21:312]: Hello, I'm your 64bit Impersonated custom action server.
Action start 23:51:21: StreamSupportFiles.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
Property(SQL): Setup Bootstrap Directory = C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\
MSI (s) (18!FC) [23:51:22:343]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18!FC) [23:51:22:343]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:343]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18!FC) [23:51:22:343]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18!FC) [23:51:22:343]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:343]: Note: 1: 2262 2: Binary 3: -2147287038
1: 0 2: Iterating through _sqlSupportFiles entries
MSI (s) (18!FC) [23:51:22:437]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:437]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18!FC) [23:51:22:437]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:437]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:437]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18!FC) [23:51:22:437]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:437]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18!FC) [23:51:22:437]: Transforming table Binary.

MSI (s) (18!FC) [23:51:22:437]: Note: 1: 2262 2: Binary 3: -2147287038
Streamed sqlca.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B to C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\bin\{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}sqlca.dll
Streamed sqlwow64ca.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B to C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\bin\{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}sqlwow64ca.dll
MSI (s) (18:38) [23:51:22:437]: Doing action: Do_LogInstallStart.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:22: StreamSupportFiles.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:22:437]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:22:437]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:22:437]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:22:437]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:22:437]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:22:437]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:22:437]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:22:453]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:22:453]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:22:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:22:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:22:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:22:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:22:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:22:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:22:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:22:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:22:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:8C) [23:51:22:453]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8F8.tmp, Entrypoint: Do_LogInstallStart
Action start 23:51:22: Do_LogInstallStart.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
Property(SQL): Setup Bootstrap Directory = C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\
Property(SQL): CA DLL Path = C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Bin\{79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}sqlca.dll
<Func Name='LaunchFunction'>
MSI (s) (18!D0) [23:51:25:437]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:437]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D0) [23:51:25:437]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:437]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:437]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D0) [23:51:25:437]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:437]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D0) [23:51:25:437]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:437]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=Do_LogInstallStart
MSI (s) (18!D0) [23:51:25:453]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:453]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D0) [23:51:25:453]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:453]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:453]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D0) [23:51:25:453]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:453]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D0) [23:51:25:453]: Transforming table _sqlAction.

MSI (s) (18!D0) [23:51:25:453]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: Do_LogInstallStart
PerfTime Start: Do_LogInstallStart : Wed Apr 19 23:51:25 2006
<Func Name='Do_LogInstallStart'>
<EndFunc Name='Do_LogInstallStart' Return='0' GetLastError='203'>
PerfTime Stop: Do_LogInstallStart : Wed Apr 19 23:51:25 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:25:500]: Doing action: GetDefaultDomain.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:25: Do_LogInstallStart.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:25:500]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:500]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:500]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:25:500]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:500]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:20) [23:51:25:515]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8F9.tmp, Entrypoint: GetDefaultDomain
Action start 23:51:25: GetDefaultDomain.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!70) [23:51:25:718]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:718]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!70) [23:51:25:718]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:718]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:718]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!70) [23:51:25:718]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:718]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!70) [23:51:25:718]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:718]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=GetDefaultDomain
MSI (s) (18!70) [23:51:25:734]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:734]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!70) [23:51:25:734]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:734]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:734]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!70) [23:51:25:734]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:734]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!70) [23:51:25:734]: Transforming table _sqlAction.

MSI (s) (18!70) [23:51:25:734]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: GetDefaultDomain
PerfTime Start: GetDefaultDomain : Wed Apr 19 23:51:25 2006
<Func Name='GetDefaultDomain'>
MSI (s) (18!70) [23:51:25:750]: PROPERTY CHANGE: Adding DefaultDomain property. Its value is 'POC'.
MSI (s) (18!70) [23:51:25:750]: PROPERTY CHANGE: Adding QuotedDefaultDomain property. Its value is 'POC'.
MSI (s) (18!70) [23:51:25:750]: PROPERTY CHANGE: Adding QuotedComputerName property. Its value is 'DTPOCHQ'.
PerfTime Stop: GetDefaultDomain : Wed Apr 19 23:51:25 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:25:750]: Doing action: RestoreSetupParams.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:25: GetDefaultDomain.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:25:750]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:750]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:750]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:750]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:750]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:750]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:750]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:750]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:25:750]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:25:750]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:750]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:25:750]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:750]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:750]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:25:765]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:765]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:25:765]: Transforming table Binary.

MSI (s) (18:38) [23:51:25:765]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:54) [23:51:25:765]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8FA.tmp, Entrypoint: RestoreSetupParams
Action start 23:51:25: RestoreSetupParams.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=RestoreSetupParams
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!24) [23:51:25:890]: Transforming table _sqlAction.

MSI (s) (18!24) [23:51:25:890]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: RestoreSetupParams
PerfTime Start: RestoreSetupParams : Wed Apr 19 23:51:25 2006
<Func Name='RestoreSetupParams'>
Failed to find installation media path due to datastore exception
in FindSetupFolder()
MSI (s) (18!24) [23:51:26:046]: Note: 1: 2203 2: C:\WINDOWS\system32\Setup\SqlRun.msi 3: -2147287038


Loaded DLL:
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\xmlrw.dll
Version:
2.0.3609.0


Failed to find installation media path due to datastore exception
in FindSetupFolder()


Failed to find installation media path due to datastore exception
in FindSetupFolder()


Failed to find installation media path due to datastore exception
in FindSetupFolder()


Failed to find installation media path due to datastore exception
in FindSetupFolder()


Failed to find installation media path due to datastore exception
in FindSetupFolder()


Failed to find installation media path due to datastore exception
in FindSetupFolder()
MSI (s) (18!24) [23:51:27:437]: PROPERTY CHANGE: Adding SqlInstanceName property. Its value is 'MSSQLSERVER'.
MSI (s) (18!24) [23:51:27:437]: PROPERTY CHANGE: Adding INSTANCENAME property. Its value is 'MSSQLSERVER'.
MSI (s) (18!24) [23:51:27:453]: PROPERTY CHANGE: Adding SqlClusterSec property. Its value is '0'.
MSI (s) (18!24) [23:51:27:453]: PROPERTY CHANGE: Adding SECURITYMODE property. Its value is 'SQL'.
MSI (s) (18!24) [23:51:27:453]: PROPERTY CHANGE: Adding SqlSecurityMode property. Its value is 'SQL'.


<EndFunc Name='RestoreSetupParams' Return='0' GetLastError='0'>
PerfTime Stop: RestoreSetupParams : Wed Apr 19 23:51:27 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:27:453]: Doing action: ShutdownServiceManager.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:27: RestoreSetupParams.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:27:453]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:453]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:453]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:453]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:C0) [23:51:27:453]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8FB.tmp, Entrypoint: ShutdownServiceManager
Action start 23:51:27: ShutdownServiceManager.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!34) [23:51:27:531]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:531]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!34) [23:51:27:531]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:531]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:531]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=ShutdownServiceManager
MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!34) [23:51:27:546]: Transforming table _sqlAction.

MSI (s) (18!34) [23:51:27:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: ShutdownServiceManager
PerfTime Start: ShutdownServiceManager : Wed Apr 19 23:51:27 2006
<Func Name='ShutdownServiceManager'>
<EndFunc Name='ShutdownServiceManager' Return='0' GetLastError='2'>
PerfTime Stop: ShutdownServiceManager : Wed Apr 19 23:51:27 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:27:562]: Doing action: Write_sqlWellKnownAccountNames.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:27: ShutdownServiceManager.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:27:562]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:562]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:562]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:562]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:562]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:4C) [23:51:27:562]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8FC.tmp, Entrypoint: Write_sqlWellKnownAccountNames
Action start 23:51:27: Write_sqlWellKnownAccountNames.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=Write_sqlWellKnownAccountNames
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!08) [23:51:27:687]: Transforming table _sqlAction.

MSI (s) (18!08) [23:51:27:687]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: Write_sqlWellKnownAccountNames
PerfTime Start: Write_sqlWellKnownAccountNames : Wed Apr 19 23:51:27 2006
<Func Name='Write_sqlWellKnownAccountNames'>
MSI (s) (18!08) [23:51:27:703]: PROPERTY CHANGE: Adding AdministratorsGroup property. Its value is 'BUILTIN\Administrators'.
MSI (s) (18!08) [23:51:27:703]: PROPERTY CHANGE: Adding PerformanceMontiorUsersGroup property. Its value is 'BUILTIN\Performance Monitor Users'.
MSI (s) (18!08) [23:51:27:703]: PROPERTY CHANGE: Adding PerformanceLogUsersGroup property. Its value is 'BUILTIN\Performance Log Users'.
MSI (s) (18!08) [23:51:27:703]: PROPERTY CHANGE: Adding UsersGroup property. Its value is 'BUILTIN\Users'.
MSI (s) (18!08) [23:51:27:703]: PROPERTY CHANGE: Adding NetworkServiceAccount property. Its value is 'NT AUTHORITY\NETWORK SERVICE'.
MSI (s) (18!08) [23:51:27:703]: PROPERTY CHANGE: Adding SCMNetworkServiceAccount property. Its value is 'NT AUTHORITY\NetworkService'.
MSI (s) (18!08) [23:51:27:718]: PROPERTY CHANGE: Adding LocalSystemAccount property. Its value is 'NT AUTHORITY\SYSTEM'.
MSI (s) (18!08) [23:51:27:718]: PROPERTY CHANGE: Adding LocalServiceAccount property. Its value is 'NT AUTHORITY\LOCAL SERVICE'.
MSI (s) (18!08) [23:51:27:718]: PROPERTY CHANGE: Adding SCMLocalServiceAccount property. Its value is 'NT AUTHORITY\LocalService'.
<EndFunc Name='Write_sqlWellKnownAccountNames' Return='0' GetLastError='0'>
PerfTime Stop: Write_sqlWellKnownAccountNames : Wed Apr 19 23:51:27 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:27:718]: Skipping action: PropSetSQLAutoStart.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B (condition is false)
MSI (s) (18:38) [23:51:27:718]: Doing action: CheckIIS.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:27: Write_sqlWellKnownAccountNames.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:27:718]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:718]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:718]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:718]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:718]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:E4) [23:51:27:734]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8FD.tmp, Entrypoint: CheckIIS
Action start 23:51:27: CheckIIS.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=CheckIIS
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!04) [23:51:27:843]: Transforming table _sqlAction.

MSI (s) (18!04) [23:51:27:843]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: CheckIIS
PerfTime Start: CheckIIS : Wed Apr 19 23:51:27 2006
<Func Name='CheckIIS'>
MSI (s) (18!04) [23:51:27:859]: PROPERTY CHANGE: Adding IISCHECKED property. Its value is '0'.
<Func Name='WebFindBase'>
, 80, , 0
IIsWebServer
MSI (s) (18!04) [23:51:27:875]: PROPERTY CHANGE: Adding SqlIISInstalled property. Its value is '1'.
MSI (s) (18!04) [23:51:27:875]: PROPERTY CHANGE: Adding SqlDefaultWebSite property. Its value is '/W3SVC/1'.
MSI (s) (18!04) [23:51:27:875]: PROPERTY CHANGE: Adding SqlASPNETInstalled property. Its value is '1'.
<EndFunc Name='WebFindBase' Return='0' GetLastError='0'>
Skipping RS Feature Dependency Check
<Func Name='GetXMLAttributeValue'>
Error to find XML node /configuration/system.web/compilation
<EndFunc Name='GetXMLAttributeValue' Return='2' GetLastError='0'>
Failed to get ModuleID_RS_Server when getting the ASP Temp directory.
MSI (s) (18!04) [23:51:27:937]: PROPERTY CHANGE: Adding SqlCOMPlusInstalled property. Its value is '1'.
Could not get the ASP temp directory.
MSI (s) (18!04) [23:51:27:937]: PROPERTY CHANGE: Adding RSPREREQUISITECHECKED property. Its value is '1'.
MSI (s) (18!04) [23:51:27:937]: PROPERTY CHANGE: Modifying IISCHECKED property. Its current value is '0'. Its new value: '1'.
SqlCOMPlusInstalled value set to 1
<EndFunc Name='CheckIIS' Return='0' GetLastError='0'>
PerfTime Stop: CheckIIS : Wed Apr 19 23:51:27 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:27:937]: Doing action: Create_RSGUID.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:27: CheckIIS.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:27:937]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:937]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:937]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:937]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:937]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:937]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:937]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:937]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:27:937]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:27:937]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:937]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:937]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:953]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:953]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:953]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:953]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:27:953]: Transforming table Binary.

MSI (s) (18:38) [23:51:27:953]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:54) [23:51:27:953]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8FE.tmp, Entrypoint: Create_RSGUID
Action start 23:51:27: Create_RSGUID.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!28) [23:51:28:031]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:031]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!28) [23:51:28:031]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:031]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:031]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!28) [23:51:28:031]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:031]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!28) [23:51:28:031]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:031]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=Create_RSGUID
MSI (s) (18!28) [23:51:28:046]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:046]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!28) [23:51:28:046]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:046]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:046]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!28) [23:51:28:046]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:046]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!28) [23:51:28:046]: Transforming table _sqlAction.

MSI (s) (18!28) [23:51:28:046]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: Create_RSGUID
PerfTime Start: Create_RSGUID : Wed Apr 19 23:51:28 2006
<Func Name='Create_RSGUID'>
MSI (s) (18!28) [23:51:28:046]: PROPERTY CHANGE: Adding RSGUIDVALUE property. Its value is '{c866ae60-85ca-4d2c-8973-a89bbbb0ad24}'.
Starting Create_RSGUID
Created new GUID: {c866ae60-85ca-4d2c-8973-a89bbbb0ad24}
<EndFunc Name='Create_RSGUID' Return='0' GetLastError='0'>
PerfTime Stop: Create_RSGUID : Wed Apr 19 23:51:28 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:28:046]: Doing action: CheckPassedPropertiesLength.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:28: Create_RSGUID.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:28:062]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:062]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:062]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:062]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:062]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:04) [23:51:28:062]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI8FF.tmp, Entrypoint: CheckPassedPropertiesLength
Action start 23:51:28: CheckPassedPropertiesLength.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=CheckPassedPropertiesLength
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!D4) [23:51:28:203]: Transforming table _sqlAction.

MSI (s) (18!D4) [23:51:28:203]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: CheckPassedPropertiesLength
PerfTime Start: CheckPassedPropertiesLength : Wed Apr 19 23:51:28 2006
<Func Name='CheckPassedPropertiesLength'>
MSI (s) (18!D4) [23:51:28:218]: PROPERTY CHANGE: Adding RSSqlPoolLimit property. Its value is '150'.
CheckPassedPropertiesLength: Property USERNAME is of legal length.
<EndFunc Name='CheckPassedPropertiesLength' Return='0' GetLastError='0'>
PerfTime Stop: CheckPassedPropertiesLength : Wed Apr 19 23:51:28 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:28:218]: Skipping action: CheckForGDRPatch.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B (condition is false)
MSI (s) (18:38) [23:51:28:218]: Doing action: PropSetProductID.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:28: CheckPassedPropertiesLength.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: PROPERTY CHANGE: Modifying ProductID property. Its current value is '**********'. Its new value: '**********'.
Action start 23:51:28: PropSetProductID.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
MSI (s) (18:38) [23:51:28:218]: Skipping action: AppendCLSSQLDATADIR (condition is false)
MSI (s) (18:38) [23:51:28:218]: Skipping action: SetAutoSAPWDAndDisable (condition is false)
MSI (s) (18:38) [23:51:28:218]: Doing action: FindRelatedProducts
Action ended 23:51:28: PropSetProductID.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 1.
MSI (s) (18:38) [23:51:28:218]: Skipping FindRelatedProducts action: not run in maintenance mode
Action start 23:51:28: FindRelatedProducts.
MSI (s) (18:38) [23:51:28:218]: Doing action: FindUpgradeableProduct
Action ended 23:51:28: FindRelatedProducts. Return value 0.
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:218]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:218]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:218]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:5C) [23:51:28:234]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI900.tmp, Entrypoint: FindUpgradeableProduct
Action start 23:51:28: FindUpgradeableProduct.
<Func Name='LaunchFunction'>
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=FindUpgradeableProduct
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!3C) [23:51:28:328]: Transforming table _sqlAction.

MSI (s) (18!3C) [23:51:28:328]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: FindUpgradeableProduct
PerfTime Start: FindUpgradeableProduct : Wed Apr 19 23:51:28 2006
<Func Name='FindUpgradeableProduct'>
<EndFunc Name='FindUpgradeableProduct' Return='0' GetLastError='0'>
PerfTime Stop: FindUpgradeableProduct : Wed Apr 19 23:51:28 2006
<EndFunc Name='LaunchFunction' Return='0' GetLastError='0'>
MSI (s) (18:38) [23:51:28:343]: Doing action: SetInstanceProperty.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Action ended 23:51:28: FindUpgradeableProduct. Return value 1.
MSI (s) (18:38) [23:51:28:343]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:343]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table CustomAction.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: CustomAction 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:343]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:38) [23:51:28:343]: Transforming table Binary.

MSI (s) (18:38) [23:51:28:343]: Note: 1: 2262 2: Binary 3: -2147287038
MSI (s) (18:D4) [23:51:28:343]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI901.tmp, Entrypoint: SetInstanceProperty
Action start 23:51:28: SetInstanceProperty.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B.
<Func Name='LaunchFunction'>
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
Function=SetInstanceProperty
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
MSI (s) (18!F0) [23:51:28:546]: Transforming table _sqlAction.

MSI (s) (18!F0) [23:51:28:546]: Note: 1: 2262 2: _sqlAction 3: -2147287038
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: SetInstanceProperty
PerfTime Start: SetInstanceProperty : Wed Apr 19 23:51:28 2006
<Func Name='SetInstanceProperty'>
MSI (s) (18!F0) [23:51:28:562]: PROPERTY CHANGE: Adding SqlOriginalMachineName property. Its value is 'DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:562]: PROPERTY CHANGE: Adding SqlLegacyRegPath property. Its value is 'MSSQLServer'.
MSI (s) (18!F0) [23:51:28:578]: PROPERTY CHANGE: Adding PreviousInstId property. Its value is 'MSSQL.1'.
Using instanced id: MSSQL.1
MSI (s) (18!F0) [23:51:28:578]: PROPERTY CHANGE: Adding InstId property. Its value is 'MSSQL.1'.
Previous instance id: MSSQL.1
Using instance name: MSSQLSERVER
MSI (s) (18!F0) [23:51:28:609]: PROPERTY CHANGE: Adding PrevRegRootPath property. Its value is 'Software\Microsoft\Microsoft SQL Server\MSSQL.1'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding InstanceName.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B property. Its value is 'MSSQLSERVER'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServicePrefixRS.9754C2F0_FC41_4ADF_9C17_1D45EA972478 property. Its value is 'SQLServer2005ReportServerUser$DTPOCHQ$'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServicePrefixSSIS.9754C2F0_FC41_4ADF_9C17_1D45EA972478 property. Its value is 'SQLServer2005DTSUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServicePrefixRS.6080319C_1466_426E_9E7A_1DD555143E0A property. Its value is 'SQLServer2005ReportServerUser$DTPOCHQ$'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServicePrefixSSIS.6080319C_1466_426E_9E7A_1DD555143E0A property. Its value is 'SQLServer2005DTSUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServiceGroupSQLBrowser.2FC2D269_8625_4826_BB3F_F9059090CB38 property. Its value is 'SQLServer2005SQLBrowserUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding QuotedServiceGroupSQLBrowser.2FC2D269_8625_4826_BB3F_F9059090CB38 property. Its value is 'POC\SQLServer2005SQLBrowserUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServiceGroupSQLBrowser.03BE59F9_3DFA_413B_A99C_B95CA31A7BFE property. Its value is 'SQLServer2005SQLBrowserUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding QuotedServiceGroupSQLBrowser.03BE59F9_3DFA_413B_A99C_B95CA31A7BFE property. Its value is 'POC\SQLServer2005SQLBrowserUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServiceGroupSQLBrowser.879C8BDB_884A_4C3C_80C3_3452EA2B8439 property. Its value is 'SQLServer2005SQLBrowserUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding QuotedServiceGroupSQLBrowser.879C8BDB_884A_4C3C_80C3_3452EA2B8439 property. Its value is 'POC\SQLServer2005SQLBrowserUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServiceGroupADHelper.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 property. Its value is 'SQLServer2005MSSQLServerADHelperUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding QuotedServiceGroupADHelper.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 property. Its value is 'POC\SQLServer2005MSSQLServerADHelperUser$DTPOCHQ'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding InstanceRegKey.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 property. Its value is 'Microsoft SQL Server\MSSQL.1'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding DataInstanceTxt.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL'.
MSI (s) (18!F0) [23:51:28:625]: PROPERTY CHANGE: Adding ServiceNameSQL.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'MSSQLSERVER'.
Using PrevRegRootPath: Software\Microsoft\Microsoft SQL Server\MSSQL.1
GetServiceUserGroup failed for MSSQLSERVER, 5
Error Code: 0x80070534 (1332)
Windows Error Text: No mapping between account names and security IDs was done.
Source File Name: sqlca\sqlcax.cpp
Compiler Timestamp: Mon Feb 27 02:04:14 2006
Function Name: SetInstanceProperty
Source Line Number: 1223

MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
Error Code: 1332
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Transforming table Error.

MSI (s) (18!F0) [23:51:28:640]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18!F0) [23:51:28:640]: Product: Microsoft SQL Server 2005 (64-bit) -- Error 29528. The setup has encountered an unexpected error while Setting Internal Properties. The error is: Fatal error during installation.


Error 29528. The setup has encountered an unexpected error while Setting Internal Properties. The error is: Fatal error during installation.

<Failure Type='Fatal' Error='1332'>
<EndFunc Name='LaunchFunction' Return='1332' GetLastError='0'>
MSI (s) (18:38) [23:51:28:640]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:28:640]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:28:640]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:28:640]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:28:640]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:28:640]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:28:640]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
MSI (s) (18:38) [23:51:28:640]: Transforming table InstallExecuteSequence.

MSI (s) (18:38) [23:51:28:640]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038
Action ended 23:51:28: SetInstanceProperty.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B. Return value 3.
Action ended 23:51:28: INSTALL. Return value 3.
Property(S): ProductCode = {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}
Property(S): ProductLanguage = 1033
Property(S): Manufacturer = Microsoft Corporation
Property(S): ProductVersion = 9.1.2047.00
Property(S): MEDIAPACKAGEPATH = \Setup\
Property(S): ALLUSERS = 1
Property(S): NULLGUID = {00000000-0000-0000-0000-000000000000}
Property(S): ASPNetVersion = 2.0.50727
Property(S): ARPHELPLINK = http://go.microsoft.com/fwlink/?LinkId=52152
Property(S): ARPPRODUCTICON = ARPIcon.ico
Property(S): ARPNOREPAIR = 1
Property(S): ARPSYSTEMCOMPONENT = 1
Property(S): MsiHiddenProperties = SQLPASSWORD;AGTPASSWORD;ASPASSWORD;RSPASSWORD;SQLBROWSERPASSWORD;RSSQLPASSWORD;RSSQLPassword;RSSQLPasswordQuoted;RSSETUPPASSWORD;RSSetupPassword;SAPWD;saPWD;UPGRADEPWD;SqlUpgradePwd;SQLPassword;ServicePassword;ADMINPASSWORD;PIDKEY;FTEPassword.68C6D1F2_77E0_11D5_8528_00C04F68155C;checksum.CB2C9331_83B7_4803_97B5_442EFDC583D7;checksum.;DigitalProductID;DPID;Do_sqlScript.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B;Rollback_SqlConnection.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B;Do_XmlSingleNode.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B;Do_RSSetting.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B;PID;ProductID;RSUPGRADEPASSWORD;Do_RSSetSharePointExclusionPath.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Property(S): SecureCustomProperties = SQL_SHOWLIC;UPGRADESQL90
Property(S): SqlServerBuild = 1
Property(S): SqlCluster = 0
Property(S): INSTALLLEVEL = 90
Property(S): FXAssemblyVersion = 2.0.0.0
Property(S): VSAssemblyVersion = 8.0.0.0
Property(S): SqlErrorReporting = #0
Property(S): SqlSqmReporting = #0
Property(S): SqlEnableRanu = 0
Property(S): SqlPatchLevel = 9.1.2047
Property(S): ChannelID = 271
Property(S): PIDTemplate = 77591<````=````=````=````=`````>@.@.@.@.@.
Property(S): mpc = 77591
Property(S): OEMRelease = 0
Property(S): PIDKEY = **********
Property(S): ProgramFiles64Folder = C:\Program Files\
Property(S): ScreenY = 768
Property(S): ProductID = **********
Property(S): SqlInstanceName = MSSQLSERVER
Property(S): SqlSecurityMode = SQL
Property(S): SqlClusterSec = 0
Property(S): MDACSXS = 1
Property(S): DefaultUIFont = Tahoma8
Property(S): VersionNT = 502
Property(S): LocalSystemAccount = NT AUTHORITY\SYSTEM
Property(S): DefaultBuiltInAccount = LocalSystemAccount
Property(S): NetworkServiceAccount = NT AUTHORITY\NETWORK SERVICE
Property(S): LocalServiceAccount = NT AUTHORITY\LOCAL SERVICE
Property(S): SimpleFeatureTitle_Feat1 = SQL Server Database Services
Property(S): SqlDisableNetworkProtocols = 2
Property(S): SimpleFeature_SQLEngineVS = Create a SQL Server failover cluster
Property(S): SimpleFeature_Feat1 = &SQL Server Database Services
Property(S): ProgramFilesFolder = C:\Program Files (x86)\
Property(S): Service_AGT = SQL Server Agent
Property(S): Service_OLAP = SQL Server Analysis Services
Property(S): Service_SQL = SQL Server
Property(S): Service_RS = SQL Server Reporting Services
Property(S): Service_Browse = SQL Server Browser
Property(S): Service_DTS = SQL Server Integration Services
Property(S): Service_ADHelper = SQL Server Active Directory Helper
Property(S): Service_SQLWriter = SQL Server VSS Writer
Property(S): Service_FTS = SQL Server FullText Search
Property(S): ServiceDesc_RS = Manages, executes, renders, schedules and delivers reports.
Property(S): ServiceDesc_AGT = Executes jobs, monitors SQL Server, and fires alerts, and allows automation of some administrative tasks.
Property(S): ServiceDesc_SQL = Provides storage, processing and controlled access of data and rapid transaction processing.
Property(S): ServiceDesc_Browse = Provides SQL Server connection information to client computers.
Property(S): ServiceDesc_OLAP = Supplies online analytical processing (OLAP) and data mining functionality for business intelligence applications.
Property(S): ServiceDesc_DTS = Provides management support for SSIS package storage and execution.
Property(S): ServiceDesc_ADHelper = Enables integration with Active Directories.
Property(S): ServiceDesc_SQLWriter = Provides the interface to backup/restore Microsoft SQL server through the Windows VSS infrastructure.
Property(S): ServiceDesc_FTS = Quickly creates full-text indexes on content and properties of structured and semi-structured data to allow fast linguistic searches on this data.
Property(S): ServiceGroupDesc_ADHelper = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Active Directory Helper in SQL Server 2005.
Property(S): ServiceGroupDesc_AGT = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Agent in SQL Server 2005.
Property(S): ServiceGroupDesc_OLAP = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Analysis Services in SQL Server 2005.
Property(S): ServiceGroupDesc_Browse = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Browser in SQL Server 2005.
Property(S): ServiceGroupDesc_DTS = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Integration Services in SQL Server 2005.
Property(S): ServiceGroupDesc_FTS = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server and SQL Server FullText Search in SQL Server 2005.
Property(S): ServiceGroupDesc_NS = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Notification Services in SQL Server 2005.
Property(S): ServiceGroupDesc_RS = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Reporting Services in SQL Server 2005.
Property(S): ServiceGroupDesc_RSWeb = Members in the group have the required access to be assigned as the log on account for the associated instance of SQL Server Reporting Services in SQL Server 2005
Property(S): ServiceGroupDesc_SQL = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server and SQL Server FullText Search in SQL Server 2005.
Property(S): ServiceGroupDesc_SQL_NEW = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server in SQL Server 2005.
Property(S): ServiceGroupDesc_FTS_NEW = Members in the group have the required access and privileges to be assigned as the log on account for the associated instance of SQL Server Full Text Search in SQL Server 2005.
Property(S): DlgService_AGT = SQL Server Agent
Property(S): DlgService_OLAP = Analysis Services
Property(S): DlgService_SQL = SQL Server
Property(S): DlgService_RS = Reporting Services
Property(S): DlgService_Browse = SQL Browser
Property(S): AutoStart_AGT = SQL Server A&gent
Property(S): AutoStart_OLAP = &Analysis Services
Property(S): AutoStart_SQL = &SQL Server
Property(S): AutoStart_RS = Rep&orting Services
Property(S): AutoStart_Browse = SQL Bro&wser
Property(S): AutoStart_FTS = SQL Server &FullText Search
Property(S): _AuthenticationType = Windows
Property(S): SQL_rgCollation = 1
Property(S): OLAP_rgCollation = 0
Property(S): _InstanceType = Default
Property(S): _LicensingMode = PerSeat
Property(S): AGTLogin = DomainAccount
Property(S): ASLogin = DomainAccount
Property(S): SingleLogin = DomainAccount
Property(S): SQLLogin = DomainAccount
Property(S): RSLogin = DomainAccount
Property(S): SQLBROWSERLogin = DomainAccount
Property(S): _UpgradeLogon = Windows
Property(S): _SampleDBMode = InstallSD
Property(S): ButtonTextStyle = {\ButtonTextStyle}
Property(S): DlgTextStyle = {\DlgTextStyle}
Property(S): DlgTextStyleB = {\DlgTextStyleB}
Property(S): DlgTitleStyle = {\DlgTitleStyle}
Property(S): DlgTitleStyleB = {\DlgTitleStyleB}
Property(S): FixedStyle = {\FixedStyle}
Property(S): T_DataFree = T_DataFree
Property(S): T_DataReq = T_DataReq
Property(S): T_ProgramFree = T_ProgramFree
Property(S): T_ProgramReq = T_ProgramReq
Property(S): T_IPVal = T_IPVal
Property(S): T_Subnet = T_Subnet
Property(S): ErrorDialog = ErrorDlg
Property(S): Installed = 00:00:00
Property(S): TextVSName = &Virtual server name:
Property(S): AccountForAllNodesDlg_Desc = Account for remote setup.
Property(S): AccountForAllNodesDlg_Text = Enter a user name and password that is a valid administrator account for all nodes in the cluster system. This will be used during setup only.
Property(S): AccountForAllNodesDlg_Title = Remote Account Information
Property(S): Authentication_ConfirmPWText = Confirm &password:
Property(S): Authentication_DlgDesc = The authentication mode specifies the security used when connecting to SQL Server.
Property(S): Authentication_DlgText = Select the authentication mode to use for this installation.
Property(S): Authentication_DlgTitle = Authentication Mode
Property(S): Authentication_EnterPWText = &Enter password:
Property(S): Authentication_saPasswordText = Specify the sa logon password below:
Property(S): Authentication_SQL = &Mixed Mode (Windows Authentication and SQL Server Authentication)
Property(S): Authentication_Windows = &Windows Authentication Mode
Property(S): BrowseFolder_ComboText = &Install in:
Property(S): BrowseFolder_DlgDesc = You can select a different folder for installation.
Property(S): BrowseFolder_DlgTitle = Change Folders
Property(S): BrowseFolder_TailText = Installation &path:
Property(S): BrowseFolder_TailTextShared = The SQL Server shared path has already been configured.
Property(S): ButtonText_Abort = &Abort
Property(S): ButtonText_Add = &Add
Property(S): ButtonText_Back = < &Back
Property(S): ButtonText_Browse = B&rowse...
Property(S): ButtonText_Cancel = Cancel
Property(S): ButtonText_Close = &Close
Property(S): ButtonText_Complete = &Complete
Property(S): ButtonText_ContinueLater = &Continue Later
Property(S): ButtonText_DiskCost = &Disk Cost...
Property(S): ButtonText_Exit = &Exit
Property(S): ButtonText_Finish = &Finish
Property(S): ButtonText_Help = &Help
Property(S): ButtonText_Ignore = &Ignore
Property(S): ButtonText_Install = &Install
Property(S): ButtonText_Minimal = &Minimal
Property(S): ButtonText_New = &New
Property(S): ButtonText_Next = &Next >
Property(S): ButtonText_No = &No
Property(S): ButtonText_Normal = &Normal
Property(S): ButtonText_OK = OK
Property(S): ButtonText_Open = &Open
Property(S): ButtonText_Reinstall = &Reinstall
Property(S): ButtonText_ReinstallMode = &Select the reinstall mode
Property(S): ButtonText_Remove = &Remove
Property(S): ButtonText_Remove2 = &Remove
Property(S): ButtonText_Report = &Report
Property(S): ButtonText_Reset = &Reset
Property(S): ButtonText_Restore = &Restore
Property(S): ButtonText_Resume = &Resume
Property(S): ButtonText_Retry = &Retry
Property(S): ButtonText_Up = &Up
Property(S): ButtonText_Yes = &Yes
Property(S): Cancel_DlgDesc = Are you sure you want to cancel the installation?
Property(S): Cancel_DlgText = The installation is not complete. If you exit the wizard now, Microsoft SQL Server will not be installed.
Property(S): ClusterGroup_DlgDesc = Select the cluster group where the virtual server resources will be installed.
Property(S): ClusterGroup_DlgStaticTextAvailable = Available cluster groups:
Property(S): ClusterGroup_DlgStaticTextUnavailable = Unavailable cluster groups:
Property(S): ClusterGroup_DlgTitle = Cluster Group Selection
Property(S): ClusterNodeDlg_ButtonTextAdd = &Add ->
Property(S): ClusterNodeDlg_ButtonTextRemove = <- &Remove
Property(S): ClusterNodeDlg_StaticTextAvailableNode = Available nodes:
Property(S): ClusterNodeDlg_StaticTextRequiredNode = Required node:
Property(S): ClusterNodeDlg_StaticTextSelectedNode = Selected nodes:
Property(S): ClusterNodeDlg_StaticTextUnavailableNode = Unavailable nodes:
Property(S): ClusterNodeDlg_Text = Select the nodes to include in the virtual server.
Property(S): ClusterNodeDlg_Title = Cluster Node Configuration
Property(S): Collation_Service = S&ervice:
Property(S): Collation_Service1 = Collation settings for service:
Property(S): Collation_AS_Collation = Analysis Services Collation:
Property(S): Collation_ChkBinary = Binary
Property(S): Collation_ChkBinary2 = Binary - code point
Property(S): Collation_ChkCase = Case - sensitive
Property(S): Collation_ChkAccent = Accent - sensitive
Property(S): Collation_ChkKana = Kana - sensitive
Property(S): Collation_ChkWidth = Width - sensitive
Property(S): Collation_Designator = Collation &designator and sort order:
Property(S): Collation_DlgDesc = Collation settings define the sorting behavior for your server.
Property(S): Collation_DlgCusomizeText = &Customize for each service account
Property(S): Collation_DlgTitle = Collation Settings
Property(S): Collation_SQL = &SQL collations (used for compatibility with previous versions of SQL Server)
Property(S): DiskPrompt = Please insert next disk
Property(S): DiskSpace_DlgDesc = Disk space required for the installation exceeds available disk space.
Property(S): DiskSpace_DlgDesc1 = The available disk space and the space required for installation are shown below.
Property(S): DiskSpace_DlgText = The highlighted volumes, if any, do not have enough disk space available for the currently selected features. Click Disk Cleanup to free disk space and then click Resume to continue the installation, or click Exit to exit the wizard.
Property(S): DiskSpace_DlgTitle = Out of Disk Space
Property(S): DiskSpace_DlgTitle1 = Disk Cost
Property(S): DiskSpace_LBDiskCleanup = Use disk cleanup to free more disk space by removing unneeded files.
Property(S): REASON_ADMIN_DISABLED = Administrative shares must be enabled in order to let Setup access remote nodes
Property(S): REASON_DARWIN_VER = Windows installer is not present or has not the required version
Property(S): REASON_DUP_INSTANCE_NAME_CLST = An instance with the same name is already installed in one or more nodes of the cluster.
Property(S): REASON_GROUP_HOSTS_VS = Already contains a SQL Virtual Server
Property(S): REASON_GROUP_NO_DISK = Does not contain any valid cluster disk
Property(S): ERROR_INVALID_PID = This is an invalid Product Key value. Please check the number located on your Product Key sticker.
Property(S): ERROR_INVALID_USERNAME = The Name is required for the installation.
Property(S): REASON_NODE_DOWN = The node is down or unavailable
Property(S): REASON_NOT_KNOWN = Unknown
Property(S): REASON_PENDING_REBOOT = The node must be rebooted before running setup
Property(S): REASON_SCC_CHECK_FAILED = A SCC check failed on the node
Property(S): ERROR_UNKNOWN = Installation error. Install it by running setup.exe.
Property(S): REASON_VERSION_ADDNODE = Adding nodes to the Virtual Server definition using a newer version of Setup is not allowed.
Property(S): REASON_OS_VER = SQL Server requires Windows 2000 Service Pack 4, or Windows XP Service Pack 1 or later for installation.
Property(S): REASON_OS_TYPE = This version of SQL Server is not supported on this version of Windows.
Property(S): Exit_DlgDesc1 = Setup has installed Microsoft SQL Server successfully. Click Finish to exit.
Property(S): Exit_DlgDesc2 = Setup has removed Microsoft SQL Server successfully. Click Finish to exit.
Property(S): Exit_DlgDesc3 = Setup has updated Microsoft SQL Server successfully. Click Finish to exit.
Property(S): Exit_DlgDesc4 = Setup has reinstalled Microsoft SQL Server successfully. Click Finish to exit.
Property(S): Exit_DlgDesc5 = Setup has upgraded Microsoft SQL Server successfully. Click Finish to exit.
Property(S): Exit_DlgTitle = Completing Microsoft SQL Server Setup
Property(S): SimpleFeature_DlgDesc = Select the components to install or upgrade.
Property(S): SimpleFeature_DlgTitle = Components to Install
Property(S): SimpleFeature_Feat2 = &Analysis Services
Property(S): SimpleFeature_AnalysisServerVS = Create an Analysis Server failover cluster
Property(S): SimpleFeature_Feat3 = &Reporting Services
Property(S): SimpleFeature_Feat4 = N&otification Services
Property(S): SimpleFeature_Feat5 = &Integration Services
Property(S): SimpleFeature_Feat6 = &Workstation components, Books Online and development tools
Property(S): SimpleFeatureTitle_Feat2 = Analysis Services
Property(S): SimpleFeatureTitle_Feat3 = Reporting Services
Property(S): SimpleFeatureTitle_Feat4 = Notification Services
Property(S): SimpleFeatureTitle_Feat5 = Integration Services
Property(S): SimpleFeatureTitle_Feat6 = Client Components
Property(S): SimpleFeature_Advanced = A&dvanced
Property(S): SimpleFeature_AdvancedText = For more options, click Advanced.
Property(S): SimpleFeature_Components = Components to be installed
Property(S): SimpleFeature_OutOfSpace = There is not enough disk space to install the selected components. Click Advanced for more options.
Property(S): Feature_DlgDesc = Select the program features you want installed.
Property(S): Feature_DlgText = Click an icon in the following list to change how a feature is installed.
Property(S): Feature_DlgTitle = Feature Selection
Property(S): Feature_FeatureFrame = Feature description
Property(S): Feature_GroupBox1 = Installation path
Property(S): FileInUse_DlgDesc = Some files that need to be updated are currently in use.
Property(S): FileInUse_DlgText = The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue.
Property(S): FileInUse_DlgTitle = Files in Use
Property(S): InitDlg_Title = Microsoft SQL Server Installation
Property(S): InitDlg_Desc = Setup is preparing to continue with the installation.
Property(S): InitDlg_Text = Please wait while setup prepares to continue with the installation.
Property(S): Instance_Default = &Default instance
Property(S): Instance_DlgDesc = You can install a default instance or you can specify a named instance.
Property(S): Instance_DlgText = Provide a name for the instance. For a default installation, click Default instance and click Next. To upgrade an existing default instance, click Default instance. To upgrade an existing named instance select Named instance and specify the instance name.
Property(S): Instance_DlgText1 = To view a list of existing instances and components click on Installed instances.
Property(S): Instance_DlgTitle = Instance Name
Property(S): Instance_Named = N&amed instance
Property(S): IPAddress_DlgDesc = Enter virtual server information.
Property(S): IPAddress_DlgStaticTextClusterIP = Network address:
Property(S): IPAddress_DlgStaticTextIPAddress = &IP address:
Property(S): IPAddress_DlgStaticTextIPSel = &Selected networks and IP addresses:
Property(S): IPAddress_DlgStaticTextNetToUse = N&etwork to use:
Property(S): IPAddress_DlgStaticTextSubnet = Network subnet:
Property(S): IPAddress_DlgStaticTextVSName = Virtual server name:
Property(S): IPAddress_DlgText = Enter an IP address for the virtual server. To add IP addreses for additional networks, click Add.
Property(S): IPAddress_DlgTitle = Virtual Server Configuration
Property(S): License_Devices = devices
Property(S): License_Processors = processors
Property(S): LicenseModeDlg_DlgDesc = SQL server supports two client licensing modes: per seat licensing and processor licensing.
Property(S): LicenseModeDlg_DlgText = Choose the appropriate licensing modes.
Property(S): LicenseModeDlg_DlgText1 = Per seat license: each device that accesses Microsoft SQL Server requires a separate license.
Property(S): LicenseModeDlg_DlgText2 = Processor license: each processor on this server requires a separate license.
Property(S): LicenseModeDlg_DlgTitle = Licensing Mode
Property(S): LicenseModeDlg_Processor = &Processor license for
Property(S): LicenseModeDlg_RadioButtonGroup = Licensing mode
Property(S): LicenseModeDlg_Seat = Per &seat license for
Property(S): Maintenance_ChgLabel = Ch&ange Installed Components
Property(S): Maintenance_ChgLabelCl = &Maintain the Virtual Server
Property(S): Maintenance_ChgText = Maintain features of this instance.
Property(S): Maintenance_ChgTextCl = Add or remove nodes to the virtual server.
Property(S): Maintenance_DlgDesc = You can change or remove this instance of SQL Server.
Property(S): Maintenance_DlgTitle = Change or Remove Instance
Property(S): Maintenance_RmvLabel = R&emove Microsoft SQL Server
Property(S): Maintenance_RmvText = Remove all features of this existing installation from your computer.
Property(S): Maintenance_RmvTextCl = Remove the virtual server from your cluster.
Property(S): Maintenance_ChgLabelResume = Complete the &suspended installation
Property(S): Maintenance_ChgTextResume = Complete the suspended installation of Microsoft SQL Server on your computer.
Property(S): Progress_DlgDesc1 = The program features you selected are being installed.
Property(S): Progress_DlgDesc2 = The Microsoft SQL Server is being removed.
Property(S): Progress_DlgDesc3 = Setup is installing the components you selected.
Property(S): Progress_DlgDesc4 = The Microsoft SQL Server is being reinstalled.
Property(S): Progress_DlgText1 = Please wait while Setup installs Microsoft SQL Server. Installation may take several minutes.
Property(S): Progress_DlgText2 = Please wait while Setup removes Microsoft SQL Server. This may take several minutes.
Property(S): Progress_DlgText3 = Please wait while Setup updates Microsoft SQL Server. This may take several minutes.
Property(S): Progress_DlgText4 = Please wait while Setup reinstalls Microsoft SQL Server. Installation may take several minutes.
Property(S): Progress_DlgTitle1 = Installing Microsoft SQL Server
Property(S): Progress_DlgTitle2 = Removing Microsoft SQL Server
Property(S): Progress_DlgTitle3 = Configuring Microsoft SQL Server
Property(S): Progress_DlgTitle4 = Reinstalling Microsoft SQL Server
Property(S): Progress_lbStatus = Status:
Property(S): Register_CompLabel = C&ompany:
Property(S): Register_DlgSpec = The following information will personalize your installation.
Property(S): Register_DlgText = The Name field must be filled in prior to proceeding. The Company field is optional.
Property(S): Register_DlgText1 = Please enter your 25 character Product Key. You can find this number on the yellow sticker in the CD liner notes or the CD sleeve.
Property(S): Register_DlgTitle = Registration Information
Property(S): Register_NameLabel = N&ame:
Property(S): Resume_ResumeText = Setup will complete the suspended installation of Microsoft SQL Server on your computer. To continue, click Next.
Property(S): Resume_TextLine1 = Microsoft SQL Server Installation Wizard
Property(S): ServiceAccountDlg_Advanced = &Customize for each service account
Property(S): ServiceAccountDlg_Autostart = Start services at the end of setup
Property(S): ServiceAccountDlg_AutostartServices = Start services at the end of setup
Property(S): ServiceAccountDlg_DlgDesc = Service accounts define which accounts to log in.
Property(S): ServiceAccountDlg_DlgTitle = Service Account
Property(S): ServiceAccountDlg_Domain = Use a domain use&r account
Property(S): ServiceAccountDlg_DomainLabel = &Domain:
Property(S): ServiceAccountDlg_BuiltIn = Use the built-in S&ystem account
Property(S): ServiceAccountDlg_PasswordLabel = &Password:
Property(S): ServiceAccountDlg_Service = S&ervice:
Property(S): ServiceAccountDlg_Service1 = Service:
Property(S): ServiceAccountDlg_UsernameLabel = &Username:
Property(S): Setup = Setup
Property(S): StartCopy_DlgDesc = Setup is ready to begin installation.
Property(S): StartCopy_DlgDescReinst = Setup is ready to begin reinstallation.
Property(S): StartCopy_DlgDescRemove = You have chosen to remove the program from your system.
Property(S): StartCopy_DlgDescRemoveCl = You have chosen to remove the program from your cluster.
Property(S): StartCopy_DlgDescVSConfig = Setup is ready to begin updating your virtual server.
Property(S): StartCopy_DlgText = Setup has enough information to start copying the program files. To proceed, click Install. To change any of your installation settings, click Back. To exit setup, click Cancel.
Property(S): StartCopy_DlgText2 = Click Cancel to exit setup.
Property(S): StartCopy_DlgTextConfig = Setup has enough information to start installation. Click Install to proceed.
Property(S): StartCopy_DlgTextReinstData = You have chosen to re-install all features of existing installation including data files, and therefore overwrite the system database. Click Reinstall to proceed.
Property(S): StartCopy_DlgTextReinst = You have chosen to re-install all features of existing installation. Click Reinstall to proceed.
Property(S): StartCopy_DlgTextRemove = Click Remove to remove Microsoft SQL Server from your computer. After removal, this program will no longer be available for use.
Property(S): StartCopy_DlgTextRemoveCl = Click Remove to remove Microsoft SQL Server from your cluster. After removal, this program will no longer be available for use.
Property(S): StartCopy_DlgTextUnchanged = You did not change your virtual server configuration.
Property(S): StartCopy_DlgTitle = Ready to Install
Property(S): StartCopy_DlgTitleConfig = Ready to Update
Property(S): StartCopy_DlgTitleReinst = Ready to Reinstall
Property(S): StartCopy_DlgTitleRemove = Remove Microsoft SQL Server
Property(S): StaticUserName = Account:
Property(S): StaticUserPassword = &Password:
Property(S): TextDataDir = &Data files:
Property(S): TextProgramFileDir = Program files:
Property(S): UpgradeLogon_DlgDesc = Database account for upgrading.
Property(S): UpgradeLogon_DlgText = The authentication mode specifies the security used when connecting to SQL Server during database upgrading.
Property(S): UpgradeLogon_DlgTitle = Upgrade Logon Information
Property(S): UpgradeLogon_Password = &Password:
Property(S): UpgradeLogon_SQL = &SQL Server Authentication Mode
Property(S): UpgradeLogon_SQLText = Enter SQL Server account:
Property(S): UpgradeLogon_UserName = &Username:
Property(S): UpgradeLogon_Windows = &Windows Authentication Mode
Property(S): UserExit_FinishText1 = To complete installation at another time, please run setup again.
Property(S): UserExit_FinishText2 = Click Finish to exit setup.
Property(S): UserExit_RestContText1 = You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation.
Property(S): UserExit_RestContText2 = Click Restore or Continue Later to exit the installation wizard.
Property(S): UserExit_TextLine = Setup was interrupted before Microsoft SQL Server could be completely installed.
Property(S): VirtualServer_DlgDesc = The virtual server name must be unique on the network.
Property(S): VirtualServer_DlgText = Enter the name of the new virtual server.
Property(S): VirtualServer_DlgTitle = Virtual Server Name
Property(S): WARNING_QUORUMGROUP1 = You have chosen the group containing the quorum resource. It is strongly recommended that you should not use the quorum group with SQL Server.
Property(S): WARNING_QUORUMGROUP2 = Are you sure you want to proceed?
Property(S): DWTITLENAME = Microsoft SQL Server Setup
Property(S): DWHEADERTEXT = Microsoft SQL Server Setup was unable to install on your computer.
Property(S): DWERRORTEXT = Microsoft SQL Server Setup has encountered a problem and will end.
Property(S): ErrorDlg_Title = Microsoft SQL Server Setup
Property(S): Wait_Title = Please wait...
Property(S): Wait_Database = Validating settings.
Property(S): Wait_Service = Starting Service: [1]
Property(S): Wait_Connect = Validating database access on SQL Server [1].
Property(S): ErrorReporting_DlgDesc = Help Microsoft improve some of the SQL Server 2005 components and services.
Property(S): ErrorReporting_DlgText1 = For more information on the error reporting feature and the type of information sent, click Help.
Property(S): ErrorReporting_DlgText1_Property = ErrorReporting_DlgText1
Property(S): ErrorReporting_DlgText1_Express = By installing Microsoft SQL Server 2005, SQL Server and its components will be configured to automatically send fatal service error reports to Microsoft or a Corporate Error Reporting Server. Microsoft uses error reports to improve SQL Server functionality, and treats all information as confidential.
Property(S): ErrorReporting_DlgTitle = Error and Usage Report Settings
Property(S): ErrorReporting_CheckBox = &Automatically send Error reports for SQL Server 2005 to Microsoft or your corporate error reporting server. Error reports include information regarding the condition of SQL Server 2005 when an error occurred, your hardware configuration and other data. Error reports may unintentionally include personal information, which will not be used by Microsoft.
Property(S): ErrorReporting_SQM_CheckBox = Automatically send &Feature Usage data for SQL Server 2005 to Microsoft. Usage data includes anonymous information about your hardware configuration and how you use our software and services.
Property(S): EnableRanu_DlgDesc = Configure Run As Normal User mode.
Property(S): EnableRanu_DlgText1 = Allow users who do not have administrator privileges to run a separate instance of the Database Engine.
Property(S): EnableRanu_DlgText1_Property = EnableRanu_DlgText1
Property(S): EnableRanu_DlgTitle = User Instances
Property(S): EnableRanu_CheckBox = &Enable User Instances
Property(S): BrowseFolder_VolumeList = Program files must be installed on a valid local disk available on all cluster nodes. The volumes values are:
Property(S): ProductClash_DlgTitle = Existing components
Property(S): ProductClash_DlgDesc = Components have been found on the machine. Select upgrade options below.
Property(S): ProductClash_DlgText = The following components that you chose to install are already installed on the machine. To view a report of available options and alternatives click on Details.
Property(S): ProductClash_Detail = &Details...
Property(S): ProductClash_Warning = Components shared between SQL Server instances will be removed if they belong only to the SQL Server instance being upgraded.
Property(S): ProductClash_LegacyTools = Management Tools
Property(S): ProductClash_LegacyDTS = Data Transformation Services
Property(S): DetailDlg_DlgTitle = Installation options
Property(S): DetailDlg_DlgDesc = The list below shows installed components and upgrade options.
Property(S): InstanceListDlg_DlgTitle = Installed instances
Property(S): InstanceListDlg_DlgDesc = The list below contains all existing instances and components installed on this machine.
Property(S): InstanceListDlg_InstanceListText = To view details for an installed instance, select an instance from the list below. To proceed, select the instance name to upgrade and click OK.
Property(S): InstanceListDlg_TypeText = Type:
Property(S): InstanceListDlg_VersionText = Version:
Property(S): InstanceListDlg_EditionText = Edition:
Property(S): InstanceListDlg_LanguageText = Language:
Property(S): InstanceListDlg_DetailGroup = Installed Instance Details
Property(S): Instance_Instances = &Installed instances
Property(S): Product_YukonServer = Yukon Server
Property(S): Product_SQLServer = SQL Server
Property(S): Product_AnalysisServices = Analysis Services
Property(S): Product_ReportServer = Reporting Services
Property(S): ProductClash_Maintain = (Cannot maintain product, to maintain the product go to Add or Remove Programs)
Property(S): ProductClash_Upgrade = (Cannot upgrade product, to maintain the product go to Add or Remove Programs)
Property(S): ProductClash_UpgradeAsVS = (Upgrade product to Virtual Server)
Property(S): ProductClash_Virtualize = (Cannot virtualize product)
Property(S): Detail_Name = Name:
Property(S): Detail_AllowedAction = Allowed Action:
Property(S): Detail_Reason = Reason:
Property(S): Detail_Warning = Warning:
Property(S): Detail_ActionMaintain = Maintain (Action is only available from Add or Remove Programs)
Property(S): Detail_ReasonMaintain = Cannot maintain product, to maintain the product go to Add or Remove Programs
Property(S): Detail_ActionUpgrade = Upgrade
Property(S): Detail_ReasonUpgrade = Product can be upgraded to a new version
Property(S): Detail_ActionNone = None
Property(S): Detail_ReasonNoVirtualize = Product cannot be virtualized
Property(S): Detail_ReasonNone = Upgrades are not supported yet
Property(S): Detail_ReasonBlock = Your upgrade is blocked. For more information about upgrade support, see the "Version and Edition Upgrades" and "Hardware and Software Requirements" topics in SQL Server 2005 Setup Help or SQL Server 2005 Books Online.
Property(S): Detail_ReasonRemoveDTS = The SQL Server instance you are upgrading includes Data Transformation Services. Following the upgrade, Data Transformation Services will be removed unless there are other SQL Server instances installed that share it. Click on help for more information.
Property(S): Detail_ReasonRemoveTools = The SQL Server instance you are upgrading includes SQL Server Management Tools. Following the upgrade, previous versions of SQL Server Management Tools will be removed unless there are other SQL Server instances installed that share them. Do not use previous versions of SQL Server Management Tools with SQL Server 2005. Instead, use SQL Server 2005 Management Tools included in the SQL Server 2005 Workstation Components feature.
Property(S): SampleDatabase_DlgDesc = Configure how the sample databases are installed.
Property(S): SampleDatabase_DlgText = Specify a method to install the sample databases to an existing instance of SQL Server. To attach the sample databases, you must have permissions to create databases on the specified instance.
Property(S): SampleDatabase_DlgTitle = Sample Databases Setup
Property(S): SampleDatabase_ServerText = &SQL Server instance:
Property(S): SampleDatabase_Install = &Install sample databases without attaching
Property(S): SampleDatabase_Attach = Install and &attach sample databases
Property(S): Report_ActionUpgrade = Upgrade
Property(S): Report_ActionVirtualize = Virtualize
Property(S): Report_InstallTitle = The following components will be installed:
Property(S): Report_BlockTitle = The following components that you selected will not be changed:
Property(S): Report_WarnSPTitle = Warning: Setup found that the following components that already exist are at a different service pack level than the components being installed.
Property(S): Report_WarnSPCompList = Components:
Property(S): Report_WarnSPTail = After completing setup, you must download and apply the latest SQL Server 2005 service pack to all the components.
Property(S): UpgradeTools = Upgrading tools [1]
Property(S): UpgradeRepl = Upgrading replication [1]
Property(S): UpgradeEngine = Upgrading SQL Engine [1]
Property(S): UpgradeDTS = Upgrading DTS [1]
Property(S): HideAdvancedOptionsText = Hi&de advanced configuration options
Property(S): ArpProductDispayName = Microsoft SQL Server 2005 (64-bit)
Property(S): Built_inLocalSystem = Local system
Property(S): Built_inNetworkService = Network service
Property(S): Built_inLocalService = Local service
Property(S): Wait_UpgradeBlocker_Title = Analyzing Upgrade
Property(S): Wait_UpgradeBlocker_Status = Validating Upgrade Options.
Property(S): UpgradeBlockerDlg_DlgDesc = The following issues currently block upgrading to SQL Server 2005
Property(S): UpgradeBlockerDlg_DlgTitle = Upgrade Blocked
Property(S): UpgradeBlockerDlg_UAWarning = For assistance in resolving these issues, run Upgrade Advisor. You can install Upgrade Advisor from the SQL Server 2005 Setup Splash Screen.
Property(S): DomainGroup_DlgTitle = Domain Groups for Clustered Services
Property(S): DomainGroup_DlgText = The startup account for each clustered service will be added to the DomainName\GroupName to set its access control. Enter the name of existing DomainName\GroupName for each clustered service being installed. For additional information, click Help.
Property(S): DomainGroup_Browse = ...
Property(S): DomainGroupDlg_Service = Service Name
Property(S): DomainGroupDlg_Group = DomainName\GroupName
Property(S): SqlDomainGroup_SQL = &SQL Server
Property(S): SqlDomainGroup_AGT = S&QL Server Agent
Property(S): SqlDomainGroup_FTS = &Full-Text Search
Property(S): SqlDomainGroup_AS = &Analysis Services
Property(S): SqlDomainGroupService_SQL = SQL Server
Property(S): SqlDomainGroupService_AGT = SQL Server Agent
Property(S): SqlDomainGroupService_FTS = Full-Text Search
Property(S): SqlDomainGroupService_AS = Analysis Services
Property(S): SqlSortId030 = Binary order, for use with the 437 (U.S. English) Character Set.
Property(S): SqlSortId031 = Dictionary order, case-sensitive, for use with the 437 (U.S. English) Character Set.
Property(S): SqlSortId032 = Dictionary order, case-insensitive, for use with the 437 (U.S. English) Character Set.
Property(S): SqlSortId033 = Dictionary order, case-insensitive, uppercase preference, for use with the 437 (U.S. English) Character Set.
Property(S): SqlSortId034 = Dictionary order, case-insensitive, accent-insensitive, for use with the 437 (U.S. English) Character Set.
Property(S): SqlSortId035 = Binary order based on code point comparison, for use with the 437 (U.S. English) Character Set.
Property(S): SqlSortId040 = Binary order, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId041 = Dictionary order, case-sensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId042 = Dictionary order, case-insensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId043 = Dictionary order, case-insensitive, uppercase preference, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId044 = Dictionary order, case-insensitive, accent-insensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId045 = Binary order based on code point comparison, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId049 = Strict compatibility with version 1.x case-insensitive databases, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId051 = Dictionary order, case-sensitive, for use with 1252 Character Set.
Property(S): SqlSortId052 = Dictionary order, case-insensitive, for use with 1252 Character Set.
Property(S): SqlSortId053 = Dictionary order, case-insensitive, uppercase preference, for use with 1252 Character Set.
Property(S): SqlSortId054 = Dictionary order, case-insensitive, accent-insensitive, for use with 1252 Character Set.
Property(S): SqlSortId055 = Alternate dictionary order, case-sensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId056 = Alternate dictionary order, case-insensitive, uppercase preference, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId057 = Alternate dictionary order, case-insensitive, accent-insensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId058 = Scandinavian dictionary order, case-insensitive, uppercase preference, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId059 = Scandinavian dictionary order, case-sensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId060 = Scandinavian dictionary order, case-insensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId061 = Alternate dictionary order, case-insensitive, for use with the 850 (Multilingual) Character Set.
Property(S): SqlSortId081 = Dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId082 = Dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId083 = Czech dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId084 = Czech dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId085 = Hungarian dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId086 = Hungarian dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId087 = Polish dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId088 = Polish dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId089 = Romanian dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId090 = Romanian dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId091 = Croatian dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId092 = Croatian dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId093 = Slovak dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId094 = Slovak dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId095 = Slovenian dictionary order, case-sensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId096 = Slovenian dictionary order, case-insensitive, for use with the 1250 (Central European) Character Set.
Property(S): SqlSortId105 = Dictionary order, case-sensitive, for use with the 1251 (Cyrillic) Character Set.
Property(S): SqlSortId106 = Dictionary order, case-insensitive, for use with the 1251 (Cyrillic) Character Set.
Property(S): SqlSortId107 = Ukrainian dictionary order, case-sensitive, for use with the 1251 (Cyrillic) Character Set.
Property(S): SqlSortId108 = Ukrainian dictionary order, case-insensitive, for use with the 1251 (Cyrillic) Character Set.
Property(S): SqlSortId113 = Dictionary order, case-sensitive, for use with the 1253 (Greek) Character Set.
Property(S): SqlSortId114 = Dictionary order, case-insensitive, for use with the 1253 (Greek) Character Set.
Property(S): SqlSortId120 = Mixed dictionary order, for use with the 1253 (Greek) Character Set.
Property(S): SqlSortId121 = Dictionary order, case-sensitive, accent-sensitive, for use with the 1253 (Greek) Character Set.
Property(S): SqlSortId122 = Dictionary order, case-sensitive, accent-sensitive, for use with the 1253 (Greek) Character Set.
Property(S): SqlSortId124 = Dictionary order, case-insensitive, accent-insensitive, for use with the 1253 (Greek) Character Set.
Property(S): SqlSortId129 = Dictionary order, case-sensitive, for use with the 1254 (Turkish) Character Set.
Property(S): SqlSortId130 = Dictionary order, case-insensitive, for use with the 1254 (Turkish) Character Set.
Property(S): SqlSortId137 = Dictionary order, case-sensitive, for use with the 1255 (Hebrew) Character Set.
Property(S): SqlSortId138 = Dictionary order, case-insensitive, for use with the 1255 (Hebrew) Character Set.
Property(S): SqlSortId145 = Dictionary order, case-sensitive, for use with the 1256 (Arabic) Character Set.
Property(S): SqlSortId146 = Dictionary order, case-insensitive, for use with the 1256 (Arabic) Character Set.
Property(S): SqlSortId153 = Dictionary order, case-sensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId154 = Dictionary order, case-insensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId155 = Estonian dictionary order, case-sensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId156 = Estonian dictionary order, case-insensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId157 = Latvian dictionary order, case-sensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId158 = Latvian dictionary order, case-insensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId159 = Lithuanian dictionary order, case-sensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId160 = Lithuanian dictionary order, case-insensitive, for use with the 1257 (Baltic) Character Set.
Property(S): SqlSortId183 = Danish/Norwegian dictionary order, case-insensitive, uppercase preference, for use with 1252 Character Set.
Property(S): SqlSortId184 = Swedish/Finnish (Phone) dictionary order, case-insensitive, uppercase preference, for use with 1252 Character Set.
Property(S): SqlSortId185 = Swedish/Finnish (Standard) dictionary order, case-insensitive, uppercase preference, for use with 1252 Character Set.
Property(S): SqlSortId186 = Icelandic dictionary order, case-insensitive, uppercase preference, for use with 1252 Character Set.
Property(S): UpgradeCode = {12EEFC9F-91FB-490B-B00B-7164C31C1650}
Property(S): SqlPackageId = 1
Property(S): ProductName = Microsoft SQL Server 2005 (64-bit)
Property(S): ProductNameSetup = Microsoft SQL Server 2005 (64-bit) Setup
Property(S): RemoveFeatureList = SQL_Engine,SQL_Data_Files,SQL_Replication,SQL_FullText,SQL_SharedTools,SQL_BC_DEP
Property(S): StartupFolder = C:\Documents and Settings\All Users\Start Menu\Programs\Startup\
Property(S): ProgramMenuFolder = C:\Documents and Settings\All Users\Start Menu\Programs\
Property(S): StartMenuFolder = C:\Documents and Settings\All Users\Start Menu\
Property(S): DesktopFolder = C:\Documents and Settings\All Users\Desktop\
Property(S): FontsFolder = C:\WINDOWS\Fonts\
Property(S): UserLanguageID = 1033
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): MsiAMD64 = 15
Property(S): Msix64 = 15
Property(S): Intel = 15
Property(S): PhysicalMemory = 6079
Property(S): VirtualMemory = 6216
Property(S): AdminUser = 1
Property(S): LogonUser = administrator
Property(S): UserSID = S-1-5-21-4202179160-2696463246-181847795-500
Property(S): PATCHNEWPACKAGECODE = {3EF830B2-F925-4C8A-9967-02BD5E4F8981}
Property(S): PATCHNEWSUMMARYSUBJECT = Microsoft SQL Server Engine
Property(S): PATCHNEWSUMMARYCOMMENTS = Microsoft SQL Server Database Engine
Property(S): ScreenX = 1024
Property(S): CaptionHeight = 19
Property(S): BorderTop = 1
Property(S): MSPSRC234D7159D1F94F8B9230378FD7DA6BC0 = C:\WINDOWS\Installer\11320b1.msp
Property(S): VersionDatabase = 150
Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
Property(S): ProgramFiles64Folder.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B = C:\Program Files\
Property(S): QUERYTYPE = PATCHFILELIST
Property(S): ModuleID_SQLBASE = 3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B
Property(S): InstanceName.3EA9D9BF_D9D2_4023_B2A7_9E2137B2FB1B = MSSQLSERVER
Property(S): ProgramMenuFolder.ConfigurationTools1033 = C:\Documents and Settings\All Users\Start Menu\Programs\
Property(S): DW20PATH_CPUTYPE64 = 64
Property(S): DW20PATH_CPUTYPEX86 = X86
Property(S): WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.844EFBA7_1C24_93B2_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.8731EA9C_B0D8_8F16_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.608113E0_F3B6_C6EE_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.51B6FD4C_6551_1104_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.4F6D20F0_CCE5_1492_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.543B9DD3_E71B_0D13_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): WindowsFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.BDF6E439_056A_10D7_FF1F_C8B3B9A1E18E = C:\WINDOWS\SysWOW64\
Property(S): ServicePrefixRS.9754C2F0_FC41_4ADF_9C17_1D45EA972478 = SQLServer2005ReportServerUser$DTPOCHQ$
Property(S): ServicePrefixSSIS.9754C2F0_FC41_4ADF_9C17_1D45EA972478 = SQLServer2005DTSUser$DTPOCHQ
Property(S): ServicePrefixRS.6080319C_1466_426E_9E7A_1DD555143E0A = SQLServer2005ReportServerUser$DTPOCHQ$
Property(S): ServicePrefixSSIS.6080319C_1466_426E_9E7A_1DD555143E0A = SQLServer2005DTSUser$DTPOCHQ
Property(S): ComputerName = DTPOCHQ
Property(S): System64Folder.1C95762F_0C32_4EB1_98BC_93BF309401A1 = C:\WINDOWS\system32\
Property(S): SystemFolder.60A85CA1_D9D8_43FA_9DD5_574BEF970F9F = C:\WINDOWS\SysWOW64\
Property(S): ModuleID_SQLBRWS = 2FC2D269_8625_4826_BB3F_F9059090CB38
Property(S): IsListenerActive.2FC2D269_8625_4826_BB3F_F9059090CB38 = No
Property(S): ServiceGroupSQLBrowser.2FC2D269_8625_4826_BB3F_F9059090CB38 = SQLServer2005SQLBrowserUser$DTPOCHQ
Property(S): ServiceGroupSQLBrowser.03BE59F9_3DFA_413B_A99C_B95CA31A7BFE = SQLServer2005SQLBrowserUser$DTPOCHQ
Property(S): ServiceGroupSQLBrowser.879C8BDB_884A_4C3C_80C3_3452EA2B8439 = SQLServer2005SQLBrowserUser$DTPOCHQ
Property(S): CommonFiles64Folder.663228C2_415C_4E0C_8889_57D61E295126 = C:\Program Files\Common Files\
Property(S): CommonFilesFolder.1887A514_D285_4653_98A1_6B7128517683 = C:\Program Files (x86)\Common Files\
Property(S): ModuleID_SQL_msmdlocal = DFD11762_2D29_4D77_B888_9E2D50D43136
Property(S): ModuleID_SQLBRWS2 = 155D5DFD_B9E7_4CB8_A2EE_8E0E8C9FBFE9
Property(S): CommonFiles64Folder.94D398F8_566F_41D7_97E4_57CB30A4BBFC = C:\Program Files\Common Files\
Property(S): ServiceGroupADHelper.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 = SQLServer2005MSSQLServerADHelperUser$DTPOCHQ
Property(S): InstanceRegKey.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 = Microsoft SQL Server\MSSQL.1
Property(S): ModuleID_UPGRADE = 43B382ED_FDC0_470B_8189_A8CEE9BFA9C3
Property(S): Sql2kPath = NoRemove
Property(S): Sql2kPathSlash = NoRemove
Property(S): ModuleID_UPGRADE2 = C3B74BC0_213D_47E9_9254_9500AB0AC647
Property(S): ProgramFiles64Folder.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = C:\Program Files\
Property(S): DataInstanceTxt.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL
Property(S): SYSADMINONLY.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = #1
Property(S): JOBHISTORYMAXROWSPERJOB.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = #100
Property(S): DOWNLOADEDMAXROWS.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = #100
Property(S): ERRORLOGGINGLEVEL.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = #3
Property(S): JOBHISTORYMAXROWS.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = #1000
Property(S): NONALERTABLEERRORS.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = 1204,4002
Property(S): RESTARTSERVER.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = #1
Property(S): ServiceNameSQL.96E1321F_B7D1_4051_BEF1_FE74AC590F64 = MSSQLSERVER
Property(S): PrevRegRootPath = Software\Microsoft\Microsoft SQL Server\MSSQL.1
Property(S): System64Folder.6340BF09_CE4D_49E9_9CDF_B9C671FC2E9C = C:\WINDOWS\system32\
Property(S): SystemFolder.7F92F353_B3A2_4AE0_A288_5B746146B1B8 = C:\WINDOWS\SysWOW64\
Property(S): ModuleID_SQLSVR = B2156BC9_6CE8_422F_A957_E99A65256B1D
Property(S): SqlLoginMode = #2
Property(S): Resume.B2156BC9_6CE8_422F_A957_E99A65256B1D = #0
Property(S): FirstStartValue.B2156BC9_6CE8_422F_A957_E99A65256B1D = #0
Property(S): MAP2.B2156BC9_6CE8_422F_A957_E99A65256B1D = -
Property(S): MAP3.B2156BC9_6CE8_422F_A957_E99A65256B1D = \
Property(S): TAPELOADWAITTIME.B2156BC9_6CE8_422F_A957_E99A65256B1D = #4294967295
Property(S): DEFAULTLOGIN.B2156BC9_6CE8_422F_A957_E99A65256B1D = guest
Property(S): AUDITLEVEL.B2156BC9_6CE8_422F_A957_E99A65256B1D = #2
Property(S): SETHOSTNAME.B2156BC9_6CE8_422F_A957_E99A65256B1D = #0
Property(S): PADSDSOOBJECTA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): ALLOWINPROCESS.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): DB2OLEDBA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): MSDAORAA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): MSDASQLA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): MSIDXSA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): MSQLIMPPROVA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): MSSEARCHSQLA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): OLEDBA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): SQLNCLIA.B2156BC9_6CE8_422F_A957_E99A65256B1D = #1
Property(S): SQLNCLID.B2156BC9_6CE8_422F_A957_E99A65256B1D = #0
Property(S): SqlBuiltInAccountMask = 3
Property(S): System64Folder.18229817_4DF8_46F2_9382_E3F8FA0A2E4C = C:\WINDOWS\system32\
Property(S): SystemFolder.7188DA12_A95E_46B7_8623_9D93B5260E2A = C:\WINDOWS\SysWOW64\
Property(S): System64Folder.E404BFC4_105E_4D01_9B3B_56E62C596549 = C:\WINDOWS\system32\
Property(S): ReleaseProductVersion = 9.00.2047.00
Property(S): SpLevel = 1
Property(S): SimpleFeature_Feat6_Expr = &Workstation components and development tools
Property(S): AdministratorsGroup = BUILTIN\Administrators
Property(S): UsersGroup = BUILTIN\Users
Property(S): ModuleID_SYSDB2 = 87A24044_BA5C_47E5_B5EB_5F91BF18D10F
Property(S): TempFolder = C:\DOCUME~1\ADMINI~1.DTP\LOCALS~1\Temp\
Property(S): CommonFiles64Folder.EEF25944_9E21_44B1_8255_2220E15561E8 = C:\Program Files\Common Files\
Property(S): WindowsFolder = C:\WINDOWS\
Property(S): ModuleID_FTSSV = 68C6D1F2_77E0_11D5_8528_00C04F68155C
Property(S): FTEInstName.68C6D1F2_77E0_11D5_8528_00C04F68155C = MSSQLSERVER
Property(S): FTERudeInstName.68C6D1F2_77E0_11D5_8528_00C04F68155C = MSSQLSERVER
Property(S): FTERegRoot.68C6D1F2_77E0_11D5_8528_00C04F68155C = Software\Microsoft\MSSQLSERVER\MSSearch
Property(S): ProgramFiles64Folder.68C6D1F2_77E0_11D5_8528_00C04F68155C = C:\Program Files\
Property(S): FTERegInstName.68C6D1F2_77E0_11D5_8528_00C04F68155C = MSSQLSERVER
Property(S): FTERegRudeInstName.68C6D1F2_77E0_11D5_8528_00C04F68155C = MSSQLSERVER
Property(S): FTEUPGRADE.68C6D1F2_77E0_11D5_8528_00C04F68155C = 0
Property(S): FTEUpgrade30.68C6D1F2_77E0_11D5_8528_00C04F68155C = 0
Property(S): FTEUpgradeMSSearchApp.68C6D1F2_77E0_11D5_8528_00C04F68155C = SQLServer
Property(S): FTEUpgradeMSSearchStandalone.68C6D1F2_77E0_11D5_8528_00C04F68155C = 0
Property(S): AdminToolsFolder = C:\Documents and Settings\All Users\Start Menu\Programs\Administrative Tools\
Property(S): MyPicturesFolder = C:\Documents and Settings\Administrator.DTPOCHQ\My Documents\My Pictures\
Property(S): LocalAppDataFolder = C:\Documents and Settings\Administrator.DTPOCHQ\Local Settings\Application Data\
Property(S): CommonAppDataFolder = C:\Documents and Settings\All Users\Application Data\
Property(S): TemplateFolder = C:\Documents and Settings\All Users\Templates\
Property(S): SendToFolder = C:\Documents and Settings\Administrator.DTPOCHQ\SendTo\
Property(S): RecentFolder = C:\Documents and Settings\Administrator.DTPOCHQ\Recent\
Property(S): PrintHoodFolder = C:\Documents and Settings\Administrator.DTPOCHQ\PrintHood\
Property(S): PersonalFolder = C:\Documents and Settings\Administrator.DTPOCHQ\My Documents\
Property(S): NetHoodFolder = C:\Documents and Settings\Administrator.DTPOCHQ\NetHood\
Property(S): QuotedServiceGroupADHelper.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 = POC\SQLServer2005MSSQLServerADHelperUser$DTPOCHQ
Property(S): FavoritesFolder = C:\Documents and Settings\Administrator.DTPOCHQ\Favorites\
Property(S): QuotedServiceGroupSQLBrowser.879C8BDB_884A_4C3C_80C3_3452EA2B8439 = POC\SQLServer2005SQLBrowserUser$DTPOCHQ
Property(S): QuotedServiceGroupSQLBrowser.03BE59F9_3DFA_413B_A99C_B95CA31A7BFE = POC\SQLServer2005SQLBrowserUser$DTPOCHQ
Property(S): AppDataFolder = C:\Documents and Settings\Administrator.DTPOCHQ\Application Data\
Property(S): QuotedServiceGroupSQLBrowser.2FC2D269_8625_4826_BB3F_F9059090CB38 = POC\SQLServer2005SQLBrowserUser$DTPOCHQ
Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
Property(S): InstId = MSSQL.1
Property(S): RemoteAdminTS = 1
Property(S): PreviousInstId = MSSQL.1
Property(S): SqlLegacyRegPath = MSSQLServer
Property(S): SystemFolder = C:\WINDOWS\SysWOW64\
Property(S): RSSqlPoolLimit = 150
Property(S): System64Folder = C:\WINDOWS\system32\
Property(S): RSGUIDVALUE = {c866ae60-85ca-4d2c-8973-a89bbbb0ad24}
Property(S): RSPREREQUISITECHECKED = 1
Property(S): WindowsVolume = C:\
Property(S): SqlCOMPlusInstalled = 1
Property(S): SqlASPNETInstalled = 1
Property(S): MsiNTSuiteEnterprise = 1
Property(S): MsiNTProductType = 2
Property(S): SqlDefaultWebSite = /W3SVC/1
Property(S): ServicePackLevelMinor = 0
Property(S): SqlIISInstalled = 1
Property(S): ServicePackLevel = 1
Property(S): IISCHECKED = 1
Property(S): WindowsBuild = 3790
Property(S): SCMLocalServiceAccount = NT AUTHORITY\LocalService
Property(S): VersionNT64 = 502
Property(S): VersionMsi = 3.01
Property(S): SCMNetworkServiceAccount = NT AUTHORITY\NetworkService
Property(S): PerformanceLogUsersGroup = BUILTIN\Performance Log Users
Property(S): PRODUCTLANGUAGE = 1033
Property(S): PerformanceMontiorUsersGroup = BUILTIN\Performance Monitor Users
Property(S): MSIINSTANCEGUID = {79F1B65E-8FC0-4D03-954D-F9E71C85AEC7}
Property(S): SECURITYMODE = SQL
Property(S): INSTANCENAME = MSSQLSERVER
Property(S): CLIENTPROCESSID = 5912
Property(S): QuotedComputerName = DTPOCHQ
Property(S): QuotedDefaultDomain = POC
Property(S): CLIENTUILEVEL = 3
Property(S): DefaultDomain = POC
Property(S): CURRENTDIRECTORY = e:\fcbfc64b194f985c25d4251ed3
Property(S): QUERYOUTPUT = C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.out
Property(S): QUERYMODE = 1
Property(S): REBOOT = ReallySuppress
Property(S): KBNUMBER = KB913090
Property(S): SQLBUILD = 2047
Property(S): REINSTALLMODE = omus
Property(S): ACTION = INSTALL
Property(S): Preselected = 1
Property(S): REINSTALL = All
Property(S): QFEUpgrade = 2
Property(S): PATCH = \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp
Property(S): UILevel = 2
Property(S): OriginalDatabase = C:\WINDOWS\Installer\47ff54.msi
Property(S): DATABASE = C:\WINDOWS\Installer\47ff54.msi
Property(S): ProductToBeRegistered = 1
Property(S): ProductState = 5
Property(S): USERNAME = value customer
Property(S): SqlOriginalMachineName = DTPOCHQ
Property(S): TRANSFORMS = :SqlRun01.mst;:InstID01.mst;:InstName01.mst
Property(S): Privileged = 1
Property(S): RedirectedDllSupport = 2
Property(S): PackageCode = {F00423DA-5642-4A55-8B9E-D06B9F8EE637}
Property(S): MsiWin32AssemblySupport = 5.2.3790.1830
Property(S): MsiNetAssemblySupport = 2.0.50727.42
Property(S): Date = 4/19/2006
Property(S): Time = 23:51:28
Property(S): TTCSupport = 1
Property(S): ColorBits = 32
Property(S): TextHeight = 16
Property(S): SystemLanguageID = 1033
Property(S): BorderSide = 1
Property(S): SQL200564Hotfix2047 = \\DTPOCHQ\e$\fcbfc64b194f985c25d4251ed3\HotFixSQL\Files\sqlrun_sql.msp
MSI (s) (18:38) [23:51:28:828]: Product: Microsoft SQL Server 2005 (64-bit) - Update 'Service Pack 1 for SQL Server Database Services 2005 (64-bit) ENU (KB913090)' could not be installed. Error code 1603. Additional information is available in the log file C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.log.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 1729
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Transforming table Error.

MSI (s) (18:38) [23:51:28:828]: Note: 1: 2262 2: Error 3: -2147287038
MSI (s) (18:38) [23:51:28:828]: Product: Microsoft SQL Server 2005 (64-bit) -- Configuration failed.

MSI (s) (18:38) [23:51:28:828]: Attempting to delete file C:\WINDOWS\Installer\11320b1.msp
MSI (s) (18:38) [23:51:28:828]: Unable to delete the file. LastError = 32
MSI (s) (18:38) [23:51:28:843]: Cleaning up uninstalled install packages, if any exist
MSI (s) (18:38) [23:51:28:843]: MainEngineThread is returning 1603
MSI (s) (18:EC) [23:51:28:843]: Destroying RemoteAPI object.
MSI (s) (18:5C) [23:51:28:843]: Custom Action Manager thread ending.
=== Logging stopped: 4/19/2006 23:51:28 ===
MSI (c) (18:D0) [23:51:28:843]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (c) (18:D0) [23:51:28:843]: MainEngineThread is returning 1603
=== Verbose logging stopped: 4/19/2006 23:51:28 ===

|||

Thanks Alvin, we are looking into it now. Are you trying to upgrade from a previous SP1 build or are you applying this to a fresh RTM install?

Thanks for the info.

Samuel Lester (MSFT)

|||

It is a fresh install. All the other components were upgraded. Database and Analysis Services are failing

Thanks

|||

Hello!

We are also having this issue (same KB913090 aborts during the Database Engine update). The rest of the update actually does complete (including Analysis Services) successfully.

This is a freshly installed Windows Server 2003 SP1 machine. However, the SQL 2005 Standard Edition was an upgrade from a SQL 2000 SP3a Standard install (had to do it this way for one of our applications).

Any progress on this issue? I can provide logs, etc if you can tell me which are needed. Want to get to SP1 for the database mirroring functionality (our reason for upgrading to 2005).

Thanks,

-Craig

|||

Craig, since it failed during Database Engine, can you share out (or attach) the %WINDIR%\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.log?

Thanks,
Samuel Lester (MSFT)

|||

File location e-mailed to you.

|||

It is asking for credentials to log in. If you want, you can send me login credentials to samles at microsoft dot com. I'll get the files now and let you know when I'm done and then report back to this post with the discovery.

Thanks,
Samuel Lester (MSFT)

|||

Hey Sam,

I can send you more logs if you like. DB Mirroring is my main reason to upgrade.

Thanks

|||

The error that Craig is hitting is:

MSI (s) (7C!4C) [09:34:59:010]: Product: Microsoft SQL Server 2005 -- Error 29506. SQL Server Setup failed to modify security permissions on file C:\Program Files\Microsoft SQL Server\MSSQL\Data\ for user Administrator. To proceed, verify that the account and domain running SQL Server Setup exist, that the account running SQL Server Setup has administrator privileges, and that exists on the destination drive.

This is a known issue. The problem is that there exists a file in this Data directory that the user running SP1 does not have permissions to modify. The workaround is to figure out which file this is (typically a user created DB) and to temporarily assign permission to that file(s). You can revert back to the intended permissions after running SP1.

Let me know if you have any problems with the workaround.

Thanks,
Samuel Lester (MSFT)

|||

Alvin, unfortunately your issue is a different one. Your log contains the following snippet:

Using PrevRegRootPath: Software\Microsoft\Microsoft SQL Server\MSSQL.1
GetServiceUserGroup failed for MSSQLSERVER, 5
Error Code: 0x80070534 (1332)
Windows Error Text: No mapping between account names and security IDs was done.

We are currently investigating this issue, but my guess is that after RTM, someone deleted the user groups that were created during install. SQL setup creates several user groups that are used during setup. It appears that SP1 is also looking to use these and they no longer exist. The user groups are named in this fashion: SQLServer2005MSSQLUser$<MachineName>$<InstanceName>

I will try to work with the dev(s) to get a workaround for this. My guess would be that you delete the SID association in the registry, rerun RTM setup in repair mode (to create the groups and associations again), and then apply SP1. This is definitely something you'd want to try on your test box first. :) I will try to run a repro here to see if I can confirm my hunch.

Thanks,
Samuel Lester (MSFT)