Membership Database Installation SQL Express

Jun 3, 2006

 

 

I am trying to run one SQL Express database for two separate applications that will also use the Membership framework. My database is set up fine and works between both applications 100% as needed with the exception of Membership which I am fairly new to.

 

From my understanding given the following link

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/PAGHT000022.asp

I need to install membership on the database. So I did the following

 


 (allow remote connections with TCIP/IP and named pipes)

Started SQL and even re-booted

Ran: aspnet_regsql.exe -E -S localhost -A m

I even tried to run it by replacing localhost with MSSQL$SQLEXPRESS

 

All attempts gave me an error saying it could not connect and most likely because remote connections is disabled.

 

I think the reason for all this is because I don’t actually have the “real� IIS installed but rather I am using the instantiated version that automatically comes up when starting a ASP.NET 2.0 application.

 

I am assuming I need to set everything up such that I am using the real IIS rather then the default one in visual studio.

 

Is this correct? Or do I have something else?

View 2 Replies


ADVERTISEMENT

Setting Up The SQL Express Membership

Aug 10, 2007

Hi,
 I am running a project that has a custom membership flow.
I need to use the local SQL Express Membership instead.
In orderer to achieve this, I have added the following lines in my web.config:
in the membership section:
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" passwordAttemptWindow="10" passwordStrengthRegularExpression="" />
 in the connectionStrings section:<add name="LocalSqlServer" connectionString="data source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" />
 
Problem :
When I am opening ASP.NET Configuration > Security
I have the following error message:
There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insufficient permission. It can also be caused by the role manager feature not being enabled. Click the button below to be redirected to a page where you can choose a new data store.
The following message may help in diagnosing the problem: Object reference not set to an instance of an object.
 
Any idea how I could fix this?

View 5 Replies View Related

Running Membership Query Using SQL Express In Visual Studio

Mar 11, 2008

I am used to run SQL server 2005 RDBMS with Visual studio 205 for development. recently, i wanted to try it with the inbuilt sql server express and being able to run the membership query / membership functionality. the proble is that i couldn't run the query using 'aspnet_regsql' from command prompt. It always throw error. please, can anybody help me out. Any suggestion will be highly appreciated and welcome.  Kayode Banjo 

View 2 Replies View Related

Express Installation Fails With Invalid Installation Package

May 3, 2006

I get an error when trying to install the SQL Native Client. It
says it cannot find the installation package and to use a valid copy of
'sqlncli.msi'. I've downloaded the Express setup twice and get
the same error from both of them.



I'm attempting this in a VMWare session setup for Windows 2K, Advanced
Server. I am trying to test my installation and setup
procedures. This is not a production setup, just install testing
and documentation. I have allocated only 272MB to the VMWare
session, which is why the system doesn't meet the recommended settings.



Any help would be greatly appreciated.



Below is the Summary.txt output file.



Microsoft SQL Server 2005 9.00.2047.00

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

OS Version : Microsoft Windows 2000 Advanced Server Service Pack 4 (Build 2195)

Time : Wed May 03 09:54:23 2006



CPCWIN2KVM1 : The current system does not meet recommended hardware
requirements for this SQL Server release. For detailed hardware
requirements, see the readme file or SQL Server Books Online.

Machine : CPCWIN2KVM1

Product : Microsoft SQL Server Setup Support Files (English)

Product Version : 9.00.2047.00

Install : Successful

Log File : c:Program
FilesMicrosoft SQL Server90Setup
BootstrapLOGFilesSQLSetup0003_CPCWIN2KVM1_SQLSupport_1.log

--------------------------------------------------------------------------------

Machine : CPCWIN2KVM1

Product : SQL Native Client

Error : An
installation package for the product Microsoft SQL Server Native Client
cannot be found. Try the installation again using a valid copy of the
installation package 'sqlncli.msi'.

--------------------------------------------------------------------------------

Machine : CPCWIN2KVM1

Product : Microsoft SQL Server Native Client

Product Version : 9.00.2047.00

Install : Failed

Log File : c:Program
FilesMicrosoft SQL Server90Setup
BootstrapLOGFilesSQLSetup0003_CPCWIN2KVM1_SQLNCLI_1.log

Last Action : InstallFinalize

Error String : An installation package for the
product Microsoft SQL Server Native Client cannot be found. Try the
installation again using a valid copy of the installation package
'sqlncli.msi'.

Error Number : 1706

--------------------------------------------------------------------------------

Machine : CPCWIN2KVM1

Product : Microsoft SQL Server VSS Writer

Product Version : 9.00.2047.00

Install : Successful

Log File : c:Program
FilesMicrosoft SQL Server90Setup
BootstrapLOGFilesSQLSetup0003_CPCWIN2KVM1_SqlWriter_1.log

--------------------------------------------------------------------------------

Machine : CPCWIN2KVM1

Product : MSXML 6.0 Parser

Product Version : 6.00.3883.8

Install : Successful

Log File : c:Program
FilesMicrosoft SQL Server90Setup
BootstrapLOGFilesSQLSetup0003_CPCWIN2KVM1_MSXML6_1.log

--------------------------------------------------------------------------------

View 4 Replies View Related

Membership Database

Feb 20, 2007

Hi all,
First ASP.NET project - please be gentle !
OK. Ready to add personalisation and membership. I have VS2005 Professional, including SQL Server 2005 developer, but I understand that VS2005 defaults to creating a local SQL Express file in the App_Data directory and that suits me just fine for now. Unfortunately I can't get VS to create it for me and the ASP.NET Configuration tool complains it can't connect to the database.
First, some REALLY dumb questions to show how little I really know ...

if the application is using a SQL Express file, does the SQL Server 2005 process need to be started in order to access the local database file (or does it just get opened like an access database)
does the Broswer process need to be started - this is all just running on my local machine
when I finally publish this site on my hosted service I could do with understanding what will need to be done to get THAT database accessed ... maybe cross that bridge later
I can go to the VS command prompt and run aspnet_regsql.exe in wizard mode. Going through the steps on that I could give it my SQL Server 2005 server name (after I start it) but that's not what I'm trying to do. I just want it to create and connect to a local file in the App_Data.
machine.config shows ...
  <connectionStrings>    <add name="LocalSqlServer" connectionString="data source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" />    <!-- <add name="LocalSql2005" connectionString="Data Source=MICKSPCSSLMJ;Initial Catalog=aspnetdb;Integrated Security=True"     providerName="System.Data.SqlClient" />     -->  </connectionStrings> 
The commented connection string I used to temporarily prove that I could access SQL2005. It's no longer used and I've put the other references back to "LocalSqlServer" as below ... <membership>
<providers>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression="" />
</providers>
</membership>
<profile>
<providers>
<add name="AspNetSqlProfileProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</profile>
<roleManager>
<providers>
<add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer"
applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add name="AspNetWindowsTokenRoleProvider" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</roleManager>The profile provider is clearly pointing to "LocalSqlServer" which in turn points to : connectionString="data source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
What am I missing please ?

View 3 Replies View Related

ASP.NET Membership Database

Jun 9, 2008

Hello, I have an ASP.NET Membership Database that exists on a remote server.  I have been using this database as I developed my ASP.NET 2.0 application locally.  When I attempted to promote my ASP.NET 2.0 application to production, I am unable to connect to that same remote database.  Oddly, there is another database on that same remote server that I can access from my ASP.NET application in both development and production.
Can anyone explain to me what could cause this?
 Thank you!

View 3 Replies View Related

