﻿<?xml version="1.0" encoding="UTF-8"?>
<helpItems schema="maml" xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">

<!--~~~~~~~~~~~~~~~~~~~~~~~~~~Ethernet cmdlet documents~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->


<!--Get-IntelEthernet-->
 <command:command>

  <!--Synopsis for Get-IntelEthernet-->
    <command:details>
      <command:name>Get-IntelEthernet</command:name>
      <maml:description>
        <maml:para>Zeigt grundlegende Informationen über Intel(R) Ethernet-Geräte im System an.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Get</command:verb>
      <command:noun>IntelEthernet</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Get-IntelEthernet-->
    <maml:description>
      <maml:para>Das Cmdlet Get-IntelEthernet enthält grundlegende Informationen über die im System vorhandenen Intel(R) Ethernet-Geräte, darunter die folgenden:
* Ort auf dem PCI-Bus
* Name
* Linkstatus
* Verbindungsname</maml:para>
      <maml:para>Dieses Cmdlet zeigt standardmäßig die Ergebnisse in einer Tabelle an. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>
    </maml:description>

    <!--Syntax Section for Get-IntelEthernet-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernet</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernet</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernet</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Get-IntelEthernet-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen eines Intel Ethernet-Objekts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Get-IntelEthernet-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Get-IntelEthernet-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name></maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel Ethernet-Objekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Get-IntelEthernet-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernet</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen zu allen Intel Ethernet-Geräten im System an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernet | Format-List</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen zu allen Intel Ethernet-Geräten im System als Liste an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernet -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen zu einem Intel Ethernet-Gerät mit einem bestimmten Namen an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernet -Name "*E810*"</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen zu allen Intel Ethernet-Geräten im System aus einer bestimmten Gerätereihe an, wobei Platzhalter verwendet werden.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Get-IntelEthernet
