PowerShell Logo Small

Reset-NetAdapterAdvancedProperty



This is the built-in help made by Microsoft for the command 'Reset-NetAdapterAdvancedProperty', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Resets the advanced properties of a network adapter to their factory default values.

SYNTAX


Reset-NetAdapterAdvancedProperty [[-Name] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -DisplayName
<String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Reset-NetAdapterAdvancedProperty [-AsJob] [-CimSession <CimSession[]>] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf]
[<CommonParameters>]
Reset-NetAdapterAdvancedProperty [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -DisplayName <String[]>
-InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Reset-NetAdapterAdvancedProperty cmdlet resets the advanced properties or a specific advanced property of a network adapter to one or more of the factory default values.
The advanced property must have the DisplayName parameter value specified.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287416
Format-List
Get-NetAdapterAdvancedProperty
New-NetAdapterAdvancedProperty
Remove-NetAdapterAdvancedProperty
Set-NetAdapterAdvancedProperty

REMARKS

<

Examples


EXAMPLE 1

This example resets the advanced property interrupt moderation to the default value.
PS C:\>Reset-NetAdapterAdvancedProperty -Name MyAdapter -DisplayName "Interrupt Moderation"

This is a version of the cmdlet that resets the advanced property interrupt moderation to the default value, using wildcard characters in the property name.
PS C:\>Reset-NetAdapterAdvancedProperty -Name MyAdapter -DisplayName "Interru*"

This is a version of the cmdlet that resets all advanced properties with display names to the default values.
PS C:\> Reset-NetAdapterAdvancedProperty -Name MyAdapter –DisplayName *








EXAMPLE 2

PS C:\> Get-NetAdapterAdvancedProperty –Name MyAdapter | Format-List -Property Name, DisplayName, RegistryKeyword, Valid*;
PS C:\> Reset-NetAdapterAdvancedProperty -Name MyAdapter –DisplayName *



This example displays all of the default values of the advanced properties and then sets all advanced properties with display names to the default values.