Membership Database

Dec 29, 2004

I need to create a membership database that includes levels and premiums for each level. Can anyone offer any examples of how this should be done? What tables I would need and how they would be related to each other?

Thank you for any suggestions,

View 3 Replies View Related

Database Permissions To Use Membership

Jan 22, 2008

I recently transfered my web app to my Windows 2003 server and am having difficulty getting the system to allow me to login.I am using MS SQL Express 2005 and the SQL Express Manager.I have a user/password setup with SQL Authentication.  It appears that I am connecting okay, but I am unable to login to the site.  I have tried three different accounts with no luck.  I know I am using the correct passwords.What permissions do I have to grant my database user to allow me to login to my site?As I am new to SQL Express and the manager, a more specific reply would be very helpful.Thank you,Joshua Foulk 

View 1 Replies View Related

Database Role Membership

Dec 12, 2007

Hi,

I am using SQL server 2000 and when I look in the database role membership I have SuperUser as a role.

Can I have the definition of SuperUser?

View 1 Replies View Related

Sql Server Membership Accounts And Another Database.

Jan 17, 2007

Hi,  I hope this is in the correct category. I have two .mdf files. aspnetdb.mdf and emotiveonline.mdf. My host provider can only give me one database in sql server express 2005. Now I am no genius when it comes to programming and that kind of stuff but those two mdf files would be seen as 2 databases right?  What I would like to know is that if I can but everything into one mdf file and how would i go about doing that. My website is almost finished and just thought about this now. Would like to do the changes as soon as possible so that I won't sit with a humongous problem later on.  Thank you in advance. Kind regards,Ruan Rossouw

View 2 Replies View Related

Importing Users Into Membership Database

Apr 25, 2007

Hi, i have a new site built in .net using the login/membership system. i have a legacy database (access) of users from the previous site with email, name, password, etc.Is it possible to import this data straight into my new membership tables through some insert statement, software or through some other way? 

View 1 Replies View Related

Membership Database Question (Under A Deadline - Please Respond Soon!)