</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen zu allen Intel Ethernet-Geräten an, die in $Adapters gespeichert sind.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 6 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Get-IntelEthernet -Adapter $Adapters[1]</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen zu dem Intel Ethernet-Gerät an, das in $Adapters[1] gespeichert ist.</maml:para>
        </dev:remarks>
      </command:example>

	   <command:example>
        <maml:title>------------------------ EXAMPLE 7 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Get-IntelEthernet -Name $Adapters[1].ifDesc</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen über das Intel Ethernet-Gerät an, das in $Adapters[1] unter Verwendung seines NetAdapter-Namens (z. B. Steckplatz 5 Port 1) gespeichert ist.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Get-IntelEthernet-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapter</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Get-IntelEthernetSetting-->
 <command:command>

  <!--Synopsis for Get-IntelEthernetSetting-->
    <command:details>
      <command:name>Get-IntelEthernetSetting</command:name>
      <maml:description>
        <maml:para>Zeigt alle unterstützten Einstellungen für im System vorhandene Intel(R) Ethernet-Geräte an.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Get</command:verb>
      <command:noun>IntelEthernetSetting</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Get-IntelEthernetSetting-->
    <maml:description>
      <maml:para>Das Get-IntelEthernetSetting-Cmdlet zeigt alle unterstützten Einstellungen für im System vorhandene Intel(R) Ethernet-Geräte an. </maml:para>
      <maml:para>Dieses Cmdlet zeigt standardmäßig die Ergebnisse in einer Tabelle an. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>
	  <maml:para>Um eine Beschreibung einer Einstellung anzuzeigen, fügen Sie der Cmdlet-Syntax „| Select Minihelp“ an.</maml:para>
    </maml:description>

    <!--Syntax Section for Get-IntelEthernetSetting-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetSetting</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetSetting</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>DisplayName</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetSetting</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>RegistryKeyword</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Get-IntelEthernetSetting-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen eines Intel Ethernet-Objekts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--DisplayName-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>DisplayName</maml:name>
        <maml:description>
          <maml:para>Gibt den Anzeigenamen einer Intel Ethernet-Einstellung an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--RegistryKeyword-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>RegistryKeyword</maml:name>
        <maml:description>
          <maml:para>Gibt das Registrierungs-Schlüsselwort einer Intel Ethernet-Einstellung an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>
    </command:parameters>


    <!--Input for Get-IntelEthernetSetting-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Get-IntelEthernetSetting-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Setting[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von IntelEthernetSetting-Objekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Get-IntelEthernetSetting-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetSetting</dev:code>
        <dev:remarks>
          <maml:para>Zeigt die Einstellungen für alle unterstützten Intel Ethernet-Geräte an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetSetting | Format-List</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Informationen für alle Intel Ethernet-Einstellungen als Liste an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetSetting -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Zeigt Einstellungen für ein Intel Ethernet-Gerät mit einem bestimmten Namen an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters[1] | Get-IntelEthernetSetting</dev:code>
        <dev:remarks>
          <maml:para>Ruft alle der Einstellungen ab, die auf dem in $Adapters[1] gespeicherten Gerät unterstützt werden.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Get-IntelEthernetSetting -Name $Adapters[1].Name -DisplayName "Receive Side Scaling"</dev:code>
        <dev:remarks>
          <maml:para>Ruft unter Verwendung des Parameters „-Name“ die Einstellung „Empfangsseitige Skalierung (RSS)“ auf dem Gerät ab, das in $Adapters[1] gespeichert ist.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 6 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetSetting -RegistryKeyword "*RSS"</dev:code>
        <dev:remarks>
          <maml:para>Ruft alle Einstellungen für „Empfangsseitige Skalierung (RSS)“ auf allen unterstützten Ethernet-Geräten im System ab.</maml:para>
        </dev:remarks>
      </command:example>

	   <command:example>
        <maml:title>------------------------ EXAMPLE 7 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetSetting -RegistryKeyword "*RSS" | Select -Property Minihelp</dev:code>
        <dev:remarks>
          <maml:para>Zeigt die Minihilfe für die Einstellung für das angegebene Registrierungs-Schlüsselwort an.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Get-IntelEthernetSetting-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Set-IntelEthernetSetting</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapter</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapterSetting</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>

<!--Get-IntelEthernetProfileSetting-->
 <command:command>

  <!--Synopsis for Get-IntelEthernetProfileSetting-->
    <command:details>
      <command:name>Get-IntelEthernetProfileSetting</command:name>
      <maml:description>
        <maml:para>Zeigt die Einstellungen und ihre Werte für den angegebenen Adapter und die Profilkombination an.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Get</command:verb>
      <command:noun>IntelEthernetProfileSetting</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Get-IntelEthernetProfileSetting-->
    <maml:description>
      <maml:para>Das Cmdlet Get-IntelEthernetProfileSetting zeigt die Einstellungen und ihre Werte für die angegebene Ethernet-Einheit und die Profilkombination an. Diese Information wird in einer Tabelle angezeigt, die den Namen der Einstellung angibt sowie den Wert, in den die Einstellung geändert wird.</maml:para>
      <maml:para>Get-IntelEthernetProfileSetting gibt eine Sammlung von Einstellungsobjekten zurück.</maml:para>
      <maml:para>Hinweis: Verwenden Sie Set-IntelEthernetSetting, um einem Adapter ein anderes spezifisches Profil zuzuweisen.</maml:para>
    </maml:description>

    <!--Syntax Section for Get-IntelEthernetProfileSetting-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetProfileSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>ProfileName</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetProfileSetting</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>ProfileName</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Get-IntelEthernetProfileSetting-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen eines Intel Ethernet-Objekts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--ProfileName-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
        <maml:name>ProfileName</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Profils an. Mögliche Profile sind:

* Standard Server: Dieses Profil ist für typische Server optimiert.

* Web Server: Dieses Profil ist für IIS- und HTTP-basierte Webserver optimiert.

* Virtualization Server (Hyper-V*): Dieses Profil ist für die Hyper-V-Virtualisierungsumgebung von Microsoft optimiert. Erfordert Hyper-V für die Aktivierung.

* Storage Server: Dieses Profil ist für iSCSI-über-DCB-Leistung optimiert. Durch die Auswahl dieses Profils werden SR-IOV und VMQ deaktiviert. Erfordert Intel DCB für die Aktivierung.

* Storage + Virtualization: Dieses Profil ist für eine Kombination von Datenspeicher- und Virtualisierungsanforderungen optimiert. Erfordert Intel DCB und Hyper-V für die Aktivierung.

* Low Latency: Dieses Profil ist für die Minimierung der Netzwerklatenz optimiert.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>
  </command:parameters>


    <!--Input for Get-IntelEthernetProfileSetting-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Get-IntelEthernetProfileSetting-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Setting[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von IntelEthernetSetting-Objekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Get-IntelEthernetProfileSetting-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetProfileSetting -Name "Intel(R) Ethernet Server Adapter E810-C-Q2" -ProfileName "Standard Server"</dev:code>
        <dev:remarks>
          <maml:para>Anzeige der Einstellungen, die sich ändern würden, und der Werte dieser Einstellungen nach der Änderung, wenn der genannten Ethernet-Einheit das angegebene Profil zugewiesen würde.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Get-IntelEthernetProfileSetting -Adapter $Adapters[1] -ProfileName "Standard Server"</dev:code>
        <dev:remarks>
          <maml:para>Anzeige der Einstellungen, die sich ändern würden, und der Werte dieser Einstellungen nach der Änderung, wenn der in $Adapters[1] gespeicherten Ethernet-Einheit das angegebene Profil zugewiesen würde.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Get-IntelEthernetProfileSetting -Adapter $Adapters[1] -ProfileName "Standard Server"
PS C:\&gt; Set-IntelEthernetSetting -Name $Adapters[1].Name -DisplayName "Profile" -DisplayValue "Standard Server"</dev:code>
        <dev:remarks>
          <maml:para>Anzeige der Einstellungen, die sich ändern würden, und der Werte dieser Einstellungen nach der Änderung, wenn der in $Adapters[1] gespeicherten Ethernet-Einheit das angegebene Profil zugewiesen würde. Ändern Sie anschließend die Profileinstellung des Adapters zu Standardserver.</maml:para>
        </dev:remarks>
      </command:example>
</command:examples>

    <!--Links for Get-IntelEthernetProfileSetting-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Set-IntelEthernetSetting</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapterProfileSettings</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>

<!--Set-IntelEthernetSetting-->
 <command:command>

  <!--Synopsis for Set-IntelEthernetSetting-->
    <command:details>
      <command:name>Set-IntelEthernetSetting</command:name>
      <maml:description>
        <maml:para>Konfiguriert die Einstellungen für Intel(R) Ethernet-Geräte.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Set</command:verb>
      <command:noun>IntelEthernetSetting</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Set-IntelEthernetSetting-->
    <maml:description>
      <maml:para>Das Set-IntelEthernetSetting-Cmdlet konfiguriert Einstellungen für Intel(R) Ethernet-Geräte. </maml:para>
      <maml:para>Dieses Cmdlet zeigt standardmäßig die Ergebnisse in einer Tabelle an. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>
    </maml:description>

    <!--Syntax Section for Set-IntelEthernetSetting-->
    <command:syntax>

	  <!--Parameter Set 1 -->
      <command:syntaxItem>
      <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>DisplayName</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>DisplayValue</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

		<!-- Parameter Set 2 -->
       <command:syntaxItem>
       <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>RegistryKeyword</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>RegistryValue</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 3 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>DisplayName</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Reset</maml:name>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 4 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>RegistryKeyword</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Reset</maml:name>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 5 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
         <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>DisplayName</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>DisplayValue</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 6 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
         <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>RegistryKeyword</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>RegistryValue</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 7 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>DisplayName</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Reset</maml:name>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 8 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>RegistryKeyword</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Reset</maml:name>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 9 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="true" globbing="false">
          <maml:name>Setting</maml:name>
          <command:parameterValue required="true">Setting[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>DisplayValue</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 10 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="true" globbing="false">
          <maml:name>Setting</maml:name>
          <command:parameterValue required="true">Setting[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>RegistryValue</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

	<!-- Parameter Set 11 -->
      <command:syntaxItem>
        <maml:name>Set-IntelEthernetSetting</maml:name>
        <command:parameter required="true" position="named" pipelineInput="true" globbing="false">
          <maml:name>Setting</maml:name>
          <command:parameterValue required="true">Setting[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Reset</maml:name>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Set-IntelEthernetSetting-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Intel Ethernet-Geräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--RegistryKeyword-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
        <maml:name>RegistryKeyword</maml:name>
        <maml:description>
          <maml:para>Gibt das Registrierungs-Schlüsselwort einer Intel Ethernet-Einstellung an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--RegistryValue-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
        <maml:name>RegistryValue</maml:name>
        <maml:description>
          <maml:para>Gibt den Registrierungswert einer Intel Ethernet-Einstellung an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--DisplayName-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
        <maml:name>DisplayName</maml:name>
        <maml:description>
          <maml:para>Gibt den Anzeigenamen einer Intel Ethernet-Einstellung an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--DisplayValue-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
        <maml:name>DisplayValue</maml:name>
        <maml:description>
          <maml:para>Gibt den Anzeigewert einer Intel Ethernet-Einstellung an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Setting-->
      <command:parameter required="true" position="named" pipelineInput="true" globbing="false">
        <maml:name>Setting</maml:name>
        <maml:description>
          <maml:para>Gibt die Sammlung von IntelEthernetSetting-Objekten an, wobei DisplayValue oder RegistryValue geändert wird.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Setting[]</command:parameterValue>
        <dev:type>
          <maml:name>Setting[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Reset-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
        <maml:name>Reset</maml:name>
        <maml:description>
          <maml:para>Setzt die Einstellung auf den Standardwert zurück.</maml:para>
        </maml:description>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>

    <!--Input for Set-IntelEthernetSetting-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Set-IntelEthernetSetting-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Setting[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von IntelEthernetSetting-Objekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Set-IntelEthernetSetting-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Set-IntelEthernetSetting -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -RegistryKeyword "*RSS" -RegistryValue "1"</dev:code>
        <dev:remarks>
          <maml:para>Aktiviert die *RSS-Einstellung für das Registrierungs-Schlüsselwort für ein Intel Ethernet-Gerät mit einem bestimmten Namen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Set-IntelEthernetSetting -Adapter $Adapters[1] -DisplayName "Receive Side Scaling" -DisplayValue "Disabled" | Format-List</dev:code>
        <dev:remarks>
          <maml:para>Deaktiviert die Einstellung für empfangsseitige Skalierung auf dem in $Adapters[1] gespeicherten Gerät und formatiert die Ausgabe als Liste.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; $RSS = Get-IntelEthernetSetting -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -RegistryKeyword "*RSS"
PS C:\&gt; Set-IntelEthernetSetting -Setting $RSS -Reset</dev:code>
        <dev:remarks>
          <maml:para>Setzt die *RSS-Einstellung auf einem bestimmten Gerät auf den Standardwert zurück.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters[1] | Set-IntelEthernetSetting -RegistryKeyword "*RSS" -RegistryValue 1</dev:code>
        <dev:remarks>
          <maml:para>Setzt die *RSS-Einstellung auf 1 (aktiviert).</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $RSS = Get-IntelEthernetSetting -DisplayName "Receive Side Scaling"
PS C:\&gt; $RSS | Set-IntelEthernetSetting -DisplayValue "Disabled"</dev:code>
        <dev:remarks>
          <maml:para>Deaktiviert die angegebene Einstellung mithilfe eines IntelEthernetSetting-Objekts und des Anzeigewerts.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Set-IntelEthernetSetting-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernetSetting</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapter</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapterSetting</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Set-IntelNetAdapterSetting</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>



<!--Invoke-IntelEthernetIdentifyPort-->
	<command:command>

	<!--Synopsis for Invoke-IntelEthernetIdentifyPort-->
		<command:details>
			<command:name>Invoke-IntelEthernetIdentifyPort</command:name>
			<maml:description>
				<maml:para>Lässt die LED auf dem gewählten Anschluss eines Intel(R) Ethernet-Geräts für eine definierte Anzahl von Sekunden blinken.</maml:para>
			</maml:description>
			<maml:copyright>
			</maml:copyright>
			<command:verb>Invoke</command:verb>
			<command:noun>IntelEthernetIdentifyPort</command:noun>
			<dev:version></dev:version>
		</command:details>


	<!--Description of Invoke-IntelEthernetIdentifyPort-->
	<maml:description>
		<maml:para>Das Invoke-IntelEthernetIdentifyPort-Cmdlet lässt die LED auf dem gewählten Anschluss eines Intel(R) Ethernet-Geräts für eine definierte Anzahl von Sekunden, die vom Parameter „-Seconds“ vorgegeben ist, blinken. HINWEIS: Backplane-Geräte unterstützen diesen Test nicht.</maml:para>
	</maml:description>

	<!--Syntax for Invoke-IntelEthernetIdentifyPort-->
	<command:syntax>

		<command:syntaxItem>
			<maml:name>Invoke-IntelEthernetIdentifyPort</maml:name>
			<command:parameter required="true" position="named" pipelineInput="false" globbing="false">
				<maml:name>Name</maml:name>
				<command:parameterValue required="true">String</command:parameterValue>
			</command:parameter>
			<command:parameter required="true" position="1" pipelineInput="false" globbing="false">
				<maml:name>Seconds</maml:name>
				<command:parameterValue required="true">int</command:parameterValue>
			</command:parameter>
		</command:syntaxItem>

		<command:syntaxItem>
			<maml:name>Invoke-IntelEthernetIdentifyPort</maml:name>
			<command:parameter required="true" position="0" pipelineInput="true" globbing="false">
				<maml:name>Adapter</maml:name>
				<command:parameterValue required="true">Adapter</command:parameterValue>
			</command:parameter>
			<command:parameter required="true" position="1" pipelineInput="false" globbing="false">
				<maml:name>Seconds</maml:name>
				<command:parameterValue required="true">int</command:parameterValue>
			</command:parameter>
		</command:syntaxItem>
	</command:syntax>


	<!--Parameters for Invoke-IntelEthernetIdentifyPort-->
	<command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen Intel Ethernet-Geräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

	<!--Seconds-->
	<command:parameter required="true" position="1" pipelineInput="false" globbing="false">
		<maml:name>Seconds</maml:name>
		<maml:description>
			<maml:para>Gibt die Anzahl der Sekunden für das Blinken der LED an: von 1 bis 120 Sekunden.</maml:para>
		</maml:description>
		<command:parameterValue required="true">int</command:parameterValue>
		<dev:type></dev:type>
		<dev:defaultValue>none</dev:defaultValue>
	</command:parameter>

	</command:parameters>


	<!--Input for Invoke-IntelEthernetIdentifyPort-->
	<command:inputTypes>
		<command:inputType>
			<dev:type>
				<maml:name>Adapter</maml:name>
			</dev:type>
			<maml:description>
				<maml:para>Ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt.</maml:para>
			</maml:description>
		</command:inputType>
	</command:inputTypes>


	<!--Output for Invoke-IntelEthernetIdentifyPort-->
	<command:returnValues>
		<command:returnValue>
			<dev:type>
				<maml:name>None</maml:name>
			</dev:type>
		</command:returnValue>
	</command:returnValues>


	<!--Examples for Invoke-IntelEthernetIdentifyPort-->
	<command:examples>
		<command:example>
			<maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
			<maml:introduction>
			</maml:introduction>
			<dev:code>PS C:\&gt; Invoke-IntelEthernetIdentifyPort -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -Seconds 45</dev:code>
			<dev:remarks>
				<maml:para>Lässt die LED auf dem Anschluss eines bestimmten Geräts 45 Sekunden lang blinken.</maml:para>
			</dev:remarks>
		</command:example>

		<command:example>
			<maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
			<maml:introduction>
			</maml:introduction>
			<dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Invoke-IntelEthernetIdentifyPort -Adapter $Adapters[1] -Seconds 45</dev:code>
			<dev:remarks>
				<maml:para>Lässt die LED auf dem Anschluss des in $Adapters[1] gespeicherten Geräts 45 Sekunden lang blinken.</maml:para>
			</dev:remarks>
		</command:example>

		<command:example>
			<maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
			<maml:introduction>
			</maml:introduction>
			<dev:code>PS C:\&gt; $Adapter = Get-IntelEthernet
PS C:\&gt; Invoke-IntelEthernetIdentifyPort $Adapter[1] -Seconds 90</dev:code>
			<dev:remarks>
				<maml:para>Lässt die LED auf dem Anschluss des in $Adapters[1] gespeicherten Geräts 90 Sekunden lang blinken.</maml:para>
			</dev:remarks>
		</command:example>

	</command:examples>


	<!--Links for Invoke-IntelEthernetIdentifyPort-->
	<maml:relatedLinks>
		<maml:navigationLink>
			<maml:linkText>Get-IntelEthernet</maml:linkText>
			<maml:uri></maml:uri>
		</maml:navigationLink>

		<maml:navigationLink>
			<maml:linkText>Get-IntelNetAdapter</maml:linkText>
			<maml:uri></maml:uri>
		</maml:navigationLink>

		<maml:navigationLink>
			<maml:linkText>Test-IntelNetIdentifyAdapter</maml:linkText>
			<maml:uri></maml:uri>
		</maml:navigationLink>

	</maml:relatedLinks>

</command:command>


<!--Test-IntelEthernetHardware-->
<command:command>
  <!--Synopsis for Test-IntelEthernetHardware-->
  <command:details>
    <command:name>Test-IntelEthernetHardware</command:name>
    <maml:description>
      <maml:para>Führt für die angegebenen Adapter Hardware-Diagnosetests durch.</maml:para>
    </maml:description>
    <maml:copyright>
      <maml:para>(c) Intel Corporation 2024</maml:para>
    </maml:copyright>
    <command:verb>Test</command:verb>
    <command:noun>IntelEthernetHardware</command:noun>
    <dev:version/>
  </command:details>
  <!--Description for Test-IntelEthernetHardware-->
  <maml:description>
    <maml:para>Das Cmdlet Test-IntelEthernetHardware führt Hardwaretests auf dem angegebenen Adapter aus und zeigt die Ergebnisse an. Zeigt die Testergebnisse in Listenansicht an.
Hinweis: Nicht jedes Gerät unterstützt jeden Hardwaretest.</maml:para>
  </maml:description>
  <!--Syntax section for Test-IntelEthernetHardware-->
  <command:syntax>
    <command:syntaxItem>
      <maml:name>Test-IntelEthernetHardware</maml:name>
      <command:parameter globbing="false" variableLength="" position="0" required="true" pipelineInput="true">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Adapterobjekten an, auf denen Hardwaretests durchgeführt werden sollen.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="">Adapter[]</command:parameterValue>
      </command:parameter>
    </command:syntaxItem>
    <command:syntaxItem>
      <maml:name>Test-IntelEthernetHardware</maml:name>
      <command:parameter globbing="true" variableLength="" position="named" required="true" pipelineInput="false">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkadapters an, auf dem Hardwaretests durchgeführt werden sollen.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="">String[]</command:parameterValue>
      </command:parameter>
    </command:syntaxItem>
  </command:syntax>
  <!--Parameters for Test-IntelEthernetHardware-->
  <command:parameters>
    <!--Adapter-->
    <command:parameter globbing="false" variableLength="" position="0" required="true" pipelineInput="true">
      <maml:name>Adapter</maml:name>
      <maml:description>
        <maml:para>Gibt eine Sammlung von Adapterobjekten an, auf denen Hardwaretests durchgeführt werden sollen.</maml:para>
      </maml:description>
      <command:parameterValue required="false" variableLength="">Adapter[]</command:parameterValue>
      <dev:type>
        <maml:name/>
        <maml:uri/>
        <maml:description>
        </maml:description>
      </dev:type>
      <dev:defaultValue>none</dev:defaultValue>
    </command:parameter>
    <!--Name-->
    <command:parameter globbing="true" variableLength="" position="named" required="true" pipelineInput="false">
      <maml:name>Name</maml:name>
      <maml:description>
        <maml:para>Gibt den Namen des Netzwerkadapters an, auf dem Hardwaretests durchgeführt werden sollen.</maml:para>
      </maml:description>
      <command:parameterValue required="false" variableLength="">String[]</command:parameterValue>
      <dev:type>
        <maml:name/>
        <maml:uri/>
        <maml:description>
        </maml:description>
      </dev:type>
      <dev:defaultValue>none</dev:defaultValue>
    </command:parameter>
  </command:parameters>
  <!--Input for Test-IntelEthernetHardware-->
  <command:inputTypes>
    <command:inputType>
      <dev:type>
        <maml:name>Adapter[]</maml:name>
      </dev:type>
      <maml:description>
        <maml:para>Eine Sammlung von Adapterobjekten, die vom Cmdlet Get-IntelEthernet zurückgegeben wird.</maml:para>
      </maml:description>
    </command:inputType>
  </command:inputTypes>
  <!--Output for Test-IntelEthernetHardware-->
  <command:returnValues>
    <command:returnValue>
      <dev:type>
        <maml:name>IntelEthernetTestResult[]</maml:name>
      </dev:type>
      <maml:description>
        <maml:para>Eine Sammlung von Ergebnissen der Hardwaretests.</maml:para>
      </maml:description>
    </command:returnValue>
  </command:returnValues>
  <!--Examples for Test-IntelEthernetHardware-->
  <command:examples>
    <command:example>
      <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
      <maml:introduction>
      </maml:introduction>
      <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Test-IntelEthernetHardware -Adapter $Adapters[1]</dev:code>
      <dev:remarks>
        <maml:para>Führt den Hardwaretest für den in $Adapters[1] gespeicherten Adapter durch.</maml:para>
      </dev:remarks>
    </command:example>
    <command:example>
      <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
      <maml:introduction>
      </maml:introduction>
      <dev:code>PS C:\&gt; Test-IntelEthernetHardware -Name "Intel(R) Ethernet 25G 2P E810-XXV Adapter"</dev:code>
      <dev:remarks>
        <maml:para>Führt Hardwaretests auf dem Adapter Intel(R) Ethernet 25G 2P E810-XXV durch.</maml:para>
      </dev:remarks>
    </command:example>
  </command:examples>
  <!--Links section for Test-IntelEthernetHardware-->
  <maml:relatedLinks>
    <maml:navigationLink>
      <maml:linkText>Get-IntelEthernet</maml:linkText>
    </maml:navigationLink>
  </maml:relatedLinks>
</command:command>

<!--Get-IntelEthernetDCBStatus-->
	<command:command>

	<!--Synopsis for Get-IntelEthernetDCBStatus-->
		<command:details>
			<command:name>Get-IntelEthernetDCBStatus</command:name>
			<maml:description>
				<maml:para>Gibt Debug-Informationen zum Data-Center-Bridging-Status für den angegebenen Adapter aus.</maml:para>
			</maml:description>
			<maml:copyright>
			</maml:copyright>
			<command:verb>Get</command:verb>
			<command:noun>IntelEthernetDCBStatus</command:noun>
			<dev:version></dev:version>
		</command:details>


	<!--Description of Get-IntelEthernetDCBStatus-->
	<maml:description>
		<maml:para>Zeigt eine Momentaufnahme der Debug-Informationen zum Data-Center-Bridging-Status für den angegebenen Adapter an, die für die Ausgabe in eine Datei formatiert sind. HINWEIS: Eine ausführliche Erklärung der Ausgabe des Cmdlets finden Sie unter readme.txt.</maml:para>
	</maml:description>

	<!--Syntax for Get-IntelEthernetDCBStatus-->
	<command:syntax>

		<command:syntaxItem>
			<maml:name>Get-IntelEthernetDCBStatus</maml:name>
			<command:parameter required="false" position="named" pipelineInput="false" globbing="true">
				<maml:name>Name</maml:name>
				<command:parameterValue required="true">String[]</command:parameterValue>
			</command:parameter>
		</command:syntaxItem>

		<command:syntaxItem>
			<maml:name>Get-IntelEthernetDCBStatus</maml:name>
			<command:parameter required="false" position="0" pipelineInput="true" globbing="false">
				<maml:name>Adapter</maml:name>
				<command:parameterValue required="true">Adapter[]</command:parameterValue>
			</command:parameter>
		</command:syntaxItem>
	</command:syntax>


	<!--Parameters for Get-IntelEthernetDCBStatus-->
	<command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Intel Ethernet-Geräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

	</command:parameters>


	<!--Input for Get-IntelEthernetDCBStatus-->
	<command:inputTypes>
		<command:inputType>
			<dev:type>
				<maml:name>Adapter</maml:name>
			</dev:type>
			<maml:description>
				<maml:para>Ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt.</maml:para>
			</maml:description>
		</command:inputType>
	</command:inputTypes>


	<!--Output for Get-IntelEthernetDCBStatus-->
	<command:returnValues>
		<command:returnValue>
			<dev:type>
				<maml:name>A snapshot of the input device's DCB state formatted for file output.</maml:name>
			</dev:type>
		</command:returnValue>
	</command:returnValues>


	<!--Examples for Get-IntelEthernetDCBStatus-->
	<command:examples>
		<command:example>
			<maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
			<maml:introduction>
			</maml:introduction>
			<dev:code>PS C:\&gt; Get-IntelEthernetDCBStatus</dev:code>
			<dev:remarks>
				<maml:para>Ruft den DCB-Status aller unterstützten Intel Ethernet-Einheiten ab</maml:para>
			</dev:remarks>
		</command:example>

		<command:example>
			<maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
			<maml:introduction>
      </maml:introduction>
      <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig -Name "*E810*"</dev:code>
      <dev:remarks>
        <maml:para>Ruft mit einer Wildcard den DCB-Status für alle unterstützten Intel Ethernet-Einheiten der E810-Reihe im System ab.</maml:para>
      </dev:remarks>
    </command:example>

		<command:example>
			<maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
			<maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Get-IntelEthernetDCBStatus
</dev:code>
        <dev:remarks>
          <maml:para>Ruft die DCB-Statusinformationen für alle in $Adapters gespeicherten Intel Ethernet-Einheiten ab, die das Cmdlet unterstützen.</maml:para>
        </dev:remarks>
		</command:example>

	</command:examples>


	<!--Links for Get-IntelEthernetDCBStatus-->
	<maml:relatedLinks>
		<maml:navigationLink>
			<maml:linkText>Get-IntelEthernet</maml:linkText>
			<maml:uri></maml:uri>
		</maml:navigationLink>

    <maml:navigationLink>
			<maml:linkText>Get-IntelNetAdapter</maml:linkText>
			<maml:uri></maml:uri>
		</maml:navigationLink>

		<maml:navigationLink>
			<maml:linkText>Get-IntelNetAdapterStatus</maml:linkText>
			<maml:uri></maml:uri>
		</maml:navigationLink>

	</maml:relatedLinks>

</command:command>

<!--~~~~~~~~~~~~~~~~~~~~~~~~~~FW Logging and Debug cmdlet documents~~~~~~~~~~~~~~~~~~~~~-->

<!--Get-IntelEthernetLogConfig-->
 <command:command>

  <!--Synopsis for Get-IntelEthernetLogConfig-->
    <command:details>
      <command:name>Get-IntelEthernetLogConfig</command:name>
      <maml:description>
        <maml:para>Ermöglicht die Anzeige der Konfiguration von Logs bestimmter unterstützter Ereigniskategorien auf Intel(R) Ethernet-Geräten.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Get</command:verb>
      <command:noun>IntelEthernetLogConfig</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Get-IntelEthernetLogConfig-->
    <maml:description>
      <maml:para>Das cmdlet Get-IntelEthernetLogConfig ruft die Konfiguration von Logs unterstützter Kategorien (sogenannte „Module“) von Ereignissen auf Intel(R) Ethernet-Geräten ab. Standardmäßig zeigt dieses cmdlet alle Geräte, deren unterstützte Module und die dazugehörige Log-Ebene pro Modul in einer Tabelle an. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>

      <maml:para>Verwenden Sie die Cmdlets Set-IntelEthernetLogConfig, Disable-IntelEthernetLogConfig und Reset-IntelEthernetLogConfig, um die Konfiguration der Treiberprotokolle zu ändern.</maml:para>

    </maml:description>

    <!--Syntax Section for Get-IntelEthernetLogConfig-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetLogConfig</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
		  <command:parameter required="false" position="1" pipelineInput="false" globbing="true">
          <maml:name>Module</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
		  <command:parameter required="false" position="1" pipelineInput="false" globbing="true">
          <maml:name>Module</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Get-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Configuration</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

     <command:syntaxItem>
        <maml:name>Get-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Configuration</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Get-IntelEthernetLogConfig-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Module-->
      <command:parameter required="false" position="1" pipelineInput="false" globbing="true">
        <maml:name>Module</maml:name>
        <maml:description>
          <maml:para>Gibt das Modul an, dessen Konfiguration abgerufen wird. Hinweis: Sie können nicht gleichzeitig die Parameter -Module und -Configuration angeben. Verwenden Sie das Cmdlet Get-IntelEthernetLogConfig, um eine Liste der unterstützten Module anzuzeigen.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Configuration -->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Configuration</maml:name>
        <maml:description>
          <maml:para>Gibt eine Konfiguration für eine Gruppe von Modulen an. Hinweis: Sie können nicht gleichzeitig die Parameter -Module und -Configuration angeben.</maml:para>
          <maml:para>Gültige Werte für die Konfiguration sind:
* AQ Interface
* Diagnostics
* Infrastructure
* Initialization
* IO
* Link Management
* Manageability
* NVM
* Protocols
* QoS
* RX
* TimeSync
* TX
* XLR</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Get-IntelEthernetLogConfig-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Get-IntelEthernetLogConfig-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name></maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Log-Konfigurationsobjekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Get-IntelEthernetLogConfig-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für alle Intel(R) Ethernet-Geräte im System ab, die Firmware-Protokollierung unterstützen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig | Format-List</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für alle Intel Ethernet-Geräte ab, die Firmware-Protokollierung unterstützen und zeigt die Ergebnisse als Liste an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig -Name "*E810*"  </dev:code>
        <dev:remarks>
          <maml:para>Ruft mit einem Platzhalterzeichen die Log-Konfigurationsangaben für alle unterstützten Intel Ethernet-Geräte der Produktreihe E810 ab.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -Module "NVM"</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für das NVM-Modul für ein Gerät mit einem spezifischen Namen ab.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Get-IntelEthernetLogConfig
</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für alle in $Adapters gespeicherten Intel Ethernet-Geräte ab, die Firmware-Protokollierung unterstützen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 6 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig -Adapter $Adapters[1] -Module "NVM","ACL"
</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für das in $Adapters[1] gespeicherten Gerät für die NVM- und ACL-Module ab.</maml:para>
        </dev:remarks>
      </command:example>

	   <command:example>
        <maml:title>------------------------ EXAMPLE 7 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Get-IntelEthernetLogConfig -Configuration "NVM","Initialization"</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für Intel-Ethernet-Geräte ab, die in $Adapters gespeichert sind, für die Module, die Teil der Konfigurationsgruppe NVM und Initialisierung sind.</maml:para>
        </dev:remarks>
      </command:example>

	   <command:example>
        <maml:title>------------------------ EXAMPLE 8 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Get-IntelEthernetLogConfig -Name "*E810*" -Configuration "In*"</dev:code>
        <dev:remarks>
          <maml:para>Ruft die Log-Konfigurationsangaben für alle unterstützten Intel Ethernet-Geräte der Reihe E810 im System unter Verwendung eines Platzhalters für alle Konfigurationsgruppen ab, die mit den Buchstaben „In" beginnen. In diesem Fall würde es Informationen über die Konfigurationsgruppen Infrastruktur und Initialisierung erhalten.</maml:para>
        </dev:remarks>
      </command:example>


    </command:examples>


    <!--Links for Get-IntelEthernetLogConfig-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Set-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Disable-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Reset-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Set-IntelEthernetLogConfig-->
<command:command>

  <!--Synopsis for Set-IntelEthernetLogConfig-->
    <command:details>
      <command:name>Set-IntelEthernetLogConfig</command:name>
      <maml:description>
        <maml:para>Stellt die Log-Konfiguration unterstützter Ereigniskategorien auf Intel(R) Ethernet-Adaptern ein.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Set</command:verb>
      <command:noun>IntelEthernetLogConfig</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Set-IntelEthernetLogConfig-->
    <maml:description>
      <maml:para>Mit dem Cmdlet Set-IntelEthernetLogConfig können Sie die Stufe für Protokollmeldungen für unterstützte Kategorien (sogenannte „Module“) von Events auf Intel(R) Ethernet-Adaptern festlegen. Sie können die Ausführlichkeitsstufe für einzelne Module oder für unterstützte Gruppen von Modulen festlegen. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>
      <maml:para>Verwenden Sie das Cmdlet Disable-IntelEthernetLogConfig, um die Protokollierung für alle Module zu deaktivieren. Verwenden Sie das Cmdlet Reset-IntelEthernetLogConfig, um alle Module für ein Gerät auf die Standardprotokollebenen des Treibers zurückzusetzen.</maml:para>
    </maml:description>

    <!--Syntax Section for Set-IntelEthernetLogConfig-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Set-IntelEthernetLogConfig</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
		  <command:parameter required="true" position="1" pipelineInput="false" globbing="true">
          <maml:name>Module</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
		<command:parameter required="true" position="2" pipelineInput="false" globbing="true">
          <maml:name>Level</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Set-IntelEthernetLogConfig</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
		<command:parameter required="true" position="1" pipelineInput="false" globbing="true">
          <maml:name>Module</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
		<command:parameter required="true" position="2" pipelineInput="false" globbing="true">
          <maml:name>Level</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Set-IntelEthernetLogConfig</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
          <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Configuration</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
          <command:parameter required="true" position="2" pipelineInput="false" globbing="true">
          <maml:name>Level</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Set-IntelEthernetLogConfig</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
          <maml:name>Configuration</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
        <command:parameter required="true" position="2" pipelineInput="false" globbing="true">
          <maml:name>Level</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Set-IntelEthernetLogConfig-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Module-->
      <command:parameter required="true" position="1" pipelineInput="false" globbing="true">
        <maml:name>Module</maml:name>
        <maml:description>
          <maml:para>Gibt das Modul an, dessen Konfiguration vorgenommen wird. Hinweis: Sie können nicht gleichzeitig die Parameter -Module und -Configuration angeben. Verwenden Sie das Cmdlet Get-IntelEthernetLogConfig, um eine Liste der unterstützten Module anzuzeigen.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

	  <!--Level-->
	  <command:parameter required="true" position="2" pipelineInput="false" globbing="true">
          <maml:name>Level</maml:name>
		  <maml:description>
          <maml:para>Gibt die Log-Ebene an, auf der die Konfiguration erfolgt.</maml:para>
          <maml:para>Gültige Werte für die Ebene sind:
* Deaktiviert
* Error
* Warning
* Normal
* Verbose
</maml:para>
          </maml:description>
          <command:parameterValue required="true">String</command:parameterValue>
		  <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
        </command:parameter>

      <!--Configuration-->
      <command:parameter required="true" position="named" pipelineInput="false" globbing="true">
        <maml:name>Configuration</maml:name>
        <maml:description>
          <maml:para>Gibt eine Konfiguration für eine Gruppe von Modulen an. Hinweis: Sie können nicht gleichzeitig die Parameter -Module und -Configuration angeben.</maml:para>
          <maml:para>Gültige Werte für die Konfiguration sind:
* AQ Interface
* Diagnostics
* Infrastructure
* Initialization
* IO
* Link Management
* Manageability
* NVM
* Protocols
* QoS
* RX
* TimeSync
* TX
* XLR</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Set-IntelEthernetLogConfig-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Set-IntelEthernetLogConfig-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Success or failure</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Sofern erfolgreich, gibt das cmdlet eine Sammlung von Modulen und Objekten auf der Ebene aus.</maml:para>
			<maml:para>Wenn das Cmdlet nicht erfolgreich ausgeführt wurde, wird eine Fehlermeldung angezeigt.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Set-IntelEthernetLogConfig-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Set-IntelEthernetLogConfig -Name "*E810*" -Module "NVM" -Level "Verbose"</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Konfigurationsebene des Logs für das NVM-Modul und für alle Intel(R) Ethernet-Geräte der Produktreihe E810 mit einem Platzhalterzeichen auf Verbose (ausführlich).</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Set-IntelEthernetLogConfig -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -Module "Switch" -Level "Warning"</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Konfiguration auf die Protokollierung von Warnmeldungen für das Switch-Modul für ein Gerät mit einem spezifischen Namen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Set-IntelEthernetLogConfig -Module "MDIO" -Level "Error"
</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Konfiguration auf die Protokollierung von Fehlermeldungen für das MDIO-Modul, für alle in $Adapters gespeicherten Geräte.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Set-IntelEthernetLogConfig -Name "*E810*" -Configuration "Link Management" -Level "Error"</dev:code>
        <dev:remarks>
          <maml:para>Stellt die Konfiguration für die Protokollierung von Fehlermeldungen für die Link-Management-Konfigurationsgruppe für alle Intel Ethernet-Geräte der Reihe E810 im System unter Verwendung eines Platzhalters ein.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Set-IntelEthernetLogConfig -Configuration "NVM","Initialization" -Level "Warning"
</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Konfiguration auf die Protokollierung von Warnmeldungen für Intel Ethernet Geräte, die in $Adapters gespeichert sind, für die Module, die Teil der NVM- und Initialization-Gruppe sind.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Set-IntelEthernetLogConfig-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Disable-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

       <maml:navigationLink>
        <maml:linkText>Reset-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Start-IntelEthernetLog-->
 <command:command>

  <!--Synopsis for Start-IntelEthernetLog-->
    <command:details>
      <command:name>Start-IntelEthernetLog</command:name>
      <maml:description>
        <maml:para>Beginnt die Treiberprotokolle für Intel(R) Ethernet-Geräte zu erfassen, die die Firmware-Protokollierung unterstützen.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Start</command:verb>
      <command:noun>IntelEthernetLog</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Start-IntelEthernetLog-->
    <maml:description>
      <maml:para>Das Cmdlet Start-IntelEthernetLog startet die Erfassung von Treiberprotokollen für Intel(R) Ethernet-Geräte, die Firmware-Protokollierung unterstützen. Das Cmdlet speichert die Protokolldatei standardmäßig an einem Standardspeicherort (in C:\%LOCALAPPDATA%\Local\Intel\Wired Networking). Sie können einen anderen Dateipfad und den Protokollnamen mit dem -Path-Parameter angeben.</maml:para>
	  <maml:para>Verwenden Sie das Cmdlet Stop-IntelEthernetLog, um die Erfassung des Treiberprotokolls zu beenden.</maml:para>
	  <maml:para>Verwenden Sie das Cmdlet Get-IntelEthernetLogConfig, um die Konfiguration der Treiberprotokolle anzuzeigen. Verwenden Sie die Cmdlets Set-IntelEthernetLogConfig, Disable-IntelEthernetLogConfig und Reset-IntelEthernetLogConfig, um die Konfiguration der Treiberprotokolle zu ändern.</maml:para>
    </maml:description>

    <!--Syntax Section for Start-IntelEthernetLog-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Start-IntelEthernetLog</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
		<command:parameter required="false" position="1" pipelineInput="false" globbing="false">
          <maml:name>Path</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
		<command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Force</maml:name>
        </command:parameter>
		<command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Append</maml:name>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Start-IntelEthernetLog</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">adapter</command:parameterValue>
        </command:parameter>
		<command:parameter required="false" position="1" pipelineInput="false" globbing="false">
          <maml:name>Path</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
		<command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Force</maml:name>
        </command:parameter>
		<command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Append</maml:name>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Start-IntelEthernetLog-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Path-->
      <command:parameter required="false" position="1" pipelineInput="false" globbing="false">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Gibt den Pfad und den Dateinamen an, für die Protokolle geschrieben werden.</maml:para>
        </maml:description>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Force-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Überschreibt die Protokolldatei mit einer neuen, wenn sie bereits vorhanden ist.</maml:para>
        </maml:description>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Append-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Append</maml:name>
        <maml:description>
          <maml:para>Hängt Informationen an die Protokolldatei an, wenn sie bereits vorhanden ist.</maml:para>
        </maml:description>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Start-IntelEthernetLog-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Start-IntelEthernetLog-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Success or failure</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Bei Erfolg wird der Pfad der Protokolldatei aufgelistet.
Wenn das Cmdlet nicht erfolgreich ausgeführt wurde, wird eine Fehlermeldung angezeigt.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Start-IntelEthernetLog-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Start-IntelEthernetLog -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Startet die Protokollierung für das Gerät mit dem angegebenen Namen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Start-IntelEthernetLog -Adapter $Adapters[1]</dev:code>
        <dev:remarks>
          <maml:para>Beginnt die Protokollierung für das in $Adapters[1] gespeicherte Gerät und speichert das Protokoll am Standardspeicherort.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Start-IntelEthernetLog -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -Force</dev:code>
        <dev:remarks>
          <maml:para>Beginnt die Protokollierung für das Gerät mit dem angegebenen Namen und überschreibt die vorherige Protokolldatei, die am Standardspeicherort gespeichert wurde.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Start-IntelEthernetLog -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"
-Path "C:\E810_Log"</dev:code>
        <dev:remarks>
          <maml:para>Beginnt die Protokollierung für das angegebene Gerät und speichert eine Protokolldatei unter C:\E810_Log.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Start-IntelEthernetLog -Adapter $Adapters[1] -Force</dev:code>
        <dev:remarks>
          <maml:para>Beginnt die Protokollierung für das in $Adapters[1] gespeicherte Gerät und überschreibt die vorherige Protokolldatei, die am Standardspeicherort gespeichert wurde.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 6 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Start-IntelEthernetLog -Adapter $Adapters[1] -Append</dev:code>
        <dev:remarks>
          <maml:para>Beginnt die Protokollierung für das in $Adapters[1] gespeicherte Gerät und fügt es einer vorherigen Protokolldatei an, die am Standardspeicherort gespeichert wurde.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 7 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Start-IntelEthernetLog -Adapter $Adapters[1] -Path "C:\E810_Log" -Append</dev:code>
        <dev:remarks>
          <maml:para>Beginnt die Protokollierung für das in $Adapters[1] gespeicherte Gerät und fügt es an die bestehende Protokolldatei unter C:\E810_Log an.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Start-IntelEthernetLog-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

        <maml:navigationLink>
        <maml:linkText>Set-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Stop-IntelEthernetLog</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Disable-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

       <maml:navigationLink>
        <maml:linkText>Reset-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Stop-IntelEthernetLog-->
 <command:command>

  <!--Synopsis for Stop-IntelEthernetLog-->
    <command:details>
      <command:name>Stop-IntelEthernetLog</command:name>
      <maml:description>
        <maml:para>Stoppt das Treiberprotokoll, das durch das Cmdlet Start-IntelEthernetLog gestartet wurde.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Stop</command:verb>
      <command:noun>IntelEthernetLog</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Stop-IntelEthernetLog-->
    <maml:description>
      <maml:para>Das Cmdlet Stop-IntelEthernetLog stoppt das vom Cmdlet Start-IntelEthernetLog gestartete Treiberprotokoll.</maml:para>

    </maml:description>

    <!--Syntax Section for Stop-IntelEthernetLog-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Stop-IntelEthernetLog</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Stop-IntelEthernetLog</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Stop-IntelEthernetLog</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Stop-IntelEthernetLog-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Stop-IntelEthernetLog-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Stop-IntelEthernetLog-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Success or failure</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Bei Erfolg wird keine Nachricht zurückgegeben.
Wenn das Cmdlet nicht erfolgreich ausgeführt wurde, wird eine Fehlermeldung angezeigt.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Stop-IntelEthernetLog-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Stop-IntelEthernetLog</dev:code>
        <dev:remarks>
          <maml:para>Stoppt die Protokollierung für Geräte, die mit Start-IntelEthernetLog gestartet wurden.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Stop-IntelEthernetLog -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Beendet die mit Start-IntelEthernetLog gestartete Protokollierung für das angegebene Gerät.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Stop-IntelEthernetLog -Adapter $Adapters[1]</dev:code>
        <dev:remarks>
          <maml:para>Stoppt die Protokollierung für das in $Adapters[1] gespeicherte Gerät.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Stop-IntelEthernetLog-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Start-IntelEthernetLog</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Disable-IntelEthernetLogConfig-->
 <command:command>

  <!--Synopsis for Disable-IntelEthernetLogConfig-->
    <command:details>
      <command:name>Disable-IntelEthernetLogConfig</command:name>
      <maml:description>
        <maml:para>Deaktiviert die Treiberprotokollierung für alle Kategorien von Ereignissen auf unterstützten Intel(R) Ethernet-Geräten.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Disable</command:verb>
      <command:noun>IntelEthernetLogConfig</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Disable-IntelEthernetLogConfig-->
    <maml:description>
      <maml:para>Das Cmdlet Disable-IntelEthernetLogConfig deaktiviert die Treiberprotokollierung für alle Kategorien von Ereignissen auf unterstützten Intel(R) Ethernet-Geräten, indem es die Protokollebenen auf Deaktiviert setzt. Standardmäßig zeigt dieses Cmdlet seine Ausgabe als Tabelle an, gruppiert nach Gerät. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>

    </maml:description>

    <!--Syntax Section for Disable-IntelEthernetLogConfig-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Disable-IntelEthernetLogConfig</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Disable-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Disable-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Disable-IntelEthernetLogConfig-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Disable-IntelEthernetLogConfig-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Disable-IntelEthernetLogConfig-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name></maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Log-Konfigurationsobjekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Disable-IntelEthernetLogConfig-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Disable-IntelEthernetLogConfig -Name "*E810*"</dev:code>
        <dev:remarks>
          <maml:para>Setzt mit einem Platzhalterzeichen die Konfigurationsebene des Logs auf Deaktiviert für alle Intel(R) Ethernet E810 Geräte der Produktreihe im System.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Disable-IntelEthernetLogConfig -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Konfigurationsebene des Logs auf Deaktiviert für ein Gerät mit einem spezifischen Namen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Disable-IntelEthernetLogConfig</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Konfiguration des Logs auf Deaktiviert, für alle in $Adapters gespeicherten Geräte.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Disable-IntelEthernetLogConfig-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Set-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Reset-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Reset-IntelEthernetLogConfig-->
 <command:command>

  <!--Synopsis for Reset-IntelEthernetLogConfig-->
    <command:details>
      <command:name>Reset-IntelEthernetLogConfig</command:name>
      <maml:description>
        <maml:para>Setzt alle Module für ein Gerät auf die Standardprotokollebenen des Treibers zurück.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Reset</command:verb>
      <command:noun>IntelEthernetLogConfig</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Reset-IntelEthernetLogConfig-->
    <maml:description>
      <maml:para>Das Cmdlet Reset-IntelEthernetLogConfig setzt bei Intel(R) Ethernet-Geräten, die die Protokollierung unterstützen, alle Module für ein Gerät auf die Standardprotokollebenen des Treibers zurück. Standardmäßig zeigt dieses Cmdlet seine Ausgabe als Tabelle an, gruppiert nach Gerät. Um die Ergebnisse als Liste anzuzeigen, übergeben Sie die Ausgabe über die Pipeline an Format-List.</maml:para>

    </maml:description>

    <!--Syntax Section for Reset-IntelEthernetLogConfig-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Reset-IntelEthernetLogConfig</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Reset-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Reset-IntelEthernetLogConfig</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Reset-IntelEthernetLogConfig-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Reset-IntelEthernetLogConfig-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Reset-IntelEthernetLogConfig-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name></maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Log-Konfigurationsobjekten.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Reset-IntelEthernetLogConfig-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Reset-IntelEthernetLogConfig -Name "*E810*"</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Protokollkonfigurationsebenen für alle Intel(R) Ethernet-Geräte der Reihe E810 im System unter Verwendung eines Platzhalters zurück.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; Reset-IntelEthernetLogConfig -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Protokollkonfigurationsebenen für ein Gerät mit einem bestimmten Namen zurück.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Reset-IntelEthernetLogConfig</dev:code>
        <dev:remarks>
          <maml:para>Setzt die Protokollkonfigurationsebenen für alle Intel Ethernet-Geräte zurück, die in $Adapters gespeichert sind und die Protokollierung unterstützen.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Reset-IntelEthernetLogConfig-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Set-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Disable-IntelEthernetLogConfig</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Write-IntelEthernetDebugDump-->
 <command:command>

  <!--Synopsis for Write-IntelEthernetDebugDump-->
    <command:details>
      <command:name>Write-IntelEthernetDebugDump</command:name>
      <maml:description>
        <maml:para>Schreibt die Ergebnisse eines Debug Dump in eine Datei für ein unterstütztes Intel(R) Ethernet-Gerät.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Write</command:verb>
      <command:noun>IntelEthernetDebugDump</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Write-IntelEthernetDebugDump-->
    <maml:description>
      <maml:para>Auf unterstützten Intel(R) Ethernet-Geräten erhält das Write-IntelEthernetDebugDump Cmdlet Runtime-Registerwerte aus der Firmware und schreibt die Ergebnisse dann in eine einzige Dump-Datei, um komplizierte Probleme im Feld zu debuggen. Dieser Debug Dump enthält einen Snapshot des Geräts und seiner existierenden Hardwarekonfiguration, wie Switch-Tabellen, Transmit-Scheduler-Tabellen und andere Informationen.</maml:para>
	  <maml:para>HINWEIS: Der Inhalt des Debug Dump ist nicht menschlich lesbar. Sie müssen mit dem Kundensupport zusammenarbeiten, um die Datei zu decodieren.</maml:para>
	  <maml:para>Diese Funktion wird nur auf Intel(R) Ethernet-Geräten der Produktreihe 810 unterstützt.</maml:para>
    </maml:description>

    <!--Syntax Section for Write-IntelEthernetDebugDump-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Write-IntelEthernetDebugDump</maml:name>
        <command:parameter required="true" position="named" pipelineInput="false" globbing="false">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
		    <command:parameter required="false" position="1" pipelineInput="false" globbing="true">
          <maml:name>Cluster</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
		    <command:parameter required="false" position="2" pipelineInput="false" globbing="false">
          <maml:name>Path</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
		    <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Force</maml:name>
        </command:parameter>
		    <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Append</maml:name>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Write-IntelEthernetDebugDump</maml:name>
        <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter</command:parameterValue>
        </command:parameter>
		<command:parameter required="false" position="1" pipelineInput="false" globbing="true">
          <maml:name>Cluster</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
    </command:parameter>
		<command:parameter required="false" position="1" pipelineInput="false" globbing="false">
          <maml:name>Path</maml:name>
          <command:parameterValue required="true">String</command:parameterValue>
        </command:parameter>
		<command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Force</maml:name>
        </command:parameter>
		<command:parameter required="false" position="named" pipelineInput="false" globbing="false">
          <maml:name>Append</maml:name>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Write-IntelEthernetDebugDump-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen des Netzwerkgeräts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="true" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Cluster-->
      <command:parameter required="false" position="1" pipelineInput="false" globbing="true">
        <maml:name>Cluster</maml:name>
        <maml:description>
          <maml:para>Gibt Cluster an, um einen Dump existierender Hardware-Konfigurationsinformationen durchzuführen. Legt standardmäßig alle Cluster ab.</maml:para>
    <maml:para>Gültige Werte für Cluster sind:
* Switch
* ACL
* Tx Scheduler
* Profile Configuration
* Link
* DCB
* L2P
* Manageability Transactions</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>

      <!--Path-->
      <command:parameter required="false" position="2" pipelineInput="false" globbing="false">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Gibt den Pfad und den Dateinamen für die zu schreibende Dump-Datei an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String</command:parameterValue>
		<dev:type>
          <maml:name>String</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Force-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Überschreibt die Dump-Datei mit einer neuen, wenn sie bereits vorhanden ist.</maml:para>
        </maml:description>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Append-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="false">
        <maml:name>Append</maml:name>
        <maml:description>
          <maml:para>Fügt Informationen zur Dump-Datei hinzu, wenn sie bereits existiert.</maml:para>
        </maml:description>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Write-IntelEthernetDebugDump-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Gibt ein Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekt an.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Write-IntelEthernetDebugDump-->
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Success or failure</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Wenn dies erfolgreich ist, gibt das Cmdlet den Pfad der Debug-Dump-Datei an.
Wenn das Cmdlet nicht erfolgreich ausgeführt wurde, wird eine Fehlermeldung angezeigt.</maml:para>
          </maml:description>
      </command:returnValue>
    </command:returnValues>


    <!--Examples for Write-IntelEthernetDebugDump-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Write-IntelEthernetDebugDump -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Erzeugt einen Dump aller Cluster-Informationen für das angegebene Gerät und schreibt das auf den Standardspeicherort.</maml:para>
        </dev:remarks>
    </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Write-IntelEthernetDebugDump -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -Cluster "Link"</dev:code>
        <dev:remarks>
          <maml:para>Erzeugt einen Dump der Link-Cluster-Information für das angegebene Gerät und schreibt diesen auf den Standardspeicherort.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>

        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters[1] | Write-IntelEthernetDebugDump -Cluster "Link"</dev:code>
        <dev:remarks>
          <maml:para>Erzeugt einen Dump der Link-Cluster-Information für das in $Adapters[1] gespeicherte Gerät und schreibt diesen auf den Standardspeicherort.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Write-IntelEthernetDebugDump -Adapter $Adapters[1] -Cluster "Link" -Append</dev:code>
        <dev:remarks>
          <maml:para>Erzeugt einen Dump der Link-Cluster-Information für das in $Adapters[1] gespeicherte Gerät und fügt sie einer früheren Datei an, die am Standardspeicherort gespeichert ist.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Write-IntelEthernetDebugDump -Adapter $Adapters[1] -Cluster "Link" -Path "C:\E810_Dump" -Append</dev:code>
        <dev:remarks>
          <maml:para>Erzeugt einen Dump der Link-Cluster-Information für das in $Adapters[1] gespeicherte Gerät und fügt sie der vorhandenen Datei unter C:\E810_Dump an.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 6 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Write-IntelEthernetDebugDump -Name "Intel(R) Ethernet Network Adapter E810-C-Q2" -Cluster "Link" -Force</dev:code>
        <dev:remarks>
          <maml:para>Erzeugt einen Dump der Debug-Information für den Link-Cluster mit dem angegebenen Namen und überschreibt die vorherige Datei, die am Standardspeicherort gespeichert ist.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Write-IntelEthernetDebugDump-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelEthernet</maml:linkText>
      </maml:navigationLink>

        <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapter</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>


<!--Register-IntelEthernetRDMACounterSet-->
 <command:command>

  <!--Synopsis for Register-IntelEthernetRDMACounterSet-->
    <command:details>
      <command:name>Register-IntelEthernetRDMACounterSet</command:name>
      <maml:description>
        <maml:para>Registriert die RDMA-Statistikzähler bei perfmon.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Register</command:verb>
      <command:noun>IntelEthernetRDMACounterSet</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Register-IntelEthernetRDMACounterSet-->
    <maml:description>
      <maml:para>Das Register-IntelEthernetRDMACounterSet-Cmdlet registriert die RDMA-Statistikzähler für das jeweilige Gerät bei perfmon.</maml:para>
      <maml:para>Sie können dieses Cmdlet verwenden, um die Zähler neu zu registrieren.</maml:para>
    </maml:description>

    <!--Syntax Section for Register-IntelEthernetRDMACounterSet-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Register-IntelEthernetRDMACounterSet</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Register-IntelEthernetRDMACounterSet</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Register-IntelEthernetRDMACounterSet</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Register-IntelEthernetRDMACounterSet-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen eines Intel Ethernet-Objekts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Register-IntelEthernetRDMACounterSet-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Register-IntelEthernetRDMACounterSet-->
	<command:returnValues>
		<command:returnValue>
			<dev:type>
				<maml:name>None</maml:name>
			</dev:type>
		</command:returnValue>
	</command:returnValues>


    <!--Examples for Register-IntelEthernetRDMACounterSet-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Register-IntelEthernetRDMACounterSet</dev:code>
        <dev:remarks>
          <maml:para>Registriert die RDMA-Statistikzähler für alle unterstützten Intel Ethernet-Geräte.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Register-IntelEthernetRDMACounterSet -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Registriert die RDMA-Statistikzähler für das angegebene Intel Ethernet-Gerät.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Register-IntelEthernetRDMACounterSet -Name "*E810*"</dev:code>
        <dev:remarks>
          <maml:para>Registriert die RDMA-Statistikzähler für alle Intel Ethernet-Geräte im System aus einer bestimmten Gerätefamilie und unter Verwendung von Platzhalterzeichen.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Register-IntelEthernetRDMACounterSet
</dev:code>
        <dev:remarks>
          <maml:para>Registriert die RDMA-Statistikzähler für alle in $Adapters gespeicherten Intel Ethernet-Geräte.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Register-IntelEthernetRDMACounterSet -Adapter $Adapters[1]</dev:code>
        <dev:remarks>
          <maml:para>Registriert die RDMA-Statistikzähler für das in $Adapters[1] gespeicherte Intel Ethernet-Gerät.</maml:para>
        </dev:remarks>
      </command:example>

    </command:examples>


    <!--Links for Register-IntelEthernetRDMACounterSet-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapter</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Unregister-IntelEthernetRDMACounterSet</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>

<!--Unregister-IntelEthernetRDMACounterSet-->
 <command:command>

  <!--Synopsis for Unregister-IntelEthernetRDMACounterSet-->
    <command:details>
      <command:name>Unregister-IntelEthernetRDMACounterSet</command:name>
      <maml:description>
        <maml:para>Hebt die Registrierung der RDMA-Statistikzähler von perfmon auf.</maml:para>
      </maml:description>
      <maml:copyright>
      </maml:copyright>
      <command:verb>Unregister</command:verb>
      <command:noun>IntelEthernetRDMACounterSet</command:noun>
      <dev:version></dev:version>
    </command:details>

    <!--Description for Unregister-IntelEthernetRDMACounterSet-->
    <maml:description>
      <maml:para>Das Unregister-IntelEthernetRDMACounterSet-Cmdlet hebt die Registrierung der RDMA-Statistikzähler für das angegebene Gerät in perfmon auf.</maml:para>
      </maml:description>

    <!--Syntax Section for Unregister-IntelEthernetRDMACounterSet-->
    <command:syntax>

      <command:syntaxItem>
        <maml:name>Unregister-IntelEthernetRDMACounterSet</maml:name>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Unregister-IntelEthernetRDMACounterSet</maml:name>
        <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
          <maml:name>Name</maml:name>
          <command:parameterValue required="true">String[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

      <command:syntaxItem>
        <maml:name>Unregister-IntelEthernetRDMACounterSet</maml:name>
        <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
          <maml:name>Adapter</maml:name>
          <command:parameterValue required="true">Adapter[]</command:parameterValue>
        </command:parameter>
      </command:syntaxItem>

    </command:syntax>


    <!--Parameters for Unregister-IntelEthernetRDMACounterSet-->
    <command:parameters>

      <!--Name-->
      <command:parameter required="false" position="named" pipelineInput="false" globbing="true">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Gibt den Namen eines Intel Ethernet-Objekts an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

      <!--Adapter-->
      <command:parameter required="false" position="0" pipelineInput="true" globbing="false">
        <maml:name>Adapter</maml:name>
        <maml:description>
          <maml:para>Gibt eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten an.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Adapter[]</command:parameterValue>
        <dev:type>
          <maml:name>Adapter Object</maml:name>
          <maml:uri/>
        </dev:type>
        <dev:defaultValue>none</dev:defaultValue>
      </command:parameter>

    </command:parameters>


    <!--Input for Unregister-IntelEthernetRDMACounterSet-->
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>Adapter[]</maml:name>
        </dev:type>
          <maml:description>
            <maml:para>Eine Sammlung von Intel (IntelEthernetAdapter oder IANet_PhysicalEthernetAdapter) oder Microsoft (MSFT_NetAdapter oder Win32_NetworkAdapter) Objekten.</maml:para>
          </maml:description>
      </command:inputType>
    </command:inputTypes>

    <!--Output for Unregister-IntelEthernetRDMACounterSet-->
	<command:returnValues>
		<command:returnValue>
			<dev:type>
				<maml:name>None</maml:name>
			</dev:type>
		</command:returnValue>
	</command:returnValues>


    <!--Examples for Unregister-IntelEthernetRDMACounterSet-->
    <command:examples>
      <command:example>
        <maml:title>------------------------ EXAMPLE 1 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Unregister-IntelEthernetRDMACounterSet</dev:code>
        <dev:remarks>
          <maml:para>Hebt die Registrierung der RDMA-Statistikzähler für alle unterstützten Intel Ethernet-Geräte auf.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 2 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Unregister-IntelEthernetRDMACounterSet -Name "Intel(R) Ethernet Network Adapter E810-C-Q2"</dev:code>
        <dev:remarks>
          <maml:para>Hebt die Registrierung der RDMA-Statistikzähler für das angegebene Intel Ethernet-Gerät auf.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 3 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; Unregister-IntelEthernetRDMACounterSet -Name "*E810*"</dev:code>
        <dev:remarks>
          <maml:para>Hebt die Registrierung der RDMA-Statistikzähler für alle Intel Ethernet-Geräte im System aus einer bestimmten Gerätefamilie unter Verwendung von Platzhalterzeichen auf.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 4 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; $Adapters | Unregister-IntelEthernetRDMACounterSet
</dev:code>
        <dev:remarks>
          <maml:para>Hebt die Registrierung der RDMA-Statistikzähler für alle in $Adapters gespeicherten Intel Ethernet-Geräte auf.</maml:para>
        </dev:remarks>
      </command:example>

      <command:example>
        <maml:title>------------------------ EXAMPLE 5 ------------------------</maml:title>
        <maml:introduction>
        </maml:introduction>
        <dev:code>PS C:\&gt; $Adapters = Get-IntelEthernet
PS C:\&gt; Unregister-IntelEthernetRDMACounterSet -Adapter $Adapters[1]</dev:code>
        <dev:remarks>
          <maml:para>Hebt die Registrierung der RDMA-Statistikzähler für das in $Adapters[1] gespeicherte Intel Ethernet-Gerät auf.</maml:para>
        </dev:remarks>
      </command:example>


    </command:examples>


    <!--Links for Unregister-IntelEthernetRDMACounterSet-->
    <maml:relatedLinks>

      <maml:navigationLink>
        <maml:linkText>Get-IntelNetAdapter</maml:linkText>
      </maml:navigationLink>

      <maml:navigationLink>
        <maml:linkText>Register-IntelEthernetRDMACounterSet</maml:linkText>
      </maml:navigationLink>

    </maml:relatedLinks>

  </command:command>

</helpItems>
