1639 lines
107 KiB
Scheme
1639 lines
107 KiB
Scheme
<?xml version="1.0" encoding="UTF-16"?>
|
||
<!DOCTYPE DCARRIER SYSTEM "Mantis.DTD">
|
||
|
||
<DCARRIER
|
||
CarrierRevision="1"
|
||
DTDRevision="16"
|
||
>
|
||
<TASKS
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </TASKS>
|
||
|
||
<PLATFORMS
|
||
Context="1"
|
||
> </PLATFORMS>
|
||
|
||
<REPOSITORIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </REPOSITORIES>
|
||
|
||
<GROUPS
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </GROUPS>
|
||
|
||
<COMPONENTS
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<COMPONENT
|
||
ComponentVSGUID="{125761BC-34D9-4133-8DE0-32930813CDF7}"
|
||
ComponentVIGUID="{AC960A41-0A39-4DAA-A6CB-51E641A2EF27}"
|
||
Revision="627"
|
||
RepositoryVSGUID="{8E0BE9ED-7649-47F3-810B-232D36C430B4}"
|
||
Visibility="1000"
|
||
MultiInstance="False"
|
||
Released="False"
|
||
Editable="True"
|
||
HTMLTitle="Settings"
|
||
HTMLFinal="False"
|
||
IsMacro="False"
|
||
Opaque="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<SCRIPTTEXT
|
||
language="VBScript"
|
||
src="\\Alarm\TeamSys\KaelR\public\Smoke\Configurable Settings\DynamicProperties.vbs"
|
||
encoded="False"
|
||
><![CDATA[
|
||
Function IIf(e, t, f)
|
||
If e Then IIf = t Else IIf = f
|
||
End Function
|
||
|
||
Sub cmiOnBuildResource(Flags, Resource)
|
||
Dim P
|
||
Dim NewValue
|
||
|
||
Set P = CreateObject("Scripting.Dictionary")
|
||
|
||
For Each Property in cmiThis.Properties
|
||
P.Add Property.Name, Property.Value
|
||
Next
|
||
|
||
Set Resource = Resource.CMI.CloneObject(Resource)
|
||
|
||
For Each Property in Resource.Properties
|
||
If Property.Format = 6 Then ' cmiExpression
|
||
NewValue = Eval(Property.Value)
|
||
|
||
If IsNumeric(NewValue) Then
|
||
Property.Format = 3 ' cmiInteger
|
||
Else
|
||
Property.Format = 2 ' cmiString
|
||
End If
|
||
|
||
Property.Value = NewValue
|
||
End If
|
||
Next
|
||
|
||
cmiSuper.cmiOnBuildResource Flags, Resource
|
||
End Sub
|
||
]]></SCRIPTTEXT>
|
||
|
||
<HTMLTEXT
|
||
src="\\Alarm\TeamSys\KaelR\public\Smoke\Configurable Settings\DynamicProperties.asp"
|
||
><![CDATA[
|
||
<% ASP %>
|
||
<%= ASP.Header %>
|
||
<%= ASP.PropHandlers %>
|
||
<% EmitProperties(ASP) %>
|
||
<%= ASP.Footer %>
|
||
<%
|
||
Sub EmitProperties(ASP)
|
||
Dim PropName
|
||
Dim InSettings
|
||
Dim InHeading
|
||
Dim InTable
|
||
|
||
For Each Property in ASP.Instance.Properties
|
||
With ASP.Instance.Properties
|
||
If InStr(Property.Name, "cmiHeading:") = 1 Then
|
||
PropName = Mid(Property.Name, Len("cmiHeading:") + 1)
|
||
|
||
If InTable Then
|
||
%>
|
||
</table>
|
||
<%
|
||
ElseIf InHeading Then
|
||
%>
|
||
<p>No Settings Available</p>
|
||
<%
|
||
End If
|
||
|
||
If InHeading Then
|
||
%>
|
||
<%= ASP.EmitTopJump %>
|
||
</div>
|
||
<%
|
||
End If
|
||
|
||
If Not InSettings Then
|
||
%>
|
||
<p><b>Available Settings:</b></p>
|
||
<%= ASP.EmitTOC %>
|
||
<%
|
||
End If
|
||
|
||
InSettings = True
|
||
InHeading = True
|
||
InTable = False
|
||
%>
|
||
<%= ASP.EmitHeading(3, PropName, "nav" & PropName) %>
|
||
<p>| <%= ASP.EmitShowSpan(PropName, False) %> | <%= ASP.EmitMoreInfoSpan(PropName & "_Info", False) %> |
|
||
<%= "<span class=""info"" id=""" & PropName & "_Info"" style=""display: none;"">" & Replace(Property.Value, vbLF, "<BR>") & "</span>" %></p>
|
||
<%= "<div id=""" & PropName & """ style=""display: none;"" onpropertychange=""FixTableSizes"">" %>
|
||
<%
|
||
ElseIf InStr(Property.Name, "cmiDynamic:") = 1 Then
|
||
PropName = Mid(Property.Name, Len("cmiDynamic:") + 1)
|
||
If .Exists(PropName) Then
|
||
If Not InSettings Then
|
||
%>
|
||
<p><b>Available Settings:</b></p>
|
||
<%= ASP.EmitTOC %>
|
||
<%
|
||
End If
|
||
|
||
If Not InHeading Then
|
||
%>
|
||
<%= ASP.EmitHeading(3, "General Properties", "navGeneralProps") %>
|
||
<p>| <%= ASP.EmitShowSpan("GeneralProps", True) %> |</p>
|
||
|
||
<div id="GeneralProps" style="display: block;" onpropertychange="FixTableSizes">
|
||
<%
|
||
End If
|
||
|
||
If Not InTable Then
|
||
%>
|
||
<table>
|
||
<%
|
||
End If
|
||
|
||
InSettings = True
|
||
InHeading = True
|
||
InTable = True
|
||
%>
|
||
<tr>
|
||
<td id="cmiDynamicLabel"><%= ASP.EmitLabel(PropName, PropName, PropName & "_Info") %></td>
|
||
<%
|
||
If .Exists("cmiDynamicSelect:" & PropName) Then
|
||
%>
|
||
<td><%= ASP.EmitSelectFromProp(PropName, Empty, Empty, Empty, "cmiDynamicSelect:" & PropName, 1) %> </td>
|
||
<%
|
||
Else
|
||
%>
|
||
<td><%= ASP.EmitEditbox(PropName, Empty, Empty, Empty) %> </td>
|
||
<%
|
||
End If
|
||
%>
|
||
</tr>
|
||
<tr>
|
||
<td></td>
|
||
<td><%= "<span class=""info"" id=""" & PropName & "_Info"" style=""display: none;"">" & Replace(Property.Value, vbLF, "<BR>") & "</span>" %></td>
|
||
</tr>
|
||
<%
|
||
End If
|
||
End If
|
||
End With
|
||
Next
|
||
|
||
If Not InSettings Then
|
||
%>
|
||
<p><b>No Settings Available</b></p>
|
||
<%
|
||
Else
|
||
If InTable Then
|
||
%>
|
||
</table>
|
||
<%
|
||
ElseIf InHeading Then
|
||
%>
|
||
<p>No Settings Available</p>
|
||
<%
|
||
End If
|
||
|
||
If InHeading Then
|
||
%>
|
||
</div>
|
||
<%
|
||
End If
|
||
%>
|
||
<script>
|
||
Sub FixTableSizes
|
||
Set Elements = Document.All("cmiDynamicLabel")
|
||
If Not Elements Is Nothing Then
|
||
Set Elem = Elements
|
||
On Error Resume Next
|
||
For Each Elem in Elements
|
||
If Elem.Width = "" And Elem.OffsetWidth > 0 Then
|
||
Elem.Width = Elem.OffsetWidth
|
||
End If
|
||
Next
|
||
On Error Goto 0
|
||
End If
|
||
End Sub
|
||
FixTableSizes
|
||
</script>
|
||
<%
|
||
End If
|
||
End Sub
|
||
%>
|
||
]]></HTMLTEXT>
|
||
|
||
<HELPCONTEXT
|
||
src=".\Windows_Update_AutoUpdate.htm"
|
||
><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||
<HTML DIR="LTR"><HEAD>
|
||
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
|
||
<STYLE TYPE="text/css">
|
||
<!--
|
||
BODY { font: normal 8pt Tahoma; background-color: #FFFFFF; }
|
||
P { font: normal 8pt Tahoma; }
|
||
.showhide { color: blue; text-decoration: underline; cursor: hand; }
|
||
.callout { font: normal 8pt Tahoma; background-color: #E0E0E0; padding: 10pt; }
|
||
.code { font: normal 8pt Courier New; }
|
||
UL { font: normal 8pt Tahoma; list-style: square outside; margin-left: 0.25in; }
|
||
OL { font: normal 8pt Tahoma; list-style: decimal outside; margin-left: 0.25in; }
|
||
H1 { font: bold 12pt Tahoma; margin-bottom: -12pt; }
|
||
H2 { font: bold 10pt Tahoma; margin-bottom: -12pt; }
|
||
H3 { font: bold 8pt Tahoma; margin-bottom: -12pt; }
|
||
H4 { font: italic 8pt Tahoma; margin-bottom: -12pt; }
|
||
TABLE { font: normal 8pt Tahoma; text-align: left; padding: 2px; }
|
||
CAPTION { font: bold 8pt Tahoma; text-align: left; padding: 2px; }
|
||
THEAD { font: bold 8pt Tahoma; text-align: left; padding: 2px; background-color: #F0F0F0 }
|
||
TH { font: bold 8pt Tahoma; text-align: left; padding: 2px; background-color: #F0F0F0 }
|
||
TBODY { font: normal 8pt Tahoma; text-align: left; padding: 2px; }
|
||
TD { font: normal 8pt Tahoma; text-align: left; padding: 2px; }
|
||
TR { font: normal 8pt Tahoma; text-align: left; padding: 2px; }
|
||
CODE { font-family: Courier New; }
|
||
TT { font-family: Courier New; }
|
||
KBD { font-family: Courier New; font-weight: bold; }
|
||
VAR { font-family: Courier New; font-style: italic; }
|
||
EM { font-style: italic; }
|
||
I { font-style: italic; }
|
||
STRONG { font-weight: bold; }
|
||
B { font-weight: bold; }
|
||
-->
|
||
</STYLE>
|
||
</HEAD>
|
||
<BODY TOPMARGIN="0">
|
||
|
||
The Windows Update Automatic Update component provides critical operating system updates, such as driver updates, security fixes, and application updates. This component keeps the computer up-to-date by automatically downloading updates from the Windows Update Web site and making them available to the user. This component also includes the <B>Automatic Update</B> tab in the <B>System Properties</B> dialog.</P>
|
||
|
||
<P>Automatic Update (AU) runs as a local service, which cooperates with a process in the current user’s context to download and install updates from the Windows Update Web site. </P>
|
||
|
||
<H3>Component Configuration</H3>
|
||
|
||
<P>There are no configuration requirements for this component.</P>
|
||
|
||
</BODY>
|
||
</HTML>
|
||
]]></HELPCONTEXT>
|
||
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="Auto Update Notification"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>3</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDynamic:Auto Update Notification"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Controls the behavior of the Windows Update Automatic Update wizard when new updates are available.</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDynamicSelect:Auto Update Notification"
|
||
Format="Multi"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>440069007300610062006C00650020006E006F00740069006600690063006100740069006F006E002E0000004E006F00740069006600790020006200650066006F0072006500200064006F0077006E006C006F006100640069006E006700200061006E006400200069006E007300740061006C006C0069006E0067002E0000004E006F00740069006600790020006F006E006C00790020006200650066006F0072006500200069006E007300740061006C006C0069006E0067002E000000</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<RESOURCES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<RESOURCE
|
||
Name="File(819):"%11%","wuauclt.exe""
|
||
ResTypeVSGUID="{E66B49F6-4A35-4246-87E8-5C1A468315B5}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wuauclt.exe</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Windows Update AutoUpdate Client</DISPLAYNAME>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","wuaueng.dll""
|
||
ResTypeVSGUID="{E66B49F6-4A35-4246-87E8-5C1A468315B5}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wuaueng.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Windows Update AutoUpdate Engine</DISPLAYNAME>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","wuauserv.dll""
|
||
ResTypeVSGUID="{E66B49F6-4A35-4246-87E8-5C1A468315B5}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wuauserv.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Windows Update AutoUpdate Service</DISPLAYNAME>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="FBRegDLL(819):"%11%\wuaueng.dll","""
|
||
ResTypeVSGUID="{322D2CA9-219E-4380-989B-12E8A830DFFA}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="Arguments"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DLLEntryPoint"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DLLInstall"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DLLRegister"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="FilePath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%\wuaueng.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Flags"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Timeout"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update","AUOptions""
|
||
ResTypeVSGUID="{2C10DB69-39AB-48A4-A83F-9AB3ACBA7C45}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>AUOptions</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Expr"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
><![CDATA[P("Auto Update Notification")]]></PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\AUOptions</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%18%","wuauhelp.chm""
|
||
ResTypeVSGUID="{E66B49F6-4A35-4246-87E8-5C1A468315B5}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wuauhelp.chm</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%18%</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Overwrite"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcFileCRC"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcFileSize"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>wuauhelp.chm</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%17%","wuau.adm""
|
||
ResTypeVSGUID="{E66B49F6-4A35-4246-87E8-5C1A468315B5}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wuau.adm</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%17%</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Overwrite"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcFileCRC"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcFileSize"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="SrcPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>wuau.adm</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","kernel32.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>kernel32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'kernel32.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","winhttp.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>winhttp.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'winhttp.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","msi.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>msi.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'msi.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","advpack.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>advpack.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'advpack.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","sens.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>sens.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'sens.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","iuctl.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>iuctl.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'iuctl.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","wininet.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wininet.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'wininet.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","advapi32.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>advapi32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'advapi32.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","iphlpapi.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>iphlpapi.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'iphlpapi.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","ws2_32.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>ws2_32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'ws2_32.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","sensapi.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>sensapi.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'sensapi.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","wintrust.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>wintrust.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'wintrust.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","crypt32.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>crypt32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'crypt32.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","riched20.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>riched20.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'riched20.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","mshtml.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>mshtml.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'mshtml.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","notepad.exe""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>notepad.exe</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'notepad.exe'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","qmgr.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>qmgr.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'qmgr.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","oleacc.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>oleacc.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'oleacc.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","msxml3.dll""
|
||
ResTypeVSGUID="{90D8E195-E710-4AF6-B667-B1805FFC9B8F}"
|
||
BuildTypeMask="819"
|
||
BuildOrder="1000"
|
||
Localize="False"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>File</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>msxml3.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'msxml3.dll'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
</RESOURCES>
|
||
|
||
<GROUPMEMBERS
|
||
>
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{833CB665-7185-4457-B756-D698ECFBD288}"
|
||
></GROUPMEMBER>
|
||
</GROUPMEMBERS>
|
||
|
||
<DEPENDENCIES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<DEPENDENCY
|
||
Class="Include"
|
||
Type="All"
|
||
DependOnGUID="{D4E8DC20-E3F1-478B-B6C8-3A5BA3779A4B}"
|
||
MinRevision="0"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
</DEPENDENCY>
|
||
|
||
<DEPENDENCY
|
||
Class="Include"
|
||
Type="All"
|
||
DependOnGUID="{5B3A5EB5-C23D-4B64-8C55-AC779B4A1A56}"
|
||
MinRevision="0"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
</DEPENDENCY>
|
||
|
||
<DEPENDENCY
|
||
Class="Include"
|
||
Type="All"
|
||
DependOnGUID="{061AB9C1-9BBD-425E-89BC-D55FF69BF330}"
|
||
MinRevision="0"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
</DEPENDENCY>
|
||
|
||
<DEPENDENCY
|
||
Class="Include"
|
||
Type="All"
|
||
DependOnGUID="{F691200A-F5EA-49CE-8760-434723AF33D9}"
|
||
MinRevision="0"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
</DEPENDENCY>
|
||
|
||
<DEPENDENCY
|
||
Class="Include"
|
||
Type="All"
|
||
DependOnGUID="{6A6A12B5-17B6-4066-8C68-138415AF0BA6}"
|
||
MinRevision="0"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
</DEPENDENCY>
|
||
|
||
<DEPENDENCY
|
||
Class="Include"
|
||
Type="All"
|
||
DependOnGUID="{2BE0890D-6B80-436B-8B33-189BA5781E13}"
|
||
MinRevision="0"
|
||
Disabled="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
</DEPENDENCY>
|
||
</DEPENDENCIES>
|
||
|
||
<DISPLAYNAME>Windows Update Automatic Updates</DISPLAYNAME>
|
||
|
||
<VERSION>1.0</VERSION>
|
||
|
||
<DESCRIPTION>Service that automatically detects available Windows updates and notifies user via a tray icon in the explorer shell.</DESCRIPTION>
|
||
|
||
<COPYRIGHT>2000 Microsoft Corp.</COPYRIGHT>
|
||
|
||
<VENDOR>Microsoft Corp.</VENDOR>
|
||
|
||
<OWNERS>kensh, jvincent</OWNERS>
|
||
|
||
<AUTHORS>kensh</AUTHORS>
|
||
|
||
<DATECREATED>11/13/2000</DATECREATED>
|
||
|
||
<DATEREVISED>4/19/2002 4:56:44 PM</DATEREVISED>
|
||
</COMPONENT>
|
||
</COMPONENTS>
|
||
|
||
<RESTYPES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </RESTYPES>
|
||
</DCARRIER>
|