PowerShell Logo Small

Disable-NetAdapterPowerManagement



This is the built-in help made by Microsoft for the command 'Disable-NetAdapterPowerManagement', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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

Disables specific power management features on the network adapter.

SYNTAX


Disable-NetAdapterPowerManagement [-Name] <String[]> [-ArpOffload] [-AsJob] [-CimSession <CimSession[]>] [-D0PacketCoalescing]
[-DeviceSleepOnDisconnect] [-IncludeHidden] [-NoRestart] [-NSOffload] [-PassThru] [-RsnRekeyOffload] [-SelectiveSuspend] [-ThrottleLimit
<Int32>] [-WakeOnMagicPacket] [-WakeOnPattern] [-Confirm] [-WhatIf] [<CommonParameters>]
Disable-NetAdapterPowerManagement [-ArpOffload] [-AsJob] [-CimSession <CimSession[]>] [-D0PacketCoalescing] [-DeviceSleepOnDisconnect]
[-NoRestart] [-NSOffload] [-PassThru] [-RsnRekeyOffload] [-SelectiveSuspend] [-ThrottleLimit <Int32>] [-WakeOnMagicPacket] [-WakeOnPattern]
-InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Disable-NetAdapterPowerManagement [-ArpOffload] [-AsJob] [-CimSession <CimSession[]>] [-D0PacketCoalescing] [-DeviceSleepOnDisconnect]
[-IncludeHidden] [-NoRestart] [-NSOffload] [-PassThru] [-RsnRekeyOffload] [-SelectiveSuspend] [-ThrottleLimit <Int32>] [-WakeOnMagicPacket]
[-WakeOnPattern] -InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Disable-NetAdapterPowerMangement cmdlet disables specific power management features on the network adapter. If no power parameters are
specified then all power management features are disabled.



<

RELATED LINKS

Enable-NetAdapterPowerManagement
Get-NetAdapter
Get-NetAdapterPowerManagement
Set-NetAdapterPowerManagement

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Disable-NetAdapterPowerManagement -Name "Ethernet 1"



This example disables power management on the network adapter named Ethernet 1 and restarts the network adapter.




EXAMPLE 2

PS C:\>$netAdapter1 = Get-NetAdapter –Name "Ethernet 3"



PS C:\>Disable-NetAdapterPowerMangement –InputObject $netAdapter1


This cmdlet uses the pipeline to select the network adapter named Ethernet 3 and then pipe that object into this cmdlet.
PS C:\>Get-NetAdapter –Name "Ethernet 3" | Disable-NetAdapterPowerMangement



This example assigns a variable to the network adapter named Ethernet 3 and then inputs that variable into this cmdlet.




EXAMPLE 3

PS C:\>Disable-NetAdapterManagement -Name "Ethernet 2" -NoRestart



This example disables power management on the network adapter named Ethernet 2 and specifies that the network adapter is not restarted.