Aug 23, 2007

 So I can't quite understand what's going on here... I've watched the video tutorial on ASP.NET about creating and securing my site using Membership (configuring roles and users), and I noticed that it creates a database in my App_Data folder (ASPNETDB, I think it's called).  And I've got all that working on my local machine, but I'm confused as to how to move it to my server.My hosting provider is M6.net, and they've told me that if I want to upload a database to their server, I have to create it using my admin panel, then upload the file and they'll fill it in for me.  My question is this: if I give them the database that's automatically created when I use login controls on my website LOCALLY, will that database still provide the correct membership functionality for my website when it's run from the web server?  Such that I can give them (M6) the ASPNETDB (containing all the usernames/passwords/rules? I've already specified for my local site), have them populate the similarly titled database on the server, and have it still work with my pages?I'm also confused as to why that database doesn't have a connection string specified in the web.config file...can anyone shed some light on that?As I have no direct access to the database server on my hosting provider, I need to create the membership database with all the correct details prior to uploading it to my server - if simply using the locally generated copy won't work, what should I do?Lastly, the video tutorial says to go to the ASP.NET Configuration page to manage users, roles, security settings, etc., but I don't seem to have access to that through M6.  Instead, I have access to a FrontPage configuration page that is strikingly similar in content to that ASP.NET Configuration page featured in the video, in that it also allows user and role management capability - is this the same thing under a different guise?  

View 3 Replies View Related

Deploying A Database Witch Uses The Membership Tables

Jan 15, 2006

I have a website that uses an SQL 2005 Express database, with the added aspnet_users, aspnet_roles tables etc'  inside it.
(That is not an .mdf file, but in the databse itself)

Are there any guidelines for moving this kind of database to the deployment server, which also has SQL Express ?

Is it just a case of  detach + attach ?

View 1 Replies View Related

Store Membership Information Using Access .mdb Database

Aug 1, 2007

Hello,
I'm trying to create a web page that is protected by a user login. I want the user data to be stored in an access database file and not an SQL Server express database.

I was following this guide on msdn:
http://msdn2.microsoft.com/en-us/library/879kf95c(VS.80).aspx

However, I was doing everything locally using a file system and not IIS. (Which seemed to work fine)

My main problem is that I cannot get the membership information stored in an access database. The only provider option was one for the SQL server express. I think I will have to make a custom provider? However, I read through some of that documentation and was equally confused. ( http://msdn2.microsoft.com/en-us/library/Aa479031.aspx )

Anyone have a solution?


View 7 Replies View Related

Using Membership UserId Guids With SqlParameters (Membership UserId Guid)

May 7, 2008

In my site, when a user registers, I need to create rows in additional tables besides aspnet_Users. So, I need to be able to pass the generated userId guid to subsequent SqlCommands. I'm having a terrible time with this. What's the correct way to set up a SqlParameter so that it will accept a guid? I keep getting this error: "Conversion failed when converting from a character string to uniqueidentifier."
I've tried creating the parameter both with and without a SqlDbType.
cmd.Parameters.AddWithValue(paramName, guid);
and
SqlParameter p = new SqlParameter(paramName);p.SqlDbType = SqlDbType.Guid;cmd.Parameters.Add(p);
and I get the same error either way.
Driving me nuts! Any help appreciated.

View 1 Replies View Related

SQl Express Installation

May 8, 2006

We are getting Error 1603 while installing SQL Express

View 1 Replies View Related

SQL Express Installation

Aug 5, 2007

I am trying to install SQL express on XP home and I am getting a message that my system does not meet the hardware and software requirements. I verified my system meets the requirements. The only thing I saw that I needed to download was MDAC 2.8SPI. I downloaded this after SQL express was downloaded, but I still receive the message. Any assistance would be greatly appreciated.
Michael

View 8 Replies View Related

New SQL Express Installation

Mar 17, 2006

I just installed SQL Express in my workstation but when I try to create and ODBC connection, the new server does not show in the drop down. Do you have any tips...? Thanks.

View 5 Replies View Related

Express Installation

Feb 6, 2007

Hi,

I have tried to install the SQL 2005 Server Express and get the following message:

Your operating system does not meet service pack level requiements for this SQL server release. Install the service pack.

Can anyone tell me what service pack it will be and where I can get it.

View 2 Replies View Related

SQL Express Installation Failure

Apr 11, 2008

I wanted to add SQL Express to my VS 2008 installation. When I installed VS, i didn't install SQL E, so popped in the disk and clicked modify install, checked SQL Express and next. it said it was successful but with errors. i check the error log and it said it didn't install it at all:[01/08/08,13:51:00] Microsoft .NET Framework 3.5: [2] Error code 1602 for this component means "User cancelled installation."[01/08/08,13:51:00] Microsoft .NET Framework 3.5: [2] Setup Failed on component Microsoft .NET Framework 3.5[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft .NET Framework 3.5 is not installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Document Explorer 2008 was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio Web Authoring Component was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2008 Professional Edition - ENU was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft .NET Compact Framework 2.0 SP2 was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft .NET Compact Framework 3.5 was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio Tools for the Microsoft Office system (version 3.0 Runtime) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office System Runtime was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 Design Tools was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 For Devices was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Windows Mobile 5.0 SDK R2 for Pocket PC was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Windows Mobile 5.0 SDK R2 for Smartphone was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Device Emulator version 3.0 was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2005 Express Edition (x86) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Crystal Reports Basic for Visual Studio 2008 was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Windows SDK for Visual Studio 2008 Tools (x86) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Windows SDK for Visual Studio 2008 Headers and Libraries (x86) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Windows SDK for Visual Studio 2008 Win32 Tools (x86) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Windows SDK for Visual Studio 2008 .NET Framework Tools (x86) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft Windows SDK for Visual Studio 2008 SDK Reference Assemblies and IntelliSense (x86) was not attempted to be installed.[01/08/08,13:51:01] VS70pgui: [2] DepCheck indicates Microsoft SQL Publishing Wizard was not attempted to be installed.***EndOfSession***[04/11/08,11:24:28] Microsoft SQL Server 2005 Express Edition (x86): [2] Component Microsoft SQL Server 2005 Express Edition (x86) returned an unexpected value.***EndOfSession***[04/11/08,11:24:28] Microsoft SQL Server 2005 Express Edition (x86): [2] Component Microsoft SQL Server 2005 Express Edition (x86) returned an unexpected value.[04/11/08,11:46:19] Microsoft SQL Server 2005 Express Edition (x86): [2] Component Microsoft SQL Server 2005 Express Edition (x86) returned an unexpected value.***EndOfSession***================= Here's the setup log: [01/08/08,13:49:38] Setup.exe: [01/08/08,13:49:38] Setup.exe: ========== Logging started ==========[01/08/08,13:49:38] Setup.exe: =====================================[01/08/08,13:49:38] Setup.exe: Command line: "C:[files]VS 2008 PROsetupsetup.exe" /LAUNCHER="C:DOCUME~1ryancLOCALS~1Temp" /HWND="263260" /NoExclude[01/08/08,13:49:39] Setup.exe: GetGlobalCustomProperty - Property: {481CEF9F-033A-11D3-ACE2-00C04F8EEBA1} - PropertyName: Disable Error Logging - Value: 0[01/08/08,13:49:39] Setup.exe: ISetupManager::LoadSetupLog() completed[01/08/08,13:49:39] Setup.exe: ISetupManager::RunIntro() : LoadManagers[01/08/08,13:49:39] Setup.exe: MoveLoadProgress()[01/08/08,13:49:39] Setup.exe: inside ISetupManager::LoadUIManager()[01/08/08,13:49:39] vs70uimgr: Entering InitializeModule() method.[01/08/08,13:49:39] Setup.exe: AddGlobalCustomProperty[01/08/08,13:49:39] Setup.exe: CSetupManager::CopyTempFiles() - Installing setup files...[01/08/08,13:49:39] Setup.exe: CSetupManager::InstallSetupFiles() starting[01/08/08,13:49:39] vs70uimgr: Entering ShowSmallProgress() method.[01/08/08,13:49:43] Setup.exe: CSetupManager::CopyTempFiles() - Successfuly copied files to temp; rerunning Setup...[01/08/08,13:49:46] Setup.exe: CSetupManager::CopyTempFiles() - Finished Rerunning Setup...[01/08/08,13:49:46] Setup.exe: UnloadSuiteComponents()[01/08/08,13:49:46] Setup.exe: GetGlobalCustomProperty - Property: {383F0141-C682-4665-A69B-756E719C968D} - PropertyName: Process Return Code - Value: [01/08/08,13:49:46] Setup.exe: SETUP EXIT CODE - 0[01/08/08,13:49:47] Setup.exe: [01/08/08,13:49:47] Setup.exe: ========== Logging started ==========[01/08/08,13:49:47] Setup.exe: =====================================[01/08/08,13:49:47] Setup.exe: Command line: "C:Documents and SettingsryancLocal SettingsTempSIT11328.tmpsetup.exe" /LAUNCHER="C:DOCUME~1ryancLOCALS~1Temp" /HWND="263260" /NoExclude /CreatedTemp /NoExclude /InstalledFrom "C:[files]VS 2008 PROsetup"[01/08/08,13:49:47] Setup.exe: GetGlobalCustomProperty - Property: {481CEF9F-033A-11D3-ACE2-00C04F8EEBA1} - PropertyName: Disable Error Logging - Value: 0[01/08/08,13:49:48] Setup.exe: ISetupManager::LoadSetupLog() completed[01/08/08,13:49:48] UTILS::RunNGENAction: Started[01/08/08,13:49:48] UTILS::RunNGENAction: starting "C:WINDOWSMicrosoft.NETFrameworkv2.0.50727gen.exe queue pause"[01/08/08,13:49:50] UTILS::RunNGENAction: ngen.exe returned 0[01/08/08,13:49:50] Setup.exe: ISetupManager::RunIntro() : LoadManagers[01/08/08,13:49:50] Setup.exe: MoveLoadProgress()[01/08/08,13:49:50] Setup.exe: inside ISetupManager::LoadDependencyMgr()[01/08/08,13:49:50] Setup.exe: inside ISetupManager::LoadCDInfoMgr()[01/08/08,13:49:50] Setup.exe: inside ISetupManager::LoadDiskInfoMgr()[01/08/08,13:49:50] Setup.exe: inside ISetupManager::LoadUIManager()[01/08/08,13:49:50] vs70uimgr: Entering InitializeModule() method.[01/08/08,13:49:50] Setup.exe: AddGlobalCustomProperty[01/08/08,13:49:50] Setup.exe: MoveLoadProgress()[01/08/08,13:49:50] Setup.exe: ISetupManager::RunIntro() : LoadDatabaseValues[01/08/08,13:49:50] Setup.exe: MoveLoadProgress()[01/08/08,13:49:51] MSITOSIT: Attempting to pre-load file: C:WINDOWSsystem32msimsg.dll[01/08/08,13:49:51] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:49:51] Setup.exe: GetGlobalCustomProperty - Property: {E0875D42-A33D-4C64-81C9-167795F29CA4} - PropertyName: PathFromCartmanToRoot - Value: ..[01/08/08,13:49:51] Setup.exe: AddGlobalCustomProperty[01/08/08,13:49:54] Setup.exe: AddGlobalCustomProperty[01/08/08,13:49:57] Setup.exe: MoveLoadProgress()[01/08/08,13:49:57] Microsoft Visual Studio 2008 Professional Edition - ENU: Starting dynamic costing Sequence[01/08/08,13:49:57] Microsoft Visual Studio 2008 Professional Edition - ENU: Starting pre CostFinalize CA Sequence[01/08/08,13:49:58] Microsoft Visual Studio 2008 Professional Edition - ENU: Ending pre CostFinalize CA Sequence[01/08/08,13:49:58] Setup.exe: MoveLoadProgress()[01/08/08,13:49:59] Setup.exe: MoveLoadProgress()[01/08/08,13:49:59] Microsoft Visual Studio 2008 Professional Edition - ENU: Starting post CostFinalize dynamic Sequence[01/08/08,13:49:59] Microsoft Visual Studio 2008 Professional Edition - ENU: Ending post CostFinalize Sequence[01/08/08,13:49:59] Setup.exe: MoveLoadProgress()[01/08/08,13:49:59] Setup.exe: MoveLoadProgress()[01/08/08,13:49:59] Setup.exe: GetGlobalCustomProperty - Property: {092114C2-997D-4D68-8F3A-8BC2584FD23B} - PropertyName: Quiet Mode Setup - Value: [01/08/08,13:49:59] Setup.exe: MoveLoadProgress()[01/08/08,13:49:59] Setup.exe: MoveLoadProgress()[01/08/08,13:50:00] Setup.exe: MoveLoadProgress()[01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Microsoft Visual Studio 2008 Professional Edition [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Remote Debugging [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Language Tools [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C# [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCsh_for_VS_Pro_ATL_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCsh_for_VS_Pro_CRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCsh_for_VS_Pro_DebugCRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCsh_for_VS_Pro_MFC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCsh_for_VS_Pro_DebugMFC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCsh_for_VS_Pro_MFCLOC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Smart Device Programmability [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual Studio Tools for Office [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_ATL_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_CRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_DebugCRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_MFC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_DebugMFC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_MFCLOC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_OpenMP_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_for_VS_Pro_DebugOpenMP_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Smart Device Programmability [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: X64 Compilers and Tools [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_ATL_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_CRT_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_DebugCRT_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_MFC_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_DebugMFC_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_MFCLOC_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_OpenMP_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_x64_Toolset_DebugOpenMP_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_UNKNOWN][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ Tools [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_Tools_MFC_i64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_Tools_MFCLOC_i64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_Tools_MFC_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VCpp_Tools_MFCLOC_x64 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: MFC Trace Utility [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ Error Lookup [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Win32 Tools [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ Run-Time Libraries [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ CRT Source Code [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ Static Multi-Threaded CRT Libraries [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ Dynamic CRT Libraries [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual C++ Class & Template Libraries [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: ATL MFC Source Code [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: ATL MFC Static Libraries ANSI [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: ATL MFC Static Libraries Unicode [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: ATL MFC Shared Libraries ANSI [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: ATL MFC Shared Libraries Unicode [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual Basic [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VB_for_VS_Pro_ATL_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VB_for_VS_Pro_CRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VB_for_VS_Pro_DebugCRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VB_for_VS_Pro_MFC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VB_for_VS_Pro_DebugMFC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VB_for_VS_Pro_MFCLOC_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Smart Device Programmability [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual Studio Tools for Office [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual Basic PowerPacks [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Visual Web Developer [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VWD_for_VS_Pro_ATL_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: FT_VWD_for_VS_Pro_CRT_x86 [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Dotfuscator Community Edition [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Tools for Redistributing Applications [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Graphics Library [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Redistributable Merge Modules [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Unit Testing Tools [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: Servicing [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Microsoft Visual Studio 2008 Professional Edition - ENU: Begining CSubComponent creation for: ARP_REG_KEYS_HIDDEN [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL][01/08/08,13:50:00] Setup.exe: MoveLoadProgress()[01/08/08,13:50:00] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:00] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:00] Setup.exe: GetGlobalCustomProperty - Property: {0969412C-7281-11D2-AF01-00C04F797FB8} - PropertyName: Suite Directory - Value: C:Program FilesMicrosoft Integration[01/08/08,13:50:00] Setup.exe: MoveLoadProgress()[01/08/08,13:50:03] Another version of Visual Studio is already installed: Return type:[01/08/08,13:50:03] Another version of Visual Studio is already installed: IeReturnCheck[01/08/08,13:50:03] IA64 blocker: Return type:[01/08/08,13:50:03] IA64 blocker: IeReturnCheck[01/08/08,13:50:03] Windows XP Service Pack 2 Update Information: Return type:[01/08/08,13:50:03] Windows XP Service Pack 2 Update Information: IeReturnCheck[01/08/08,13:50:03] Windows 2000 Service Pack 4 Update Information: Return type:[01/08/08,13:50:03] Windows 2000 Service Pack 4 Update Information: IeReturnCheck[01/08/08,13:50:03] Windows 2003 Server Service Pack 1 Update Information: Return type:[01/08/08,13:50:03] Windows 2003 Server Service Pack 1 Update Information: IeReturnCheck[01/08/08,13:50:03] Microsoft Windows Installer 3.1: Return type:[01/08/08,13:50:03] Microsoft Windows Installer 3.1: Win32ReturnCheck[01/08/08,13:50:03] Internet Explorer Version 6.0 Service Pack 1 Update Information: Return type:[01/08/08,13:50:03] Internet Explorer Version 6.0 Service Pack 1 Update Information: IeReturnCheck[01/08/08,13:50:03] Runtime Pre-requisites: Return type:[01/08/08,13:50:03] Runtime Pre-requisites: NetRtReturnCheck[01/08/08,13:50:03] Microsoft .NET Framework 3.5: Return type:[01/08/08,13:50:03] Microsoft .NET Framework 3.5: NetRtReturnCheck[01/08/08,13:50:03] Microsoft .NET Framework v3.5: Return type:[01/08/08,13:50:03] Microsoft .NET Framework v3.5: NetRtReturnCheck[01/08/08,13:50:03] Microsoft .NET Framework 3.5 (x64): Return type:[01/08/08,13:50:03] Microsoft .NET Framework 3.5 (x64): NetRtReturnCheck[01/08/08,13:50:03] Microsoft .NET Framework v3.5 (x64): Return type:[01/08/08,13:50:03] Microsoft .NET Framework v3.5 (x64): NetRtReturnCheck[01/08/08,13:50:03] Microsoft Visual Studio 2008 64bit Prerequisites (x64): Return type:[01/08/08,13:50:03] Microsoft Visual Studio 2008 64bit Prerequisites (x64): NetRtReturnCheck[01/08/08,13:50:03] Microsoft Document Explorer 2008: Return type:[01/08/08,13:50:03] Microsoft Document Explorer 2008: NetRtReturnCheck[01/08/08,13:50:03] Microsoft Visual Studio Web Authoring Component: Return type:[01/08/08,13:50:03] Microsoft Visual Studio Web Authoring Component: NetRtReturnCheck[01/08/08,13:50:03] Microsoft .NET Compact Framework 2.0 SP2: Return type:[01/08/08,13:50:03] Microsoft .NET Compact Framework 2.0 SP2: NetRtReturnCheck[01/08/08,13:50:03] Microsoft .NET Compact Framework 3.5: Return type:[01/08/08,13:50:03] Microsoft .NET Compact Framework 3.5: NetRtReturnCheck[01/08/08,13:50:03] Microsoft Visual Studio Tools for the Microsoft Office system (version 3.0 Runtime): Return type:[01/08/08,13:50:03] Microsoft Visual Studio Tools for the Microsoft Office system (version 3.0 Runtime): NetRtReturnCheck[01/08/08,13:50:03] Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office System Runtime: Return type:[01/08/08,13:50:03] Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office System Runtime: NetRtReturnCheck[01/08/08,13:50:03] Microsoft SQL Server Compact 3.5: Return type:[01/08/08,13:50:03] Microsoft SQL Server Compact 3.5: NetRtReturnCheck[01/08/08,13:50:03] Microsoft SQL Server Compact 3.5 Design Tools: Return type:[01/08/08,13:50:03] Microsoft SQL Server Compact 3.5 Design Tools: NetRtReturnCheck[01/08/08,13:50:03] Microsoft SQL Server Compact 3.5 For Devices: Return type:[01/08/08,13:50:03] Microsoft SQL Server Compact 3.5 For Devices: NetRtReturnCheck[01/08/08,13:50:03] Windows Mobile 5.0 SDK R2 for Pocket PC: Return type:[01/08/08,13:50:03] Windows Mobile 5.0 SDK R2 for Pocket PC: NetRtReturnCheck[01/08/08,13:50:03] Windows Mobile 5.0 SDK R2 for Smartphone: Return type:[01/08/08,13:50:04] Windows Mobile 5.0 SDK R2 for Smartphone: NetRtReturnCheck[01/08/08,13:50:04] Microsoft Device Emulator version 3.0 (x64): Return type:[01/08/08,13:50:04] Microsoft Device Emulator version 3.0 (x64): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Device Emulator version 3.0 (x86): Return type:[01/08/08,13:50:04] Microsoft Device Emulator version 3.0 (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Device Emulator version 3.0: Return type:[01/08/08,13:50:04] Microsoft Device Emulator version 3.0: NetRtReturnCheck[01/08/08,13:50:04] Microsoft SQL Server 2005 Express Edition: Return type:[01/08/08,13:50:04] Microsoft SQL Server 2005 Express Edition: NetRtReturnCheck[01/08/08,13:50:04] Microsoft SQL Server 2005 Express Edition (x86): Return type:[01/08/08,13:50:04] Microsoft SQL Server 2005 Express Edition (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Visual Studio 2008 Remote Debugger (x64): Return type:[01/08/08,13:50:04] Microsoft Visual Studio 2008 Remote Debugger (x64): NetRtReturnCheck[01/08/08,13:50:04] Crystal Reports Basic for Visual Studio 2008: Return type:[01/08/08,13:50:04] Crystal Reports Basic for Visual Studio 2008: NetRtReturnCheck[01/08/08,13:50:04] Crystal Reports Basic 64-Bit Runtime for Visual Studio 2008: Return type:[01/08/08,13:50:04] Crystal Reports Basic 64-Bit Runtime for Visual Studio 2008: NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Tools (x86): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Tools (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Tools (x64): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Tools (x64): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Headers and Libraries (x86): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Headers and Libraries (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Headers and Libraries (x64): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Headers and Libraries (x64): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Win32 Tools (x86): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Win32 Tools (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Win32 Tools (x64): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 Win32 Tools (x64): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 .NET Framework Tools (x86): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 .NET Framework Tools (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 .NET Framework Tools (x64): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 .NET Framework Tools (x64): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 SDK Reference Assemblies and IntelliSense (x86): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 SDK Reference Assemblies and IntelliSense (x86): NetRtReturnCheck[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 SDK Reference Assemblies and IntelliSense (x64): Return type:[01/08/08,13:50:04] Microsoft Windows SDK for Visual Studio 2008 SDK Reference Assemblies and IntelliSense (x64): NetRtReturnCheck[01/08/08,13:50:04] Microsoft SQL Publishing Wizard: Return type:[01/08/08,13:50:04] Microsoft SQL Publishing Wizard: NetRtReturnCheck[01/08/08,13:50:04] Setup.exe: ISetupManager::RunIntro() : CheckForRemove[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: inside ISetupManager::LoadActionOverrides()[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: ISetupManager::RunIntro() : LoadScenarioFactory[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: inside ISetupManager::LoadScenarioFactory()[01/08/08,13:50:04] Setup.exe: CSetupManager::LoadSetupObject((): Loading vsscenario.dll[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] VS Scenario: Entering CVSScenario::EnableScriptsInHtml[01/08/08,13:50:04] VS Scenario: CoInternetSetFeatureEnabled succeed[01/08/08,13:50:04] Watson UX Data Logging started: [01/08/08,13:50:04] ==============================: [01/08/08,13:50:04] UserID: {75802921-9B8C-4E39-ADF4-75158DFF2F75}[01/08/08,13:50:04] SessionID: {484398E8-8E63-4BC1-8259-8674CCA92171}[01/08/08,13:50:04] ProductCode: {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}[01/08/08,13:50:04] ProductVersion: 9.0.21022.08_ORCAS_X86_NET[01/08/08,13:50:04] ProductLang: 0x409[01/08/08,13:50:04] Begin_Session: [01/08/08,13:50:04] VS Scenario: Pending Reboot Table state : Logging start [01/08/08,13:50:04] VS Scenario: _________________________________________[01/08/08,13:50:04] VS Scenario: There are no queued up pending reboot entries.[01/08/08,13:50:04] SysInfo: x86x2, 5.1.2600, Service Pack 2, 0x409[01/08/08,13:50:04] HWInfo: GenuineIntel, 0x95b, 0x547, 0x1[01/08/08,13:50:04] AppsRunning: [01/08/08,13:50:04] IsInternal: 0x0[01/08/08,13:50:04] WebInstall: 0x0[01/08/08,13:50:04] Setup.exe: GetGlobalCustomProperty - Property: {9AB7F66B-DBC6-4D44-8C09-E16F0EB162E7} - PropertyName: /LAUNCHER - Value: C:DOCUME~1ryancLOCALS~1Temp[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] Setup.exe: ISetupManager::RunIntro() : LoadSetupLocationInformation[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: ISetupManager::RunIntro() : SelectAllComponents[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: MoveLoadProgress()[01/08/08,13:50:04] Setup.exe: ISetupManager::RunIntro() : InitializeUIManager[01/08/08,13:50:04] Setup.exe: inside ISetupManager::InitializeUIManager()[01/08/08,13:50:04] vs70uimgr: Entering Start() method.[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Setting the Default INI.[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Finished setting the Default INI.[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Getting the Install Mode.[01/08/08,13:50:04] Setup.exe: GetGlobalCustomProperty - Property: {340F7930-0E41-11D3-ACE2-00C04F8EEBA1} - PropertyName: Output Unattend File - Value: [01/08/08,13:50:04] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Finished getting the Install Mode : 1[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Getting the Reboot Mode.[01/08/08,13:50:04] Setup.exe: GetGlobalCustomProperty - Property: {BCC78D7A-89AE-11D2-AF03-00C04F797FB8} - PropertyName: Post Reboot State - Value: 0[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Finished getting the Reboot Mode : 0[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Getting the Admin Mode.[01/08/08,13:50:04] vs70uimgr: Entering GetAdminMode.[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] vs70uimgr: CUIMgr::GetAdminMode m_AdminMode = AM_NOMODE[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Finished getting the Admin Mode : 0[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Loading Pages[01/08/08,13:50:04] vs70uimgr: Entering LoagPages() method.[01/08/08,13:50:04] vs70uimgr: CUIMgr::LoadPages(): Parsing SDB and Loading pages[01/08/08,13:50:04] vs70uimgr: Entering AddPageToList() method. Loading: vs70pgui.dll : {bb81d810-3f9b-11d3-a50c-00c04f5e0ba5}[01/08/08,13:50:04] VS70pgui: Entered InitializeModule Method of Start Page[01/08/08,13:50:04] vs70uimgr: Entering AddPageToList() method. Loading: vs70pgui.dll : {9fe307c0-3646-11d3-a508-00c04f5e0ba5}[01/08/08,13:50:04] VS70pgui: Entered InitializeModule Method of Start Page[01/08/08,13:50:04] vs70uimgr: Entering AddPageToList() method. Loading: vs70pgui.dll : {bb81d811-3f9b-11d3-a50c-00c04f5e0ba5}[01/08/08,13:50:04] VS70pgui: CInstallPage::InitializeModule[01/08/08,13:50:04] vs70uimgr: Entering AddPageToList() method. Loading: vs70pgui.dll : {1920cc5d-5be5-45d4-9c1c-3513d334c71c}[01/08/08,13:50:04] vs70uimgr: CUIMgr::LoadPages(): Adding Global Property: CustomCoreProp_AutoLoginAvailable[01/08/08,13:50:04] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:04] vs70uimgr: CUIMgr::LoadPages(): Finished adding Global Property: CustomCoreProp_AutoLoginAvailable[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Finished loading Pages[01/08/08,13:50:04] vs70uimgr: CUIMgr::Start(): Creating Main Thread Events[01/08/08,13:50:04] vs70uimgr: Entering DisplayStartup() method. - not custom implemented[01/08/08,13:50:04] Setup.exe: ISetupManager::ResetBaselineActions() : SMP_SUITEBASELINE[01/08/08,13:50:04] Setup.exe: ISetupManager::GetBaslineComponents()[01/08/08,13:50:04] vs70uimgr: Entering ThreadUI() method.[01/08/08,13:50:04] vs70uimgr: CUIMGr::SetWindowTitle(): Getting Property Value for: VS Custom;ProdDesc[01/08/08,13:50:04] vs70uimgr: CUIMGr::SetWindowTitle(): Finished getting Property Value for: VS Custom;ProdDesc[01/08/08,13:50:04] Setup.exe: ISetupManager::ResetBaselineActions() : SMP_SUITEBASELINE[01/08/08,13:50:04] Setup.exe: ISetupManager::GetBaslineComponents()[01/08/08,13:50:04] Setup.exe: ISetupManager::ResetBaselineActions() : SMP_SCENARIOBASELINE[01/08/08,13:50:04] VS Scenario: IVSSetupScenarioImpl::GetBaslineComponents()[01/08/08,13:50:04] vs70uimgr: Entering SelectScenario() method. - not custom implemented[01/08/08,13:50:05] Setup.exe: ISetupManager::RunIntro() : CheckBaselines[01/08/08,13:50:05] Setup.exe: MoveLoadProgress()[01/08/08,13:50:05] Setup.exe: ISetupManager::RunIntro() : StartUIManager[01/08/08,13:50:05] Setup.exe: MoveLoadProgress()[01/08/08,13:50:05] Setup.exe: StartUIManager()[01/08/08,13:50:05] vs70uimgr: Entering RunScenario() method.[01/08/08,13:50:05] vs70uimgr: CUIMgr::RunScenario(): Starting the active scenario[01/08/08,13:50:05] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:05] Setup.exe: GetGlobalCustomProperty - Property: {340F7930-0E41-11D3-ACE2-00C04F8EEBA1} - PropertyName: Output Unattend File - Value: [01/08/08,13:50:05] Setup.exe: GetGlobalCustomProperty - Property: {9AB7F66B-DBC6-4D44-8C09-E16F0EB162E7} - PropertyName: /LAUNCHER - Value: C:DOCUME~1ryancLOCALS~1Temp[01/08/08,13:50:05] VS Scenario: Validating system requirements[01/08/08,13:50:05] VS Scenario: Running warn and block checks[01/08/08,13:50:06] Setup.exe: MoveLoadProgress()[01/08/08,13:50:06] Setup.exe: GetComponents()[01/08/08,13:50:06] Setup.exe: get_Components()[01/08/08,13:50:06] Setup.exe: MoveLoadProgress()[01/08/08,13:50:06] VS Scenario: Building component lists[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] VS Scenario: Running VSCompsToInstall for baseline components[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:06] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] VS Scenario: Running VSCompsAlreadyInstalled[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:07] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:07] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:07] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] VS Scenario: Building component dispatch lists[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:07] Setup.exe: MoveLoadProgress()[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {674F51AB-D488-48DA-8240-FF7330CB9872} - PropertyName: Cmd Line Uninstall Mode Setup - Value: [01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {9EEA4DFB-733A-4349-B43E-F564351AC503} - PropertyName: Passive Mode - Value: [01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {092114C2-997D-4D68-8F3A-8BC2584FD23B} - PropertyName: Quiet Mode Setup - Value: [01/08/08,13:50:07] vs70uimgr: CUIMgr::RunScenario(): Setting the UIThread Event[01/08/08,13:50:07] vs70uimgr: CUIMgr::RunScenario(): Finished setting the UIThread Event[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Creating the main window[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Finished creating the main window[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Initializing the Pages[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {9EEA4DFB-733A-4349-B43E-F564351AC503} - PropertyName: Passive Mode - Value: [01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Processing Page #1[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Setting the parent.[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the parent.[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Creating the page.[01/08/08,13:50:07] VS70pgui: Creating Start Page[01/08/08,13:50:07] VS70pgui: Initializing the Start Page dialog[01/08/08,13:50:07] VS70pgui: Entered InitGDIResources method[01/08/08,13:50:07] Setup.exe: GetComponents()[01/08/08,13:50:07] Setup.exe: get_Components()[01/08/08,13:50:07] Setup.exe: GetGlobalCustomProperty - Property: {CE6EA7C5-0F0C-4D91-B597-092B82E2128B} - PropertyName: AlreadyInstalled - Value: Another version of Visual Studio is already installedWindows XP Service Pack 2 Update InformationMicrosoft Windows Installer 3.1[01/08/08,13:50:07] VS70pgui: Entered InitStaticControls method[01/08/08,13:50:07] VS70pgui: Entered InitStaticToolTips method[01/08/08,13:50:07] VS70pgui: Entered OnClickedAccept method[01/08/08,13:50:07] EULA_Accept: 0x0[01/08/08,13:50:07] VS70pgui: Created the Start Page[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Finished creating the page.[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Getting the Header.[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Finished Getting the Header.[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Setting the Header Parent[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the Header Parent[01/08/08,13:50:07] vs70uimgr: CUIMgr::ThreadUI(): Creating the Header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished Creating the Header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting the position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting visibility of header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting visibility of header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting page position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting page visibility[01/08/08,13:50:08] VS70pgui: Entered OnShowWindow method[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page visibility[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Processing Page #2[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting the parent.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the parent.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Creating the page.[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::OnInitDialog method[01/08/08,13:50:08] Setup.exe: GetGlobalCustomProperty - Property: {BCC78D7A-89AE-11D2-AF03-00C04F797FB8} - PropertyName: Post Reboot State - Value: 0[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::InitStaticControls method[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::InitGDIResources method[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::InitPropertyList method[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::InitNavLinks method[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::InitStaticToolTips method[01/08/08,13:50:08] VS70pgui: COptionsPage::OnInitDialog(): Creating the CComponentTree object[01/08/08,13:50:08] VS70pgui: CComponentTree::CComponentTree(): Populating the selection tree...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Creating a new CComponent Object...[01/08/08,13:50:08] VS70pgui: CComponentTree::PopulateTree(): Finished creating a new CComponent Object[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] Setup.exe: ISetupManager::GetFullComponents()[01/08/08,13:50:08] VS70pgui: CComponentTree::CComponentTree(): Finished populating the selection tree[01/08/08,13:50:08] VS70pgui: COptionsPage::OnInitDialog(): Finished creating the CComponentTree object[01/08/08,13:50:08] Setup.exe: GetGlobalCustomProperty - Property: {AA62DF98-3F2C-11D3-887B-00C04F8ECDD6} - PropertyName: Maintenance Mode - Value: 0[01/08/08,13:50:08] Setup.exe: GetComponents()[01/08/08,13:50:08] Setup.exe: get_Components()[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::InitFeatureTips method[01/08/08,13:50:08] VS70pgui: COptionsPage::PrepareProView setting up VS.[01/08/08,13:50:08] VS70pgui: Exiting OnInitDialog()[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished creating the page.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Getting the Header.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished Getting the Header.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting the Header Parent[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the Header Parent[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Creating the Header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished Creating the Header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting the position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting visibility of header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting visibility of header[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting page position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page position[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting page visibility[01/08/08,13:50:08] VS70pgui: Entered COptionsPage::OnShowWindow method[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page visibility[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Processing Page #3[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Setting the parent.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the parent.[01/08/08,13:50:08] vs70uimgr: CUIMgr::ThreadUI(): Creating the page.[01/08/08,13:50:09] VS70pgui: CInstallPage::InitBrowser(): Initializing Browser...[01/08/08,13:50:09] VS70pgui: CInstallPage::InitBrowser(): Finished initializing Browser[01/08/08,13:50:09] Setup.exe: in RegisterSetupService()[01/08/08,13:50:09] Setup.exe: in RegisterSetupService()[01/08/08,13:50:09] VS70pgui: Entered CPageHeaderDynamic::SetCallingPageBrowser method[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished creating the page.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Getting the Header.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished Getting the Header.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting the Header Parent[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the Header Parent[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Creating the Header[01/08/08,13:50:09] VS70pgui: Entered CPageHeaderDynamic::OnInitDialog method[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished Creating the Header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting the position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting visibility of header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting visibility of header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting page position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting page visibility[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page visibility[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Processing Page #4[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting the parent.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the parent.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Creating the page.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished creating the page.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Getting the Header.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished Getting the Header.[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting the Header Parent[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the Header Parent[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Creating the Header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished Creating the Header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting the position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting the position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting visibility of header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting visibility of header[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting page position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page position[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting page visibility[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting page visibility[01/08/08,13:50:09] vs70uimgr: CUIMgr::Thread(): Finished Initializing the pages[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Setting Current Page & Header visibility[01/08/08,13:50:09] VS70pgui: Entered OnShowWindow method[01/08/08,13:50:09] VS70pgui: Entered OnClickedAccept method[01/08/08,13:50:09] EULA_Accept: 0x0[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Finished setting Current Page & Header visibility[01/08/08,13:50:09] vs70uimgr: CUIMgr::ThreadUI(): Releasing the Waiting dialog[01/08/08,13:50:09] Setup.exe: GetGlobalCustomProperty - Property: DF8FF64A-1967-4871-9E32-CA2F819BAB81 - PropertyName: HWNDForLoadingDialog - Value: 132224[01/08/08,13:50:09] Setup.exe: WaitForUserDuringLoad()[01/08/08,13:50:09] Setup.exe: GetGlobalCustomProperty - Property: {BCC78D7A-89AE-11D2-AF03-00C04F797FB8} - PropertyName: Post Reboot State - Value: 0[01/08/08,13:50:37] Welcome_Next: [01/08/08,13:50:37] Setup.exe: AddGlobalCustomProperty[01/08/08,13:50:37] Setup.exe: HasWelcomePage()[01/08/08,13:50:38] VS70pgui: Entered OnClickedAccept method[01/08/08,13:50:38] EULA_Accept: 0x0[01/08/08,13:50:38] Setup.exe: CCoreEngine-Proc() - Finished Main

View 1 Replies View Related

SQL Express Installation Problems

Dec 11, 2005

I realize that I have created my own problem...
I unstalled asp.net framework 2.0 (one of the beta versions) prior to removing sql express.  I now have successfully installed vwd express without sql express -- sql express uninstalled failed, even with the uninstall tool.
Can anyone point me to documentation on how to complete the uninstall process for sql express so that I can reinstall? (I also have sql server 2000 installed on the same machine and I don't want to damage that installation.)
Also, will the start kits work with sql 2000 or do they need sql express?
Thanks in advance -- any help is much appreciated.
 
 
 
 

View 3 Replies View Related

SQL SERVER Express Installation

Apr 10, 2006

Hi, I am planning to install Sql server Express version on my machine. I already have Vs.NET 2005 Professional and SQL server 2000 installed and was wondering that if the installation of sql server expresss edition will cause any problems? If not then I can proceed  with the installation!

View 1 Replies View Related

Challenge With SQL Express Installation

Oct 31, 2006

I am having a problem with the installation of SQL Express. the uninstall program says that part of the Beta is still installed. then the uninstall program crashes with a syntax error saying that &nbsp; in wrong place. found it deleted it and then the program will not continue. i cant find any remnants of the beta but SQL Server express will not install!! Please help.

View 2 Replies View Related

Configuring Sql Express On Installation

Nov 10, 2006

Can someone explain to me what SQLACCOUNT=<domainuser> is or should be set to? I get an error telling me to specify a built in account or give a username domain and password for each service. How do I specify these things I didnt see those in the 1 msdn page that explains this. I asked this before but I still cant figure it out. Thanks.

View 1 Replies View Related

SQL Express Installation Failure

Mar 1, 2007

I have installed SQL Express from the download file SQLEXPR32.EXE but for some reason it is missing some directories. The install appears to complete successfully (with a minor warning about minimum hardware; bogus I think) but when it tries to start the service, the start fails. On investigating it appears that the MSSQL.1 directory has not been installed, so there are no executables for the server part. I selected default options only and have even tried removing the installation files, registry keys etc, and rebooting to ensure a clean system but still to no avail. Having reviewed the logs I can't find anything obvious that I have done wrong, but I assume this install is working for other people.Any suggestions as to where else I should look to see what I may have missed?

many thanks,
Richard.

View 1 Replies View Related

Sql Server Express Installation

Nov 19, 2007



Sql server express edition 2005 Installation fails!
Its says processor not supported.
I got HP Laptop and intel T750 2.2 GHz processor.
Please help me to install it

View 3 Replies View Related

SQL Express Installation Failure.

Feb 28, 2007

I am experiencing problem in the installation of SQL Express Editon -

Following is the error what i am getting

Error 1304. Error writing to file: Microsoft.NetEnterpriseServers.ExceptionMessageBox.dll. Verify that you have access to that directory.

I have verified that the path at which file is to be extracted exists and the user doing the installation has rights to that directory.

Also what i am using is the extracted SQL Express Advance setup.

White using the same (not extracted setup) with installshield the error do not persists.

Any body Please Suggest a solution, it is hurdling my work big way.

Thanks in advance.

View 12 Replies View Related

Sql Express Installation Error

Dec 11, 2006

Hi,

I have tried to install sql express several times and each time it fails to start the sql service during the install process. I am copying part of the three log files below.

File Name :C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0008_REHMANK-PC_Core.log

Running: ActivateLoggingAction at: 2006/11/11 13:33:57
Complete: ActivateLoggingAction at: 2006/11/11 13:33:57, returned true
Running: DetectPatchedBootstrapAction at: 2006/11/11 13:33:57
Complete: DetectPatchedBootstrapAction at: 2006/11/11 13:33:57, returned true
Action "LaunchPatchedBootstrapAction" will be skipped due to the following restrictions:
Condition "EventCondition: __STP_LaunchPatchedBootstrap__2836" returned false.
Running: PerformSCCAction2 at: 2006/11/11 13:33:57
Loaded DLL:C:WINDOWSsystem32msi.dll Version:3.1.4000.2435
Loaded DLL:C:WINDOWSsystem32msi.dll Version:3.1.4000.2435
Complete: PerformSCCAction2 at: 2006/11/11 13:33:57, returned true
Running: PerformDotNetCheck at: 2006/11/11 13:33:57
Complete: PerformDotNetCheck at: 2006/11/11 13:33:58, returned true
Running: ComponentUpdateAction at: 2006/11/11 13:33:58
Complete: ComponentUpdateAction at: 2006/11/11 13:46:49, returned true
Running: DetectLocalBootstrapAction at: 2006/11/11 13:46:49
Complete: DetectLocalBootstrapAction at: 2006/11/11 13:46:49, returned true
Running: LaunchLocalBootstrapAction at: 2006/11/11 13:46:49
Error: Action "LaunchLocalBootstrapAction" threw an exception during execution.  Error information reported during run:
"c:Program FilesMicrosoft SQL Server90Setup Bootstrapsetup.exe" finished and returned: 1067
Aborting queue processing as nested installer has completed
Message pump returning: 1067


File Name :C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0008_REHMANK-PC_SQL.log

Property(S): SOURCEDIR = c:2047371f3917d7caabSetup
Property(S): SourcedirProduct = {2AFFFDD7-ED85-4A90-8C52-5DA9EBDC9B8F}
Property(S): InstallNgenTicks = 100000
Property(S): SQLBROWSERSCMACCOUNT = NT AUTHORITYNetworkService
Property(S): SQLSCMACCOUNT = NT AUTHORITYNetworkService
Property(S): DebugClsid.CC1A8C58_27D1_4D38_BF1B_C0A5CBB90616 = {AE0605D0-EBAD-411B-B292-2975E83A76D2}
Property(S): ProductToBeRegistered = 1
MSI (s) (F0:04) [13:53:09:168]: Note: 1: 1708
MSI (s) (F0:04) [13:53:09:168]: Product: Microsoft SQL Server 2005 Express Edition -- Installation failed.

MSI (s) (F0:04) [13:53:09:184]: Cleaning up uninstalled install packages, if any exist
MSI (s) (F0:04) [13:53:09:184]: MainEngineThread is returning 1603


FileName :C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLLOGERRORLOG

2006-12-11 13:52:02.59 Server      Command Line Startup Parameters:
2006-12-11 13:52:02.59 Server        -m SqlSetup
2006-12-11 13:52:02.59 Server        SqlSetup
2006-12-11 13:52:02.59 Server        -Q
2006-12-11 13:52:02.59 Server        -q SQL_Latin1_General_CP1_CI_AS
2006-12-11 13:52:02.59 Server        -T 4022
2006-12-11 13:52:02.59 Server        -T 3659
2006-12-11 13:52:02.59 Server        -T 3610
2006-12-11 13:52:02.59 Server        -T 4010
2006-12-11 13:52:02.89 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
2006-12-11 13:52:02.89 Server      Detected 1 CPUs. This is an informational message; no user action is required.
2006-12-11 13:52:03.86 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
2006-12-11 13:52:05.11 Server      Database Mirroring Transport is disabled in the endpoint configuration.
2006-12-11 13:52:05.26 spid5s      Warning ******************
2006-12-11 13:52:05.28 spid5s      SQL Server started in single-user mode. This an informational message only. No user action is required.
2006-12-11 13:52:05.54 spid5s      Starting up database 'master'.
2006-12-11 13:52:06.03 spid5s      Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required.
2006-12-11 13:52:06.76 spid5s      SQL Trace ID 1 was started by login "sa".
2006-12-11 13:52:06.90 spid5s      Starting up database 'mssqlsystemresource'.
2006-12-11 13:52:06.97 spid5s      The resource database build version is 9.00.3027. This is an informational message only. No user action is required.
2006-12-11 13:52:14.15 spid5s      Error: 15209, Severity: 16, State: 1.
2006-12-11 13:52:14.15 spid5s      An error occurred during encryption.
2006-12-11 13:52:14.26 spid5s      SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.


I searched the forum but could not find any solution. Can anyone help, please.

TIA.

Khalique

View 8 Replies View Related

SQL Express Silent Installation.

Mar 14, 2006

I am writing an application that requires SQL Express to be installed alongside.

So I try to do the following - Before installing my application, I pop-up a link which leads to "SQLEXPR.exe ADDLOCAL=SQL_Engine INSTANCENAME=MSSQLServer <other parameters> /qb " .
But this displays only a basic GUI, which means that the pre-requisite checks for SQL express are not displayed to the user. So if MDAC version 2.8 is not present on the system the installation of SQLexpress fails without any error messages (except in the log files).
( This is not a problem with all pre-requisites :: If .NET is not present on the system, the failure is much more elegant. There is a nice GUI pop-up which requests the user to install .NET 2.0 before installing SQL express.)

On the other hand, If I remove the "/qb" switch, I can get the pre-requisites GUI to display and the end-user can figure out the cause of failure easily enough. But this means that the optional parameters I use, for example the instancename or the authentication mode will not be used during the install

Is there a good commandline switch I can use so that
1) The pre-requisites check screen is displayed
2) All the commandline options are used for installation.

Thanks

View 5 Replies View Related

Installation SQL Server Express

Mar 6, 2008

Hi
I have SQL Server 2005 and VS 2005 sp1 installed in my machine, however, i need SQL Server 2005 Management Studio and some of the key features in it.

What is the correct proccess to 'upgrade' my system without alter the programs referred?

Thank u for your help.

N. O.

View 1 Replies View Related

SQL Express Installation Advice

Apr 23, 2007

I have a project that we want to utilize the SQL Server express. I have a couple of question;



1) The component that uses SQL Express is an add on feature that will be activiated at some time post the initial installation. This means that we will not have to include 40mb install package in our installer. Once we have determined the SQLEXPRESS needs to be installed our prefered mechanism is to download and execute the setup program. Question: is there a static link to the basic SQLServer express download package that will always be avaialble that we can use?



2) With User Instances on SQL Express can more than one user access the database at the same time? In other words both users will be doing an AttatchDB on the same MDF file. (Our application has a running service and a standard user interface that will be accessing the database).



