3704 lines
252 KiB
Scheme
3704 lines
252 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="{47A05D24-74EA-4F59-953B-0E4F186D9DC2}"
|
||
ComponentVIGUID="{239FE03D-DA4C-4523-BD07-6387060A8668}"
|
||
Revision="620"
|
||
RepositoryVSGUID="{8E0BE9ED-7649-47F3-810B-232D36C430B4}"
|
||
Visibility="1000"
|
||
MultiInstance="False"
|
||
Released="False"
|
||
Editable="True"
|
||
HTMLTitle="Error Reporting Settings"
|
||
HTMLFinal="False"
|
||
IsMacro="False"
|
||
Opaque="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<SCRIPTTEXT
|
||
language="VBScript"
|
||
src=".\Error_Reporting.vbs"
|
||
encoded="False"
|
||
><![CDATA['////////////////////////////////////////////////////////////////////////////
|
||
' $Header:$
|
||
' Windows Embedded ER config script
|
||
' Version: 1.00
|
||
' Author: derekm
|
||
' Copyright (c) 1999-2001 Microsoft Corp. All Rights Reserved.
|
||
'////////////////////////////////////////////////////////////////////////////
|
||
|
||
Option Explicit
|
||
|
||
' event fired as part of the processing of method calls on CMI objects
|
||
Sub cmiOnEndBuild(dwFlags)
|
||
Dim szProcName
|
||
Dim dwDoReport
|
||
Dim dwShowUI
|
||
Dim dwForceQueueMode
|
||
Dim szDWFileTreeRoot
|
||
Dim szDWReporteeName
|
||
Dim dwNoSecondLevel
|
||
|
||
' Trace Enter
|
||
szProcName = "ERConfiguration::cmiOnEndBuild"
|
||
oPL.TraceEnter szProcName ' //oPL:global object present in Platform Script
|
||
|
||
' DoReport
|
||
if cmiThis.Properties("cmiEnablErrRep").Value = "True" then
|
||
dwDoReport = 1
|
||
else
|
||
dwDoReport = 0
|
||
end if
|
||
|
||
' ShowUI
|
||
if cmiThis.Properties("cmiShowErrRepUI").Value = "True" then
|
||
dwShowUI = 1
|
||
else
|
||
dwShowUI = 0
|
||
end if
|
||
|
||
' ForceQueueMode
|
||
if cmiThis.Properties("cmiForceQueueMode").Value = "True" then
|
||
dwForceQueueMode = 1
|
||
else
|
||
dwForceQueueMode = 0
|
||
end if
|
||
|
||
' DWNoSecondLevelCollection
|
||
if cmiThis.Properties("cmiDWNoSecondLevelCollection").Value = "True" then
|
||
dwNoSecondLevel = 1
|
||
else
|
||
dwNoSecondLevel = 0
|
||
end if
|
||
|
||
' DWFileTreeRoot
|
||
szDWFileTreeRoot = cmiThis.Properties("cmiDWFileTreeRoot").Value
|
||
|
||
' DWReporteeName
|
||
szDWReporteeName = cmiThis.Properties("cmiDWReporteeName").Value
|
||
|
||
'oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting", "DoReport", dwDoReport, cmiInteger
|
||
'oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting", "ShowUI", dwShowUI, cmiInteger
|
||
'oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting", "ForceQueueMode", dwForceQueueMode, cmiInteger
|
||
'oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW", "DWNoSecondLevelCollection", dwNoSecondLevel, cmiInteger
|
||
|
||
oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting", "DoReport", dwDoReport, cmiInteger
|
||
oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting", "ShowUI", dwShowUI, cmiInteger
|
||
oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting", "ForceQueueMode", dwForceQueueMode, cmiInteger
|
||
oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_DWORD, "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting\DW", "DWNoSecondLevelCollection", dwNoSecondLevel, cmiInteger
|
||
|
||
if (Len(szDWFileTreeRoot) > 0) then
|
||
'oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_SZ, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW", "DWFileTreeRoot", szDWFileTreeRoot, cmiString
|
||
oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_SZ, "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting\DW", "DWFileTreeRoot", szDWFileTreeRoot, cmiString
|
||
end if
|
||
|
||
if (Len(szDWReporteeName) > 0) then
|
||
'oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_SZ, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW", "DWReporteeName", szDWReporteeName, cmiString
|
||
oPL.TargetRegEdit cRegOpWrite, cRegCondAlways, cmiREG_SZ, "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting\DW", "DWReporteeName", szDWReporteeName, cmiString
|
||
end if
|
||
|
||
'//Trace Exit
|
||
oPL.TraceLeave szProcName
|
||
|
||
End sub
|
||
]]></SCRIPTTEXT>
|
||
|
||
<HTMLTEXT
|
||
src=".\Error_Reporting.asp"
|
||
><![CDATA[<%asp%>
|
||
<%= ASP.Header %>
|
||
<%= ASP.PropHandlers %>
|
||
|
||
|
||
<h1> </h1>
|
||
<p> </p>
|
||
|
||
<table>
|
||
<caption> </caption>
|
||
<td><label for="cmiEnablErrRep">Enable error reporting:</label></td>
|
||
<td><input type="checkbox" name="cmixDefPropHandler" checked="0" ID="cmiEnablErrRep"></td>
|
||
</tr>
|
||
<tr>
|
||
<td><label for="cmiShowErrRepUI">Enable notification when errors occur:</label></td>
|
||
<td><input type="checkbox" name="cmixDefPropHandler" checked="0" ID="cmiShowErrRepUI"></td>
|
||
</tr>
|
||
<tr>
|
||
<td><label for="cmiForceQueueMode">Force error reports to queue to disk:</label></td>
|
||
<td><input type="checkbox" name="cmixDefPropHandler" checked="0" ID="cmiForceQueueMode"></td>
|
||
|
||
</tr>
|
||
<tr>
|
||
<td><label for="cmiDWNoSecondLevelCollection">Do not collect additional machine data:</label></td>
|
||
<td><input type="checkbox" name="cmixDefPropHandler" checked="0" ID="cmiDWNoSecondLevelCollection"></td>
|
||
</tr>
|
||
<tr>
|
||
<td><label for="cmiDWReporteeName">Replace instances of the word 'Microsoft' in the error reporting dialog with:</label></td>
|
||
<td><input type="text" name="cmixDefPropHandler" Value="" ID="cmiDWReporteeName"></td>
|
||
</tr>
|
||
<tr>
|
||
<td><label for="cmiDWFileTreeRoot">Corporate upload file path (must be a UNC path):</label></td>
|
||
<td><input type="text" name="cmixDefPropHandler" Value="" ID="cmiDWFileTreeRoot"></td>
|
||
</tr>
|
||
|
||
</table>
|
||
|
||
|
||
<!-- Display custom properties -->
|
||
<h3>Custom Properties in Error Reporting</h3>
|
||
<p>| <%= ASP.ShowSpan("cprops", False) %> |</p>
|
||
|
||
<div id="cprops" style="display: none;">
|
||
<table border="0" bgcolor="#E0E0E0">
|
||
<caption>Custom Properties</caption>
|
||
<thead>
|
||
<tr>
|
||
<th>Name</th>
|
||
<th>Format</th>
|
||
<th>Value</th>
|
||
</tr>
|
||
</thead>
|
||
<% Dim oProp %>
|
||
<% For Each oProp In ASP.Instance.Properties %>
|
||
<tr valign="top">
|
||
<td><b><%= oProp.Name %></b></td>
|
||
<td><%= oProp.Format %></td>
|
||
<td><%= vuVarToString(oProp.Value, 10) %></td>
|
||
</tr>
|
||
<% Next %>
|
||
</table>
|
||
</div>
|
||
|
||
<!-- Display all resources -->
|
||
<h3>Resources in Error Reporting</h3>
|
||
<p>| <%= ASP.ShowSpan("res", False) %> |</p>
|
||
|
||
<div id="res" style="display: none;">
|
||
<table border="0" bgcolor="#E0E0E0">
|
||
<caption>Resources</caption>
|
||
<tr>
|
||
<th>Name</th>
|
||
<th>DisplayName</th>
|
||
<th>Disabled</th>
|
||
</tr>
|
||
<% Dim oRes
|
||
For Each oRes In ASP.Instance.Resources %>
|
||
<tr valign="top">
|
||
<td><b><%= oRes.Name %></b></td>
|
||
<td><%= oRes.DisplayName %></td>
|
||
<td><%= oRes.Disabled %></td>
|
||
</tr>
|
||
<% Next %>
|
||
</table>
|
||
</div>
|
||
|
||
<%= ASP.Footer %>
|
||
]]></HTMLTEXT>
|
||
|
||
<HELPCONTEXT
|
||
src=".\error_reporting_help.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 Error Reporting component is used to report kernel faults, program errors or crashes, system hang-ups, and unplanned system shutdowns. The data is collected by Microsoft in order to track and help fix these problems.</P>
|
||
|
||
<H3>Component Configuration</H3>
|
||
|
||
<P>The following table lists the configuration settings for this component:</P>
|
||
|
||
|
||
<TABLE>
|
||
|
||
<TR VALIGN="top">
|
||
<TH width=36%>Property or setting name</TH>
|
||
<TH width=13%>Default setting</TH>
|
||
<TH width=22%>Purpose and use</TH>
|
||
<TH width=14%>Example property</TH>
|
||
<TH width=15%>Example setting</TH>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=36%><B>DoReport</B></TD>
|
||
<TD width=13%>1</TD>
|
||
<TD width=22%>Enables error reporting (1 = enabled / 0 = disabled)</TD>
|
||
<TD width=14%> </TD>
|
||
<TD width=15%> </TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=36%><B>ShowUI</B></TD>
|
||
<TD width=13%>1</TD>
|
||
<TD width=22%>Enables error notification (1 = enabled / 0 = disabled)</TD>
|
||
<TD width=14%> </TD>
|
||
<TD width=15%> </TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=36%><B>ForceQueueMode</B></TD>
|
||
<TD width=13%>0</TD>
|
||
<TD width=22%>Enables forced queuing of program crash error reports to disk (1 = enabled / 0 = disabled)</TD>
|
||
<TD width=14%> </TD>
|
||
<TD width=15%> </TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=36%><B>DWNoSecondLevelCollection</B></TD>
|
||
<TD width=13%>0</TD>
|
||
<TD width=22%>Disables collection of second-level data (any data besides the error signature and crash dump) (1 = disable collection / 0 = enable collection)</TD>
|
||
<TD width=14%> </TD>
|
||
<TD width=15%> </TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=36%><B>DWReporteeName</B></TD>
|
||
<TD width=13%> </TD>
|
||
<TD width=22%>Replaces the word Microsoft in the error reporting / notification dialogs with the contents of this setting.</TD>
|
||
<TD width=14%> </TD>
|
||
<TD width=15%>Microsoft</TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=36%><B>DWFileTreeRoot</B></TD>
|
||
<TD width=13%> </TD>
|
||
<TD width=22%>Enable corporate error reporting (reporting to a file share instead of via http to Microsoft); enter a Universal Naming Convention (UNC) path to the file share here. If this field is blank, http reporting to Microsoft is used.</TD>
|
||
<TD width=14%> </TD>
|
||
<TD width=15%>\\itg-dumps\errors</TD>
|
||
</TR>
|
||
</TABLE><BR>
|
||
|
||
<P class="fineprint"></P>
|
||
|
||
<H3>Special Notes</H3>
|
||
|
||
<P>Corporate error reporting is designed for organizations that wish to review error reports before they are sent to Microsoft. Organizations can then use the corporate reporting tool, to send the approved reports to Microsoft. To enable this mode, fill in the UNC path that represents the root of the error reporting file tree. To disable it, leave the field blank.</P>
|
||
|
||
<P>Force Queue Mode is a special mode that causes error reporting to create an error report and store it on disk for later reporting. Only the ten most recent error reports are kept. Reporting will then be offered the next time an administrator logs onto the machine after the error occurred. This setting affects all programs crash errors, including normal applications. The setting is most useful for server devices that have infrequent logons and services that are self-restarting in the event of a crash. The <B>DoReport</B> and <B>ShowUI</B> settings determine the reporting mode. <p>The following table lists the effects of the possible combinations of settings:</P>
|
||
|
||
<P class="fineprint"></P>
|
||
|
||
<TABLE>
|
||
|
||
<TR VALIGN="top">
|
||
<TH width=14%>DoReport</TH>
|
||
<TH width=14%>ShowUI</TH>
|
||
<TH width=72%>Result</TH>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>0</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>0</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=72%>
|
||
<UL type="disc">
|
||
<LI>Error reporting is completely disabled: No user interface (UI) will show and no reports will be made</li>
|
||
</UL>
|
||
</TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>0</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>1</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=72%>
|
||
<UL type="disc">
|
||
<LI>Error reporting is disabled, but users will be notified of errors: the user will see a shortened form of the error dialog. However, instead of a set of <B>Send Report</B> and <B>Don’t Send Report</B> buttons, the user will only have the option to close the dialog. No error report is stored or reported to anyone.</li>
|
||
</UL>
|
||
</TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>1</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>0</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=72%>
|
||
<UL type="disc">
|
||
<LI>Error reporting is in silent or headless mode. No UI is shown to the user and reports are automatically sent. </li>
|
||
|
||
<LI>Due to potential security and privacy issues, this option is only available if reporting is being sent to a corporate file server. If a corporate file server is not specified, then no error reporting will occur.</li>
|
||
</UL>
|
||
</TD>
|
||
</TR>
|
||
|
||
<TR VALIGN="top">
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>1</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=14%>
|
||
<UL type="disc">
|
||
<LI>1</li>
|
||
</UL>
|
||
</TD>
|
||
<TD width=72%>
|
||
<UL type="disc">
|
||
<LI>This is the default error-reporting mode. Users will be shown the error-reporting dialog with a pair of <B>Send Report</B> and <B>Don’t Send Report</B> buttons. Clicking the <B>Send</B> <B>Report</B> button will send the error report to either Microsoft or a corporate file tree if one is specified.</li>
|
||
</UL>
|
||
</TD>
|
||
</TR>
|
||
</TABLE><BR>
|
||
<P class=indent><b class="le">Note</b> When 'Force Queue Mode' is enabled, an administrator, who is logged onto the system when the error happens, still has to log off and log back on to be able to report the error.</P>
|
||
|
||
<P class="fineprint"></P>
|
||
|
||
<P class="fineprint"></P>
|
||
|
||
</BODY>
|
||
</HTML>
|
||
]]></HELPCONTEXT>
|
||
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>
|
||
<PROPERTY
|
||
Name="cmiForceQueueMode"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWFileTreeRoot"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>\\Report Server</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWReporteeName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
><Report Destination Name></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWNoSecondLevelCollection"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiEnablErrRep"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiShowErrRepUI"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<RESOURCES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<RESOURCE
|
||
Name="File(819):"%11%\1033","dwintl.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="SrcName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>dwil1033.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%\1033</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>dwintl.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","dwwin.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}"
|
||
>dwwin.exe</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","faultrep.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}"
|
||
>faultrep.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","dumprep.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}"
|
||
>dumprep.exe</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","AllOrNone""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>AllOrNone</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiAllOrNone"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\AllOrNone</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","DoReport""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>DoReport</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDoReport"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DoReport</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","IncludeKernelFaults""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>IncludeKernelFaults</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiIncludeKernelFaults"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\IncludeKernelFaults</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","IncludeMicrosoftApps""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>IncludeMicrosoftApps</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiIncludeMicrosoftApps"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\IncludeMicrosoftApps</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","IncludeWindowsApps""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>IncludeWindowsApps</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiIncludeWindowsApps"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\IncludeWindowsApps</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","ShowUI""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>ShowUI</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiShowUI"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\ShowUI</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\ExclusionList""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\ExclusionList</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\InclusionList""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\InclusionList</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</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="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>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","user32.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="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}"
|
||
>user32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</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="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>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","ntdll.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="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}"
|
||
>ntdll.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","version.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="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}"
|
||
>version.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","wtsapi32.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="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}"
|
||
>wtsapi32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","comctl32.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="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}"
|
||
>comctl32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","gdi32.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="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}"
|
||
>gdi32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","oleaut32.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="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}"
|
||
>oleaut32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","shell32.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="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}"
|
||
>shell32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</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="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>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","ersvc.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}"
|
||
>ersvc.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="NoExpand"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","Type""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Type</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>32</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","Start""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Start</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>2</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","ErrorControl""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>ErrorControl</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>4</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","ImagePath""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>ImagePath</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%SystemRoot%\System32\svchost.exe -k netsvcs</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>2</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","DisplayName""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>DisplayName</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Error Reporting Service</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","DependOnService""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>DependOnService</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>7</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Multi"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>520070006300530073000000</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\DependOnService</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","Description""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Description</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Allows error reporting for services and applictions running in non-standard environments.</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc","ObjectName""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>ObjectName</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>LocalSystem</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Parameters""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Parameters</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Parameters","ServiceDll""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Parameters</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>ServiceDll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%SystemRoot%\System32\ersvc.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>2</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Security""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Security</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
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="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Security","Security""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ersvc\Security</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>Security</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Binary"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>01001480900000009C000000140000003000000002001C000100000002801400FF010F00010100000000000100000000020060000400000000001400FD01020001010000000000051200000000001800FF010F0001020000000000052000000020020000000014008D01020001010000000000050B00000000001800FD01020001020000000000052000000023020000010100000000000512000000010100000000000512000000</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>3</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","imm32.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="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}"
|
||
>imm32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","svchost.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="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}"
|
||
>svchost.exe</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"RegValue","HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost\netsvcs""
|
||
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="RawType"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>RegValue</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="Value"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost\netsvcs</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","psapi.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="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}"
|
||
>psapi.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","dbghelp.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="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}"
|
||
>dbghelp.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","winsta.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="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}"
|
||
>winsta.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","userenv.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="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}"
|
||
>userenv.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</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="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>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","shfolder.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="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}"
|
||
>shfolder.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","ole32.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="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}"
|
||
>ole32.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\svchost","netsvcs""
|
||
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="KeyPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\svchost</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>netsvcs</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegType"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>7</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegOp"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>3</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegCond"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ComponentVSGUID"
|
||
Format="GUID"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>{00000000-0000-0000-0000-000000000000}</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Multi"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>650072007300760063000000</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\svchost\netsvcs</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","apphelp.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="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}"
|
||
>apphelp.dll</PROPERTY>
|
||
</PROPERTIES>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","RpcSs.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}"
|
||
>RpcSs.DLL</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'RpcSs.DLL'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW""
|
||
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\PCHealth\ErrorReporting\DW</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}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME></DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW","DWFileTreeRoot""
|
||
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\PCHealth\ErrorReporting\DW</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}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>DWFileTreeRoot</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWFileTreeRoot"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW\DWFileTreeRoot</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW","DWNoSecondLevelCollection""
|
||
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\PCHealth\ErrorReporting\DW</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}"
|
||
>DWNoSecondLevelCollection</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWNoSecondLevelData"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW\DWNoSecondLevelCollection</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW","DWReporteeName""
|
||
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\PCHealth\ErrorReporting\DW</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}"
|
||
>1</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="ValueName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>DWReporteeName</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWReporteeName"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
></PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW\DWReporteeName</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW","DWNoExternalURL""
|
||
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\PCHealth\ErrorReporting\DW</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}"
|
||
>DWNoExternalURL</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWNoExternalURL"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW\DWNoExternalURL</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW","DWNoFileCollection""
|
||
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\PCHealth\ErrorReporting\DW</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}"
|
||
>DWNoFileCollection</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiDWNoFileCollection"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW\DWNoFileCollection</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","ForceQueueMode""
|
||
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\PCHealth\ErrorReporting</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}"
|
||
>ForceQueueMode</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiForceQueueMode"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>False</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>0</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\ForceQueueMode</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RegKey(819):"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting","IncludeShutdownErrs""
|
||
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\PCHealth\ErrorReporting</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}"
|
||
>IncludeShutdownErrs</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="cmiIncludeShutdownErrs"
|
||
Format="Boolean"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>True</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="RegValue"
|
||
Format="Integer"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>1</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting\IncludeShutdownErrs</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
</RESOURCES>
|
||
|
||
<GROUPMEMBERS
|
||
>
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{E01B4103-3883-4FE8-992F-10566E7B796C}"
|
||
></GROUPMEMBER>
|
||
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{833CB665-7185-4457-B756-D698ECFBD288}"
|
||
></GROUPMEMBER>
|
||
</GROUPMEMBERS>
|
||
|
||
<DEPENDENCIES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
> </DEPENDENCIES>
|
||
|
||
<DISPLAYNAME>Error Reporting</DISPLAYNAME>
|
||
|
||
<VERSION>1.0</VERSION>
|
||
|
||
<DESCRIPTION>Allows reporting of user / kernel faults, hangs, and unplanned shutdowns.</DESCRIPTION>
|
||
|
||
<COPYRIGHT>2000 Microsoft Corp.</COPYRIGHT>
|
||
|
||
<VENDOR>Microsoft Corp.</VENDOR>
|
||
|
||
<OWNERS>derekm</OWNERS>
|
||
|
||
<AUTHORS>derekm</AUTHORS>
|
||
|
||
<DATECREATED>1/11/2001</DATECREATED>
|
||
|
||
<DATEREVISED>10/28/2001 7:44:54 PM</DATEREVISED>
|
||
</COMPONENT>
|
||
|
||
<COMPONENT
|
||
ComponentVSGUID="{1F5F255E-81DE-4AAC-91A1-934AF26702F7}"
|
||
ComponentVIGUID="{DF6AA84B-09F7-4EB8-80B8-4D786BE8FE2A}"
|
||
Revision="4"
|
||
RepositoryVSGUID="{8E0BE9ED-7649-47F3-810B-232D36C430B4}"
|
||
Visibility="1000"
|
||
MultiInstance="False"
|
||
Released="False"
|
||
Editable="False"
|
||
HTMLFinal="False"
|
||
IsMacro="False"
|
||
Opaque="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
|
||
<RESOURCES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<RESOURCE
|
||
Name="File(819):"%11%","savedump.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="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}"
|
||
>savedump.exe</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%</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}"
|
||
>19456</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>savedump.exe</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","DBGENG.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}"
|
||
>DBGENG.DLL</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'DBGENG.DLL'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
</RESOURCES>
|
||
|
||
<GROUPMEMBERS
|
||
>
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{E01B4103-3883-4FE8-992F-10566E7B796C}"
|
||
></GROUPMEMBER>
|
||
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{833CB665-7185-4457-B756-D698ECFBD288}"
|
||
></GROUPMEMBER>
|
||
</GROUPMEMBERS>
|
||
|
||
<DEPENDENCIES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
> </DEPENDENCIES>
|
||
|
||
<DISPLAYNAME>Save Dump</DISPLAYNAME>
|
||
|
||
<VERSION>1.0</VERSION>
|
||
|
||
<DESCRIPTION>Tool to save kernel mode dump files</DESCRIPTION>
|
||
|
||
<COPYRIGHT>2002 Microsoft Corp.</COPYRIGHT>
|
||
|
||
<VENDOR>Microsoft Corp.</VENDOR>
|
||
|
||
<OWNERS>andreva</OWNERS>
|
||
|
||
<AUTHORS>andreva</AUTHORS>
|
||
|
||
<DATECREATED>5/8/2002 12:07:04 AM</DATECREATED>
|
||
|
||
<DATEREVISED>5/8/2002 12:40:33 AM</DATEREVISED>
|
||
</COMPONENT>
|
||
|
||
<COMPONENT
|
||
ComponentVSGUID="{4FA0330E-F19E-4473-98C7-D750F2378FAC}"
|
||
ComponentVIGUID="{F0B5FE1F-D519-42C6-95E3-07D31048078C}"
|
||
Revision="3"
|
||
RepositoryVSGUID="{8E0BE9ED-7649-47F3-810B-232D36C430B4}"
|
||
Visibility="200"
|
||
MultiInstance="False"
|
||
Released="False"
|
||
Editable="False"
|
||
HTMLFinal="False"
|
||
IsMacro="False"
|
||
Opaque="False"
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<PROPERTIES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </PROPERTIES>
|
||
|
||
<RESOURCES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
>
|
||
<RESOURCE
|
||
Name="RawDep(819):"File","DBGHELP.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}"
|
||
>DBGHELP.DLL</PROPERTY>
|
||
</PROPERTIES>
|
||
|
||
<DISPLAYNAME>Dependency upon 'DBGHELP.DLL'</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
|
||
<RESOURCE
|
||
Name="File(819):"%11%","dbgeng.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="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}"
|
||
>dbgeng.dll</PROPERTY>
|
||
|
||
<PROPERTY
|
||
Name="DstPath"
|
||
Format="String"
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
>%11%</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}"
|
||
>847872</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>dbgeng.dll</DISPLAYNAME>
|
||
|
||
<DESCRIPTION></DESCRIPTION>
|
||
</RESOURCE>
|
||
</RESOURCES>
|
||
|
||
<GROUPMEMBERS
|
||
>
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{E01B4103-3883-4FE8-992F-10566E7B796C}"
|
||
></GROUPMEMBER>
|
||
|
||
<GROUPMEMBER
|
||
GroupVSGUID="{833CB665-7185-4457-B756-D698ECFBD288}"
|
||
></GROUPMEMBER>
|
||
</GROUPMEMBERS>
|
||
|
||
<DEPENDENCIES
|
||
Context="1"
|
||
PlatformGUID="{B784E719-C196-4DDB-B358-D9254426C38D}"
|
||
> </DEPENDENCIES>
|
||
|
||
<DISPLAYNAME>Primitive: Dbgeng</DISPLAYNAME>
|
||
|
||
<VERSION>1.0</VERSION>
|
||
|
||
<DESCRIPTION>Primitive: Dbgeng</DESCRIPTION>
|
||
|
||
<COPYRIGHT>2002 Microsoft Corp.</COPYRIGHT>
|
||
|
||
<VENDOR>2002 Microsoft Corp.</VENDOR>
|
||
|
||
<OWNERS>andreva</OWNERS>
|
||
|
||
<AUTHORS>jomorris</AUTHORS>
|
||
|
||
<DATECREATED>5/8/2002 12:34:09 AM</DATECREATED>
|
||
|
||
<DATEREVISED>5/8/2002 12:40:43 AM</DATEREVISED>
|
||
</COMPONENT>
|
||
</COMPONENTS>
|
||
|
||
<RESTYPES
|
||
Context="1"
|
||
PlatformGUID="{00000000-0000-0000-0000-000000000000}"
|
||
> </RESTYPES>
|
||
</DCARRIER>
|