home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / PLA / Rules / Rules.System.Network.xml < prev    next >
Extensible Markup Language  |  2006-09-18  |  3KB  |  81 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?Copyright (c) Microsoft Corporation. All rights reserved.?>
  3. <Rules>
  4.   <Group name="$(GroupNetwork)">
  5.     <Rule name="$(RuleDisplay)" enabled="true">
  6.       <Step select="/Report/Section/Table[@name='networkinterface']">
  7.         <Exists>
  8.           <Otherwise>
  9.             <Delete select="Item[Data[@name='instance']='RAS Async Adapter']"/>
  10.             <Delete select="Item[Data[@name='instance' and starts-with(.,'WAN Miniport')]]"/>
  11.             <Delete select="Item[Data[@name='instance' and starts-with(.,'isatap')]]"/>
  12.             <Delete select="Item[Data[@name='instance' and contains(.,'QoS Packet Scheduler')]]"/>
  13.           </Otherwise>
  14.         </Exists>
  15.       </Step>
  16.       <Step select="/Report/Section/Table[@name='configNic']">
  17.         <Exists>
  18.           <Otherwise>
  19.             <Delete select="Item[Data[@name='nicName']='RAS Async Adapter']"/>
  20.             <Delete select="Item[Data[@name='nicName' and starts-with(.,'WAN Miniport')]]"/>
  21.             <Delete select="Item[Data[@name='nicName' and starts-with(.,'isatap')]]"/>
  22.             <Delete select="Item[Data[@name='nicName' and contains(.,'QoS Packet Scheduler')]]"/>
  23.           </Otherwise>
  24.         </Exists>
  25.       </Step>
  26.     </Rule>
  27.     <Rule name="$(RuleHideCtrs)" enabled="true">
  28.       <Step select="/Report/Section/Table/Item[Data[@name='counter']='Connections Active']" sortType="all">
  29.         <Exists>
  30.           <Otherwise>
  31.             <Insert select="Data[@name='counter']">
  32.               <Attribute name="note" value="Accumulated Since Boot"/>
  33.             </Insert>
  34.           </Otherwise>
  35.         </Exists>
  36.       </Step>
  37.       <Step select="/Report/Section/Table/Item[Data[@name='counter']='Connection Failures']" sortType="all">
  38.         <Exists>
  39.           <Otherwise>
  40.             <Insert select="Data[@name='counter']">
  41.               <Attribute name="note" value="Accumulated Since Boot"/>
  42.             </Insert>
  43.           </Otherwise>
  44.         </Exists>
  45.       </Step>
  46.       <Step select="/Report/Section/Table/Item[Data[@name='counter']='Connections Established']" sortType="all">
  47.         <Exists>
  48.           <Otherwise>
  49.             <Insert select="Data[@name='counter']">
  50.               <Attribute name="note" value="Includes active and passive connections"/>
  51.             </Insert>
  52.           </Otherwise>
  53.         </Exists>
  54.       </Step>
  55.       <Step select="/Report/Section/Table/Item[Data[@name='counter']='Connections Passive']" sortType="all">
  56.         <Exists>
  57.           <Otherwise>
  58.             <Insert select="Data[@name='counter']">
  59.               <Attribute name="note" value="Accumulated Since Boot"/>
  60.             </Insert>
  61.           </Otherwise>
  62.         </Exists>
  63.       </Step>
  64.       <Step select="/Report/Section/Table/Item[Data[@name='counter']='Connections Reset']" sortType="all">
  65.         <Exists>
  66.           <Otherwise>
  67.             <Insert select="Data[@name='counter']">
  68.               <Attribute name="note" value="Accumulated Since Boot"/>
  69.             </Insert>
  70.           </Otherwise>
  71.         </Exists>
  72.       </Step>
  73.     </Rule>
  74.   </Group>
  75.   <StringTable>
  76.     <String ID="GroupNetwork">Network</String>
  77.     <String ID="RuleDisplay">Network Display Level</String>
  78.     <String ID="RuleHideCtrs">Hide Comments Counters</String>
  79.   </StringTable>
  80. </Rules>
  81.