Public
Class
clTemplateColumn
Implements
ITemplate
Protected
_label1
As
Label
Private
_colName
As
String
Public
Sub
New
(
ByVal
colName
As
String
)
_colName = colName
End
Sub
Public
Sub
InstantiateIn(container
As
Control)
Implements
ITemplate.InstantiateIn
_label1 =
New
Label
_label1.ID = _colName +
"Label"
AddHandler
_label1.DataBinding,
AddressOf
Label1_DataBinding
container.Controls.Add(_label1)
End
Sub
Private
Sub
Label1_DataBinding(
ByVal
sender
As
Object
,
ByVal
e
As
EventArgs)
Dim
_label
As
Label =
DirectCast
(sender, Label)
Dim
_container
As
Telerik.Web.UI.GridDataItem =
DirectCast
(_label.NamingContainer, Telerik.Web.UI.GridDataItem)
_label.Text =
DirectCast
(_container.DataItem, DataRowView)(_colName).ToString
End
Sub
End
Class
Public
Class
clTemplateColumnFooter
Implements
ITemplate
Protected
_label1
As
Label
Private
_footerID
As
String
Public
Sub
New
(
ByVal
footerID
As
String
)
_footerID = footerID
End
Sub
Public
Sub
InstantiateIn(container
As
Control)
Implements
ITemplate.InstantiateIn
_label1 =
New
Label
_label1.ID = _footerID
container.Controls.Add(_label1)
End
Sub
End
Class
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="TestPage1.aspx.vb" Inherits="GridRowColTotals.TestPage1" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
<
Scripts
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.Core.js"
/>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQuery.js"
/>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQueryInclude.js"
/>
</
Scripts
>
</
telerik:RadScriptManager
>
<
div
>
<
telerik:RadButton
ID
=
"btnGenerateData"
runat
=
"server"
Text
=
"GenerateData"
></
telerik:RadButton
>
<
br
/>
<
br
/>
<
telerik:RadGrid
ID
=
"rgResults"
runat
=
"server"
CellSpacing
=
"0"
GridLines
=
"Both"
ShowFooter
=
"True"
AutoGenerateColumns
=
"false"
>
<
ClientSettings
EnablePostBackOnRowClick
=
"false"
>
<
Scrolling
AllowScroll
=
"true"
/>
<
ClientEvents
OnCellSelecting
=
"OnCellSelecting"
OnCellSelected
=
"OnCellSelected"
OnCellDeselected
=
"OnCellDeselected"
/>
</
ClientSettings
>
</
telerik:RadGrid
>
<
br
/>
<
br
/>
<
telerik:RadButton
ID
=
"btnCheckSelectedItems"
runat
=
"server"
Text
=
"Selected Values"
></
telerik:RadButton
>
<
script
type
=
"text/javascript"
language
=
"javascript"
>
// When selecting the cells from the results grid, if any of the cells belong to the column MainHeader then cancel the select.
function OnCellSelecting(sender, args) {
if (args.get_column().get_uniqueName() == "MainHeader") {
args.set_cancel(true);
}
}
function OnCellSelected(sender, args) {
// Find the grid master table to get the footer element
var _masterTable = $find("<%=rgResults.ClientID%>").get_masterTableView();
var _masterTableViewFooter = _masterTable.get_element().getElementsByTagName("TFOOT")[0];
// Get the index of the column
var _cellIndex = _masterTable.getColumnByUniqueName(args.get_column().get_uniqueName()).get_element().cellIndex + 1;
// Get the value from the current selected cell, check the length and set to 0 if nothing in it.
var _cellValue = args.get_gridDataItem().get_cell(args.get_column().get_uniqueName()).innerText;
if (_cellValue.length == 0) {
_cellValue = "0";
}
// Get the current total value for the column the selected cell is in, check the length and set to 0 if nothing in it.
var _currentTotal = _masterTableViewFooter.rows[0].cells[_cellIndex].innerText;
if (_currentTotal.length == 0) {
_currentTotal = "0";
}
// Work out the new total, and set the footer value.
var _newTotal = parseInt(_currentTotal) + parseInt(_cellValue);
_masterTableViewFooter.rows[0].cells[_cellIndex].innerText = _newTotal.toString();
}
function OnCellDeselected(sender, args) {
// Find the grid master table to get the footer element
var _masterTable = $find("<%=rgResults.ClientID%>").get_masterTableView();
var _masterTableViewFooter = _masterTable.get_element().getElementsByTagName("TFOOT")[0];
// Get the index of the column
var _cellIndex = _masterTable.getColumnByUniqueName(args.get_column().get_uniqueName()).get_element().cellIndex + 1;
// Get the value from the current selected cell, check the length and set to 0 if nothing in it.
var _cellValue = args.get_gridDataItem().get_cell(args.get_column().get_uniqueName()).innerText;
if (_cellValue.length == 0) {
_cellValue = "0";
}
// Get the current total value for the column the selected cell is in, check the length and set to 0 if nothing in it.
var _currentTotal = _masterTableViewFooter.rows[0].cells[_cellIndex].innerText;
if (_currentTotal.length == 0) {
_currentTotal = "0";
}
// Work out the new total, and set the footer value.
var _newTotal = parseInt(_currentTotal) - parseInt(_cellValue);
_masterTableViewFooter.rows[0].cells[_cellIndex].innerText = _newTotal.toString();
}
</
script
>
</
div
>
</
form
>
</
body
>
</
html
>
Public
Class
TestPage1
Inherits
System.Web.UI.Page
Dim
_resultsDataSource
As
New
DataTable(
"resultsData"
)
Private
Sub
btnGenerateData_Click(sender
As
Object
, e
As
EventArgs)
Handles
btnGenerateData.Click
GenerateData()
End
Sub
Private
Sub
GenerateData()
BuildDataTable(_resultsDataSource)
AddColumnsToGrid(_resultsDataSource)
rgResults.DataSource = _resultsDataSource
rgResults.DataBind()
End
Sub
Private
Sub
BuildDataTable(
ByRef
pivotData
As
DataTable)
pivotData.Rows.Clear()
pivotData.Columns.Clear()
pivotData.Clear()
Dim
_pivotRow
As
DataRow
' Add the KEY column
pivotData.Columns.Add(AddNewPivotColumn(
"Key"
,
"Key"
,
"System.String"
))
' Add the Main Header column
pivotData.Columns.Add(AddNewPivotColumn(
"MainHeader"
,
""
,
"System.String"
))
' Add the Blank/Male/Female Column
pivotData.Columns.Add(AddNewPivotColumn(
"Blank"
,
"Blank"
,
"System.Decimal"
))
pivotData.Columns.Add(AddNewPivotColumn(
"_33"
,
"Male"
,
"System.Decimal"
))
pivotData.Columns.Add(AddNewPivotColumn(
"_34"
,
"Female"
,
"System.Decimal"
))
' Add the data
_pivotRow = AddNewPivotRow(pivotData)
_pivotRow(0) =
"Blank"
' Key
_pivotRow(1) =
"Blank"
' Main Header
_pivotRow(2) =
"5"
' 5 people in blank
pivotData.Rows.Add(_pivotRow)
_pivotRow = AddNewPivotRow(pivotData)
_pivotRow(0) =
"1"
' Key
_pivotRow(1) =
"20-29"
' Main Header
_pivotRow(3) =
"15"
' 15 people in Male
_pivotRow(4) =
"7"
' 7 people in Female
pivotData.Rows.Add(_pivotRow)
_pivotRow = AddNewPivotRow(pivotData)
_pivotRow(0) =
"2"
' Key
_pivotRow(1) =
"30-39"
' Main Header
_pivotRow(3) =
"2"
' 2 people in Male
_pivotRow(4) =
"33"
' 33 people in Female
pivotData.Rows.Add(_pivotRow)
_pivotRow = AddNewPivotRow(pivotData)
_pivotRow(0) =
"3"
' Key
_pivotRow(1) =
"40-49"
' Main Header
_pivotRow(3) =
"12"
' 12 people in Male
_pivotRow(4) =
"17"
' 17 people in Female
pivotData.Rows.Add(_pivotRow)
End
Sub
Private
Function
AddNewPivotColumn(
ByVal
columnName
As
String
,
ByVal
caption
As
String
,
ByVal
dataType
As
String
)
As
DataColumn
Dim
_newCol
As
DataColumn =
New
DataColumn(columnName, Type.
GetType
(dataType))
_newCol.Caption = caption
Return
_newCol
End
Function
Private
Function
AddNewPivotRow(
ByVal
pivotData
As
DataTable)
As
DataRow
Dim
_newRow
As
DataRow = pivotData.NewRow()
For
Each
_pivotColumn
As
DataColumn
In
pivotData.Columns
_newRow(_pivotColumn) = DBNull.Value
Next
Return
_newRow
End
Function
Private
Sub
AddColumnsToGrid(
ByVal
pivotData
As
DataTable)
' Clear out the existing columns and group columns
rgResults.MasterTableView.ColumnGroups.Clear()
rgResults.MasterTableView.Columns.Clear()
' Create the column group header
Dim
_groupColumn
As
New
Telerik.Web.UI.GridColumnGroup
rgResults.MasterTableView.ColumnGroups.Add(_groupColumn)
_groupColumn.HeaderText =
"Gender"
_groupColumn.Name =
"GroupColumnHeader"
_groupColumn.HeaderStyle.HorizontalAlign = HorizontalAlign.Center
Dim
_boundColumn
As
New
Telerik.Web.UI.GridBoundColumn
rgResults.MasterTableView.Columns.Add(_boundColumn)
_boundColumn.DataField = pivotData.Columns(1).ColumnName
_boundColumn.HeaderText = pivotData.Columns(1).Caption
_boundColumn.UniqueName = pivotData.Columns(1).ColumnName.Replace(
" "
,
""
)
_boundColumn.FooterStyle.Font.Bold =
True
_boundColumn.HeaderText =
"Age"
For
_ii
As
Integer
= 2
To
pivotData.Columns.Count - 1
Step
1
Dim
_templateColumn
As
New
Telerik.Web.UI.GridTemplateColumn
rgResults.MasterTableView.Columns.Add(_templateColumn)
_templateColumn.ItemTemplate =
New
clTemplateColumn(pivotData.Columns(_ii).ColumnName.Replace(
" "
,
""
))
_templateColumn.HeaderText = pivotData.Columns(_ii).Caption
_templateColumn.UniqueName = pivotData.Columns(_ii).ColumnName.Replace(
" "
,
""
)
_templateColumn.ColumnGroupName =
"GroupColumnHeader"
_templateColumn.FooterTemplate =
New
clTemplateColumnFooter(pivotData.Columns(_ii).ColumnName.Replace(
" "
,
""
) +
"Footer"
)
Next
rgResults.ClientSettings.Selecting.CellSelectionMode = Telerik.Web.UI.GridCellSelectionMode.MultiColumn
End
Sub
Private
Sub
btnCheckSelectedItems_Click(sender
As
Object
, e
As
EventArgs)
Handles
btnCheckSelectedItems.Click
For
Each
_cell
As
Telerik.Web.UI.GridTableCell
In
rgResults.SelectedCells
Dim
_gridItem
As
Telerik.Web.UI.GridDataItem =
DirectCast
(_cell.NamingContainer, Telerik.Web.UI.GridDataItem)
Dim
_label
As
Label =
DirectCast
(_gridItem.FindControl(_cell.Column.UniqueName +
"Label"
), Label)
Dim
_label2
As
Label =
DirectCast
(_gridItem.Cells(_cell.Column.OrderIndex).FindControl(_cell.Column.UniqueName +
"Label"
), Label)
Dim
_cellText
As
String
= _label.Text
Next
End
Sub
End
Class
<
pages
>
<
controls
>
<
add
assembly
=
"Telerik.Web.UI"
namespace
=
"Telerik.Charting"
tagPrefix
=
"telerik"
/>
<
add
assembly
=
"Telerik.Web.UI"
namespace
=
"Telerik.Web.UI"
tagPrefix
=
"telerik"
/>
<
add
assembly
=
"AjaxControlToolkit"
namespace
=
"AjaxControlToolkit"
tagPrefix
=
"ajax"
/>
=== Verbose logging started: 5/7/2012 14:32:01 Build type: SHIP UNICODE 5.00.7601.00 Calling process: C:\Windows\System32\msiexec.exe ===
MSI (c) (E8:F4) [14:32:01:454]: Font created. Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
MSI (c) (E8:F4) [14:32:01:454]: Font created. Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
MSI (c) (E8:C0) [14:32:01:454]: Resetting cached policy values
MSI (c) (E8:C0) [14:32:01:454]: Machine policy value 'Debug' is 0
MSI (c) (E8:C0) [14:32:01:454]: ******* RunEngine:
******* Product: C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi
******* Action:
******* CommandLine: **********
MSI (c) (E8:C0) [14:32:01:454]: Machine policy value 'DisableUserInstalls' is 0
MSI (c) (E8:C0) [14:32:01:469]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi' against software restriction policy
MSI (c) (E8:C0) [14:32:01:469]: SOFTWARE RESTRICTION POLICY: C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi has a digital signature
MSI (c) (E8:C0) [14:32:01:469]: SOFTWARE RESTRICTION POLICY: C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi is permitted to run because the user token authorizes execution (marked SANDBOX_INERT).
MSI (c) (E8:C0) [14:32:01:469]: Cloaking enabled.
MSI (c) (E8:C0) [14:32:01:469]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (E8:C0) [14:32:01:469]: End dialog not enabled
MSI (c) (E8:C0) [14:32:01:469]: Original package ==> C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi
MSI (c) (E8:C0) [14:32:01:469]: Package we're running from ==> C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi
MSI (c) (E8:C0) [14:32:01:485]: APPCOMPAT: Compatibility mode property overrides found.
MSI (c) (E8:C0) [14:32:01:485]: APPCOMPAT: looking for appcompat database entry with ProductCode '{C59FB316-D572-497E-9997-2FBCA22EA3F0}'.
MSI (c) (E8:C0) [14:32:01:485]: APPCOMPAT: no matching ProductCode found in database.
MSI (c) (E8:C0) [14:32:01:485]: MSCOREE not loaded loading copy from system32
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'TransformsSecure' is 0
MSI (c) (E8:C0) [14:32:01:485]: User policy value 'TransformsAtSource' is 0
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'DisablePatch' is 0
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'AllowLockdownPatch' is 0
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'DisableLUAPatching' is 0
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (c) (E8:C0) [14:32:01:485]: APPCOMPAT: looking for appcompat database entry with ProductCode '{C59FB316-D572-497E-9997-2FBCA22EA3F0}'.
MSI (c) (E8:C0) [14:32:01:485]: APPCOMPAT: no matching ProductCode found in database.
MSI (c) (E8:C0) [14:32:01:485]: Transforms are not secure.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi.log'.
MSI (c) (E8:C0) [14:32:01:485]: Command Line: CURRENTDIRECTORY=C:\Users\TEMP\Downloads CLIENTUILEVEL=0 CLIENTPROCESSID=488
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{C3D823A6-DD68-40B7-8E8C-25B9551EAB7F}'.
MSI (c) (E8:C0) [14:32:01:485]: Product Code passed to Engine.Initialize: ''
MSI (c) (E8:C0) [14:32:01:485]: Product Code from property table before transforms: '{C59FB316-D572-497E-9997-2FBCA22EA3F0}'
MSI (c) (E8:C0) [14:32:01:485]: Product Code from property table after transforms: '{C59FB316-D572-497E-9997-2FBCA22EA3F0}'
MSI (c) (E8:C0) [14:32:01:485]: Product not registered: beginning first-time install
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
MSI (c) (E8:C0) [14:32:01:485]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (c) (E8:C0) [14:32:01:485]: User policy value 'SearchOrder' is 'nmu'
MSI (c) (E8:C0) [14:32:01:485]: Adding new sources is allowed.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
MSI (c) (E8:C0) [14:32:01:485]: Package name extracted from package path: 'Telerik.Web.UI_2012_1_215_Dev.msi'
MSI (c) (E8:C0) [14:32:01:485]: Package to be registered: 'Telerik.Web.UI_2012_1_215_Dev.msi'
MSI (c) (E8:C0) [14:32:01:485]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:C0) [14:32:01:485]: Note: 1: 2262 2: AdminProperties 3: -2147287038
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'DisableMsi' is 0
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (c) (E8:C0) [14:32:01:485]: User policy value 'AlwaysInstallElevated' is 0
MSI (c) (E8:C0) [14:32:01:485]: Product installation will be elevated because user is admin and product is being installed per-machine.
MSI (c) (E8:C0) [14:32:01:485]: Running product '{C59FB316-D572-497E-9997-2FBCA22EA3F0}' with elevated privileges: Product is assigned.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\TEMP\Downloads'.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '0'.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '488'.
MSI (c) (E8:C0) [14:32:01:485]: TRANSFORMS property is now:
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Favorites
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Documents
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Local
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Pictures
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Desktop
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
MSI (c) (E8:C0) [14:32:01:485]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
MSI (c) (E8:C0) [14:32:01:485]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
MSI (c) (E8:C0) [14:32:01:485]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (c) (E8:C0) [14:32:01:485]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Dean.Hully'.
MSI (c) (E8:C0) [14:32:01:485]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding COMPANYNAME property. Its value is 'Microsoft'.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi'.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\TEMP\Downloads\Telerik.Web.UI_2012_1_215_Dev.msi'.
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\TEMP\Downloads\'.
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\TEMP\Downloads\'.
MSI (c) (E8:F4) [14:32:01:485]: PROPERTY CHANGE: Adding VersionHandler property. Its value is '5.00'.
=== Logging started: 5/7/2012 14:32:01 ===
MSI (c) (E8:C0) [14:32:01:485]: Note: 1: 2205 2: 3: PatchPackage
MSI (c) (E8:C0) [14:32:01:485]: Machine policy value 'DisableRollback' is 0
MSI (c) (E8:C0) [14:32:01:485]: User policy value 'DisableRollback' is 0
MSI (c) (E8:C0) [14:32:01:485]: PROPERTY CHANGE: Adding UILevel property. Its value is '5'.
MSI (c) (E8:C0) [14:32:01:501]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (c) (E8:C0) [14:32:01:501]: Doing action: INSTALL
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: INSTALL.
MSI (c) (E8:C0) [14:32:01:501]: UI Sequence table 'InstallUISequence' is present and populated.
MSI (c) (E8:C0) [14:32:01:501]: Running UISequence
MSI (c) (E8:C0) [14:32:01:501]: PROPERTY CHANGE: Adding EXECUTEACTION property. Its value is 'INSTALL'.
MSI (c) (E8:C0) [14:32:01:501]: Doing action: ProgramFilesFolder.224D7166_2B80_4641_B1AF_1298EA696435
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: ProgramFilesFolder.224D7166_2B80_4641_B1AF_1298EA696435.
MSI (c) (E8:C0) [14:32:01:501]: PROPERTY CHANGE: Adding ProgramFilesFolder.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\'.
Action ended 14:32:01: ProgramFilesFolder.224D7166_2B80_4641_B1AF_1298EA696435. Return value 1.
MSI (c) (E8:C0) [14:32:01:501]: Doing action: ProgramFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: ProgramFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168.
MSI (c) (E8:C0) [14:32:01:501]: PROPERTY CHANGE: Adding ProgramFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\'.
Action ended 14:32:01: ProgramFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168. Return value 1.
MSI (c) (E8:C0) [14:32:01:501]: Doing action: CommonFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: CommonFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168.
MSI (c) (E8:C0) [14:32:01:501]: PROPERTY CHANGE: Adding CommonFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Common Files\'.
Action ended 14:32:01: CommonFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168. Return value 1.
MSI (c) (E8:C0) [14:32:01:501]: Doing action: FindRelatedProducts
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: FindRelatedProducts.
Action ended 14:32:01: FindRelatedProducts. Return value 1.
MSI (c) (E8:C0) [14:32:01:501]: Skipping action: PreventDowngrading.SetProperty (condition is false)
MSI (c) (E8:C0) [14:32:01:501]: Skipping action: PreventDowngrading (condition is false)
MSI (c) (E8:C0) [14:32:01:501]: Skipping action: PreventInstall.SetProperty (condition is false)
MSI (c) (E8:C0) [14:32:01:501]: Skipping action: PreventInstall (condition is false)
MSI (c) (E8:C0) [14:32:01:501]: Doing action: PrepareDlgTelerik
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: PrepareDlgTelerik.
MSI (c) (E8:F4) [14:32:01:501]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:01:501]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2898
Info 2898.For Telerik_Font_SubTitle textstyle, the system created a 'Arial' font, in 0 character set, of 14 pixels height.
MSI (c) (E8:F4) [14:32:01:501]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:01:501]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2898
Info 2898.For Telerik_Font_MidSizeText textstyle, the system created a 'Arial' font, in 0 character set, of 15 pixels height.
MSI (c) (E8:F4) [14:32:01:501]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:01:501]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2898
Info 2898.For Telerik_Font_VersionInfo textstyle, the system created a 'Microsoft Sans Serif' font, in 0 character set, of 12 pixels height.
Action ended 14:32:01: PrepareDlgTelerik. Return value 1.
MSI (c) (E8:C0) [14:32:01:501]: Doing action: AppSearch
MSI (c) (E8:C0) [14:32:01:501]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: AppSearch.
MSI (c) (E8:C0) [14:32:01:516]: Note: 1: 1322 2:
MSI (c) (E8:C0) [14:32:01:516]: Note: 1: 1322 2:
MSI (c) (E8:C0) [14:32:01:516]: Note: 1: 1325 2: HelpLibManager.exe
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding HELPLIBMANAGER property. Its value is 'C:\Program Files\Microsoft Help Viewer\v1.0\HelpLibManager.exe'.
MSI (c) (E8:C0) [14:32:01:516]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE32\Software\Telerik\RadControlsForASPNETAJAX\2012.Q1 3: 2
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding NETFRAMEWORK20 property. Its value is '#1'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding NETFRAMEWORK35 property. Its value is '#1'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding NETFRAMEWORK35_SP_LEVEL property. Its value is '#1'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding VS90DEVENV property. Its value is 'c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding VS2010DEVENV property. Its value is 'c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding NETFRAMEWORK40FULL property. Its value is '#1'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding INSTALLDIRVS90.09DC2999_7041_45B6_89D1_C796A0E21E65 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding INSTALLDIRVS2010.E766D7F3_5FB8_40B7_8EFE_590F023762B3 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding INSTALLDIRVS90.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\'.
MSI (c) (E8:C0) [14:32:01:516]: Note: 1: 1325 2: ProjectTemplates
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding VS90_PROJECTTEMPLATES_DIR.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\'.
MSI (c) (E8:C0) [14:32:01:516]: Note: 1: 1325 2: ItemTemplates
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding VS90_ITEMTEMPLATES_DIR.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding VS90_SCHEMAS_DIR.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Xml\Schemas\'.
MSI (c) (E8:C0) [14:32:01:516]: PROPERTY CHANGE: Adding VS2010ENVDIR.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding PRODUCTDIRVS2010.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding WEBPROJDIR.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1322 2:
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1322 2:
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1325 2: 2012.1.214.0
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1324 2: Telerik WebUI VSExtensions 3: 1
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1325 2: Extensions
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1325 2: 2012.1.214.0
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1324 2: Telerik WebUI VSExtensions 3: 1
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 1325 2: Extensions
Action ended 14:32:01: AppSearch. Return value 1.
MSI (c) (E8:C0) [14:32:01:532]: Skipping action: LaunchConditionsNotSatisfied.SetProperty (condition is false)
MSI (c) (E8:C0) [14:32:01:532]: Doing action: LaunchConditions
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: LaunchConditions.
Action ended 14:32:01: LaunchConditions. Return value 1.
MSI (c) (E8:C0) [14:32:01:532]: Doing action: ValidateProductID
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: ValidateProductID.
Action ended 14:32:01: ValidateProductID. Return value 1.
MSI (c) (E8:C0) [14:32:01:532]: Doing action: CostInitialize
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: CostInitialize.
MSI (c) (E8:C0) [14:32:01:532]: Machine policy value 'MaxPatchCacheSize' is 10
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
Action ended 14:32:01: CostInitialize. Return value 1.
MSI (c) (E8:C0) [14:32:01:532]: Doing action: FileCost
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: FileCost.
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: Class
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: Extension
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: TypeLib
Action ended 14:32:01: FileCost. Return value 1.
MSI (c) (E8:C0) [14:32:01:532]: Doing action: CostFinalize
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: CostFinalize.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (c) (E8:C0) [14:32:01:532]: Note: 1: 2205 2: 3: Patch
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding StartMenuTelerikDir property. Its value is 'C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding StartMenuDir property. Its value is 'C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Telerik\RadControls for ASP.NET AJAX Q1 2012\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding TELERIKDIR property. Its value is 'C:\Program Files (x86)\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding INSTALLLOCATION property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Skins property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Skins\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Scripts property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Scripts\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VSExtensions property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding MergeRedirectFolder.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010FilesFolder.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2010\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Xml2010.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Xml\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Schemas2010.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Xml\Schemas\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplates.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesVisualBasic.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\VisualBasic\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesVisualBasicWeb.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\VisualBasic\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesCSharp.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\CSharp\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesCSharpWeb.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\CSharp\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesWeb.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesWebVisualBasic.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\VisualBasic\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRProjectTemplatesWebCSharp.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\CSharp\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRTemplates.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRTelerik.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRCache.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\Telerik\Cache\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2010ENVDIRWeb.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\Telerik\Cache\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Extensions.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Telerik.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding TelerikUserSettingsVSExtensions.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik UserSettings VSExtensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VSPackageVersion.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik UserSettings VSExtensions\2012.1.214.0\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding WebSnippets.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding HTMLSnippets.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding HTMLSnippets1033.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\1033\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ASPNET.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\1033\ASP.NET\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ASPNETSnippets.224D7166_2B80_4641_B1AF_1298EA696435 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\1033\ASP.NET\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Telerik.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Common Files\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VSExtensions.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Common Files\Telerik\VSExtensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2008.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Common Files\Telerik\VSExtensions\VS2008\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding MergeRedirectFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding VS2008FilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Resources.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ResourcesDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ResourcesDir_0.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\T4Templates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ResourcesDir_1.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\T4Templates\UpgradeLog\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenarios.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_213.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_229.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\RadDialogTemplates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_223.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\BlockingRadDialog\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_214.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\BasicRadDialog\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_200.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadTreeView\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_207.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadTreeView\DragAndDropServer\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_201.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadTreeView\DragAndDropClient\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_181.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadToolTip\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_191.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadToolTip\TooltipifyRadTreeViewServer\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_182.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadToolTip\TooltipifyRadTreeViewClient\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_139.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_174.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\XmlProvider\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_164.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\WebServiceWithCustomDbProvider\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_157.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\InsertEditTemplates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_140.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\AdvancedTemplates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_94.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_133.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\RelatedGrids\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_127.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\GroupingEnabled\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_120.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToPDFServerSide\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_113.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToPDFClientSide\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_107.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToExcelWordCSVServerSide\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_101.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToExcelWordCSVClientSide\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_95.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\AutomaticCrudOperations\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_78.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadEditor\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_85.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadEditor\ToolSets\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_79.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadEditor\Performance\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_44.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_71.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\TreeViewInComboBox\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_65.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\RelatedComboBoxes\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_57.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\LoadOnDemandWebServiceMode\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_51.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\LoadOnDemandServerSideMode\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_45.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\ComboInGrid\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_31.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadCalendar\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_38.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadCalendar\SharedTimeView\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_32.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadCalendar\SharedCalendar\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_18.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAsyncUpload\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_19.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAsyncUpload\ImageUploader\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_10.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAjax\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_11.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAjax\JavaScriptAfterAJAX\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_3.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\General\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ControlScenariosDir_4.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\General\TelerikEnabledWebForm\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagement.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_28.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Upgrade\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_26.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\NewProject\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_24.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Convert\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_22.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\ConfigureToolbox\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_20.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Configure\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_10.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_18.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\Net40\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_16.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\Net35\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectManagementDir_14.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\Net20\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ConfigurationDirectory.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Configuration\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ConfigurationDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Configuration\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ReferencedAssemblies.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_6.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_9.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\Web\VisualBasic\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_7.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\Web\CSharp\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_3.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\VisualBasic\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_4.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\VisualBasic\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_0.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ItemTemplatesDir2008_1.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_12.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_15.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Web\VisualBasic\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_13.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Web\CSharp\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_9.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\VisualBasic\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_10.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\VisualBasic\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_3.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_4.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Telerik\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_0.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\CSharp\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ProjectTemplatesDir2008_1.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\CSharp\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding INSTALLDIRVS90Templates.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding INSTALLDIRVS90Telerik.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding INSTALLDIRVS90Cache.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\Telerik\Cache\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding INSTALLDIRVS90Web.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\Telerik\Cache\Web\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding MergeRedirectFolder.BADA0B94_F997_437F_B0C0_90F1F782221F property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Extensions.E766D7F3_5FB8_40B7_8EFE_590F023762B3 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Extensions_Telerik.E766D7F3_5FB8_40B7_8EFE_590F023762B3 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Extensions_VSPackage.E766D7F3_5FB8_40B7_8EFE_590F023762B3 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik.CommonPackage\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Extensions_VSPackage_Version.E766D7F3_5FB8_40B7_8EFE_590F023762B3 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik.CommonPackage\1.0.11.0\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding PrivateAssemblies90.09DC2999_7041_45B6_89D1_C796A0E21E65 property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding LicenseAgreements property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\LicenseAgreements\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding LicenseAgreements_ThirdParty property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\LicenseAgreements\ThirdParty\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Documentation property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Documentation\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding ImageEditorDialogs property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\ImageEditorDialogs\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding EditorDialogs property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\EditorDialogs\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding App_GlobalResources property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_GlobalResources\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding App_Data property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_Data\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding App_Data_RadSpell property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_Data\RadSpell\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding App_Data_RadCaptcha property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_Data\RadCaptcha\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding GacFiles property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\GacFiles\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding GacFiles40 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\GacFiles\GacFiles40\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding GacFiles35 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\GacFiles\GacFiles35\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding Live_Demos property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding SLN2010Dir property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2010Dir\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding DemosBin40 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2010Dir\Bin\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding SLN2008Dir property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2008Dir\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding DemosBin35 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2008Dir\Bin\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding bin40 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Bin40\'.
MSI (c) (E8:C0) [14:32:01:532]: PROPERTY CHANGE: Adding bin35 property. Its value is 'C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Bin35\'.
MSI (c) (E8:C0) [14:32:01:532]: Target path resolution complete. Dumping Directory table...
MSI (c) (E8:C0) [14:32:01:532]: Note: target paths subject to change (via custom actions or browsing)
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: TARGETDIR , Object: C:\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: WindowsFolder , Object: C:\Windows\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: DesktopFolder , Object: C:\Users\Public\Desktop\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ProgramMenuFolder , Object: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: StartMenuTelerikDir , Object: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Telerik\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: StartMenuDir , Object: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Telerik\RadControls for ASP.NET AJAX Q1 2012\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ProgramFilesFolder , Object: C:\Program Files (x86)\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: TELERIKDIR , Object: C:\Program Files (x86)\Telerik\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: INSTALLLOCATION , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Skins , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Skins\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Scripts , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Scripts\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VSExtensions , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: MergeRedirectFolder.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010FilesFolder.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2010\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ProgramFilesFolder.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: PRODUCTDIRVS2010.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Xml2010.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Xml\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Schemas2010.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Xml\Schemas\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIR.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplates.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesVisualBasic.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\VisualBasic\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesVisualBasicWeb.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\VisualBasic\Web\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesCSharp.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\CSharp\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesCSharpWeb.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\CSharp\Web\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesWeb.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesWebVisualBasic.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\VisualBasic\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRProjectTemplatesWebCSharp.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\CSharp\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRTemplates.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRTelerik.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\Telerik\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRCache.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\Telerik\Cache\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2010ENVDIRWeb.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Templates\Telerik\Cache\Web\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Extensions.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Telerik.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: TelerikUserSettingsVSExtensions.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik UserSettings VSExtensions\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VSPackageVersion.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik UserSettings VSExtensions\2012.1.214.0\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: WEBPROJDIR.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: WebSnippets.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: HTMLSnippets.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: HTMLSnippets1033.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\1033\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ASPNET.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\1033\ASP.NET\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ASPNETSnippets.224D7166_2B80_4641_B1AF_1298EA696435 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Web\Snippets\HTML\1033\ASP.NET\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: CommonFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Common Files\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Telerik.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Common Files\Telerik\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VSExtensions.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Common Files\Telerik\VSExtensions\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2008.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Common Files\Telerik\VSExtensions\VS2008\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: MergeRedirectFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: VS2008FilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: Resources.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ResourcesDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ResourcesDir_0.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\T4Templates\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ResourcesDir_1.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Resources\T4Templates\UpgradeLog\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenarios.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_213.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_229.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\RadDialogTemplates\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_223.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\BlockingRadDialog\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_214.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadWindow\BasicRadDialog\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_200.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadTreeView\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_207.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadTreeView\DragAndDropServer\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_201.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadTreeView\DragAndDropClient\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_181.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadToolTip\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_191.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadToolTip\TooltipifyRadTreeViewServer\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_182.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadToolTip\TooltipifyRadTreeViewClient\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_139.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_174.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\XmlProvider\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_164.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\WebServiceWithCustomDbProvider\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_157.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\InsertEditTemplates\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_140.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadScheduler\AdvancedTemplates\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_94.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_133.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\RelatedGrids\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_127.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\GroupingEnabled\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_120.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToPDFServerSide\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_113.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToPDFClientSide\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_107.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToExcelWordCSVServerSide\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_101.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\ExportToExcelWordCSVClientSide\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_95.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadGrid\AutomaticCrudOperations\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_78.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadEditor\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_85.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadEditor\ToolSets\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_79.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadEditor\Performance\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_44.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_71.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\TreeViewInComboBox\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_65.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\RelatedComboBoxes\
MSI (c) (E8:C0) [14:32:01:532]: Dir (target): Key: ControlScenariosDir_57.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\LoadOnDemandWebServiceMode\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_51.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\LoadOnDemandServerSideMode\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_45.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadComboBox\ComboInGrid\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_31.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadCalendar\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_38.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadCalendar\SharedTimeView\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_32.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadCalendar\SharedCalendar\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_18.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAsyncUpload\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_19.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAsyncUpload\ImageUploader\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_10.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAjax\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_11.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\RadAjax\JavaScriptAfterAJAX\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_3.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\General\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ControlScenariosDir_4.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ControlScenarios\General\TelerikEnabledWebForm\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagement.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_28.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Upgrade\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_26.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\NewProject\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_24.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Convert\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_22.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\ConfigureToolbox\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_20.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Configure\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_10.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_18.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\Net40\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_16.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\Net35\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectManagementDir_14.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\ProjectManagement\Common\Net20\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ConfigurationDirectory.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Configuration\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ConfigurationDir.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\Configuration\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ReferencedAssemblies.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\VS2008\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProgramFilesFolder.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: VS90_SCHEMAS_DIR.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Xml\Schemas\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: VS90_ITEMTEMPLATES_DIR.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_6.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_9.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\Web\VisualBasic\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_7.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\Web\CSharp\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_3.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\VisualBasic\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_4.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\VisualBasic\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_0.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ItemTemplatesDir2008_1.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: VS90_PROJECTTEMPLATES_DIR.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_12.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_15.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Web\VisualBasic\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_13.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Web\CSharp\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_9.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\VisualBasic\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_10.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\VisualBasic\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_3.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Telerik\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_4.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\Telerik\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_0.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\CSharp\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ProjectTemplatesDir2008_1.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates\CSharp\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS90.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS90Templates.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS90Telerik.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\Telerik\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS90Cache.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\Telerik\Cache\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS90Web.DAA2BEE2_62EA_42EC_933D_1B2C0DF16168 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\Templates\Telerik\Cache\Web\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: MergeRedirectFolder.BADA0B94_F997_437F_B0C0_90F1F782221F , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\VSExtensions\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS2010.E766D7F3_5FB8_40B7_8EFE_590F023762B3 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: Extensions.E766D7F3_5FB8_40B7_8EFE_590F023762B3 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: Extensions_Telerik.E766D7F3_5FB8_40B7_8EFE_590F023762B3 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: Extensions_VSPackage.E766D7F3_5FB8_40B7_8EFE_590F023762B3 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik.CommonPackage\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: Extensions_VSPackage_Version.E766D7F3_5FB8_40B7_8EFE_590F023762B3 , Object: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Telerik\Telerik.CommonPackage\1.0.11.0\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: INSTALLDIRVS90.09DC2999_7041_45B6_89D1_C796A0E21E65 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: PrivateAssemblies90.09DC2999_7041_45B6_89D1_C796A0E21E65 , Object: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: LicenseAgreements , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\LicenseAgreements\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: LicenseAgreements_ThirdParty , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\LicenseAgreements\ThirdParty\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: Documentation , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Documentation\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: ImageEditorDialogs , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\ImageEditorDialogs\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: EditorDialogs , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\EditorDialogs\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: App_GlobalResources , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_GlobalResources\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: App_Data , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_Data\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: App_Data_RadSpell , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_Data\RadSpell\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: App_Data_RadCaptcha , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\App_Data\RadCaptcha\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: GacFiles , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\GacFiles\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: GacFiles40 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\GacFiles\GacFiles40\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: GacFiles35 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\GacFiles\GacFiles35\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: Live_Demos , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: SLN2010Dir , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2010Dir\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: DemosBin40 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2010Dir\Bin\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: SLN2008Dir , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2008Dir\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: DemosBin35 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Live Demos\SLN2008Dir\Bin\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: bin40 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Bin40\
MSI (c) (E8:C0) [14:32:01:547]: Dir (target): Key: bin35 , Object: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Bin35\
MSI (c) (E8:C0) [14:32:01:547]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
Action ended 14:32:01: CostFinalize. Return value 1.
MSI (c) (E8:C0) [14:32:01:547]: Skipping action: MaintenanceWelcomeDlgTelerik (condition is false)
MSI (c) (E8:C0) [14:32:01:547]: Skipping action: ResumeDlgTelerik (condition is false)
MSI (c) (E8:C0) [14:32:01:547]: Skipping action: UpgradeDlgTelerik (condition is false)
MSI (c) (E8:C0) [14:32:01:547]: Doing action: WelcomeDlgTelerik
MSI (c) (E8:C0) [14:32:01:547]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:01: WelcomeDlgTelerik.
MSI (c) (E8:F4) [14:32:01:563]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:01:563]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2898
Info 2898.For Telerik_Font_LargeText textstyle, the system created a 'Arial' font, in 0 character set, of 27 pixels height.
MSI (c) (E8:F4) [14:32:01:563]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:01:563]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2898
Info 2898.For Telerik_Font_MidSizeText_Bold textstyle, the system created a 'Arial' font, in 0 character set, of 15 pixels height.
MSI (c) (E8:4C) [14:32:01:563]: Note: 1: 2205 2: 3: _RemoveFilePath
MSI (c) (E8:4C) [14:32:01:563]: Note: 1: 1402 2: HKEY_CLASSES_ROOT\.NET AJAX Q1 2012 Folder 3: 2
MSI (c) (E8:4C) [14:32:01:563]: Note: 1: 1402 2: HKEY_CLASSES_ROOT\.NET AJAX Q1 2012 Documentation 3: 2
MSI (c) (E8:4C) [14:32:01:563]: Note: 1: 1402 2: HKEY_CLASSES_ROOT\.NET AJAX Q1 2012 Live Examples 3: 2
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 1402 2: HKEY_CLASSES_ROOT\.NET AJAX Q1 2012 Live Examples 3: 2
MSI (c) (E8:4C) [14:32:01:594]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: BindImage
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: ProgId
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: PublishComponent
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: SelfReg
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: Extension
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: Font
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: Class
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2205 2: 3: TypeLib
MSI (c) (E8:4C) [14:32:01:594]: Note: 1: 2727 2:
MSI (c) (E8:F4) [14:32:02:749]: PROPERTY CHANGE: Adding WixUI_InstallMode property. Its value is 'InstallComplete'.
MSI (c) (E8:F4) [14:32:02:749]: PROPERTY CHANGE: Modifying INSTALLLEVEL property. Its current value is '1'. Its new value: '1000'.
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2727 2:
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2826
DEBUG: Error 2826: Control Assemblies40 on dialog VerifyReadyDlgTelerik extends beyond the boundaries of the dialog to the right by 6 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: VerifyReadyDlgTelerik, Assemblies40, to the right
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2826
DEBUG: Error 2826: Control TelerikVSExtensionsVS2008 on dialog VerifyReadyDlgTelerik extends beyond the boundaries of the dialog to the right by 6 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: VerifyReadyDlgTelerik, TelerikVSExtensionsVS2008, to the right
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2826
DEBUG: Error 2826: Control TelerikVSExtensionsVS2010 on dialog VerifyReadyDlgTelerik extends beyond the boundaries of the dialog to the right by 6 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: VerifyReadyDlgTelerik, TelerikVSExtensionsVS2010, to the right
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:02:780]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2898
Info 2898.For Telerik_Font_Title textstyle, the system created a 'Arial' font, in 0 character set, of 15 pixels height.
MSI (c) (E8:F4) [14:32:02:795]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:02:795]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2826
DEBUG: Error 2826: Control Assemblies35 on dialog VerifyReadyDlgTelerik extends beyond the boundaries of the dialog to the right by 6 pixels
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: VerifyReadyDlgTelerik, Assemblies35, to the right
MSI (c) (E8:F4) [14:32:03:310]: Note: 1: 2727 2:
MSI (c) (E8:F4) [14:32:03:825]: Note: 1: 2727 2:
MSI (c) (E8:F4) [14:32:03:856]: Doing action: PromptVSCloseCA
MSI (c) (E8:F4) [14:32:03:856]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:03: PromptVSCloseCA.
MSI (c) (E8:14) [14:32:03:856]: Invoking remote custom action. DLL: C:\Windows\system32\config\SYSTEM~1\AppData\Local\Temp\MSIFF7.tmp, Entrypoint: PromptVisualStudioClose
MSI (c) (E8:D8) [14:32:03:856]: Cloaking enabled.
MSI (c) (E8:D8) [14:32:03:856]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (E8:D8) [14:32:03:856]: Connected to service for CA interface.
MSI (c) (E8:F4) [14:32:03:887]: Note: 1: 1723 2: PromptVSCloseCA 3: PromptVisualStudioClose 4: C:\Windows\system32\config\SYSTEM~1\AppData\Local\Temp\MSIFF7.tmp
MSI (c) (E8:F4) [14:32:03:887]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:03:887]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1723
Error 1723. There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor. Action PromptVSCloseCA, entry: PromptVisualStudioClose, library: C:\Windows\system32\config\SYSTEM~1\AppData\Local\Temp\MSIFF7.tmp
MSI (c) (E8:F4) [14:32:05:284]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:05:284]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
MSI (c) (E8:F4) [14:32:05:284]: Product: Telerik RadControls for ASP.NET AJAX Q1 2012 -- Error 1723. There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor. Action PromptVSCloseCA, entry: PromptVisualStudioClose, library: C:\Windows\system32\config\SYSTEM~1\AppData\Local\Temp\MSIFF7.tmp
Action ended 14:32:05: PromptVSCloseCA. Return value 3.
MSI (c) (E8:F4) [14:32:05:284]: Note: 1: 2205 2: 3: Error
MSI (c) (E8:F4) [14:32:05:284]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2896
DEBUG: Error 2896: Executing action PromptVSCloseCA failed.
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2896. The arguments are: PromptVSCloseCA, ,
Action ended 14:32:05: WelcomeDlgTelerik. Return value 3.
MSI (c) (E8:C0) [14:32:05:284]: Doing action: FatalErrorTelerik
MSI (c) (E8:C0) [14:32:05:284]: Note: 1: 2205 2: 3: ActionText
Action start 14:32:05: FatalErrorTelerik.
Action ended 14:32:08: FatalErrorTelerik. Return value 2.
Action ended 14:32:08: INSTALL. Return value 3.
MSI (c) (E8:C0) [14:32:08:226]: Destroying RemoteAPI object.
MSI (c) (E8:D8) [14:32:08:226]: Custom Action Manager thread ending.
=== Logging stopped: 5/7/2012 14:32:08 ===
MSI (c) (E8:C0) [14:32:08:226]: Windows Installer installed the product. Product Name: Telerik RadControls for ASP.NET AJAX Q1 2012. Product Version: 12.1.215.0. Product Language: 1033. Manufacturer: Telerik Corp.. Installation success or error status: 1603.
MSI (c) (E8:C0) [14:32:08:226]: Grabbed execution mutex.
MSI (c) (E8:C0) [14:32:08:226]: Cleaning up uninstalled install packages, if any exist
MSI (c) (E8:C0) [14:32:08:226]: MainEngineThread is returning 1603
=== Verbose logging stopped: 5/7/2012 14:32:08 ===
string[] sImageSearchPatterns = new string[] { "*.png", "*.gif", "*.jpg" , "*.jpeg"};
RadEditor1.ImageManager.SearchPatterns = sImageSearchPatterns;
function GetExternalData(userId) { var parameters = "GetExternalData," + userId; try { $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest(parameters); } catch (e) { } } When I call ajaxRequest method of RadAjaxManager I get a strange error: 'error': 'Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Value cannot be null. Parameter name: key'