Thanks

View 2 Replies View Related

SQL Server Express SP2 MU Installation

May 26, 2007

Does anyone know of a way to let end-users install SP2 from Microsoft Update without giving them "God" rights? Please tell me I've just overlooked something and that there's a simple way to do this.



To make a long story short, I have big clients & small clients. The big ones use enterprise and have DBA's who know what they're doing. These guys can do whatever they want & they know enough to not mess things up. They've been running SP2 for months now.



The small ones use express. They have wannabe hardware techs who show up at the office periodically and tinker. I've dealt with too many techs who think that knowing how to swap a motherboard makes them fully qualified to "tweak" SQL Server. One even dropped & redefined an identity because he wanted to allow duplicates. (In case you're wondering, he thought that grouping related records by duplicating the ID would be more efficient than our existing "over-complicated" grouping because the server would automatically sort by the ID.) Anyway, to protect the little guys, I had to restrict their rights. All they can do as administrator is backup the data.



One more thing, due to industry regulations some of the of the data is encrypted before being stored. I can't let them accidently edit records through SQL manager either.



Thanks in advance for any help you can provide.

View 6 Replies View Related

Can Not Connect To SQL Server Express After Installation

Jan 13, 2008

 Hi everyone I have some problems with SQL server. I just installed the SQL Server 2005 express edition on my computer. And after installation, i cannot connect to it. I don't have any firewalls on my computer, and in the installation I have chosen to be able to log in with both (windows authentification or sql authentification). Both authentifications doesn't work when I tried to log in The following is the error I get :"Cannot connect to localhost. An error has occurred while establishing a connection to the server. When connecting to SQL server 2005, this failure may be caused byt he fact that under the default settings SQL server does not allow remote connections."Can somebody please help me ?
 

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved