PowerShell Logo Small

Enable-NetAdapterPowerManagement



This is the built-in help made by Microsoft for the command 'Enable-NetAdapterPowerManagement', 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

Enables specific power management features on the network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Enable-NetAdapterPowerMangement cmdlet enables specific power management features on the network adapter. If no power options are specified, then all supported power
management features are enabled.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287387
Disable-NetAdapterPowerManagement
Get-NetAdapter
Get-NetAdapterPowerManagement
Set-NetAdapterPowerManagement

REMARKS

<

Examples


EXAMPLE 1

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



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




EXAMPLE 2

The first sample gets the network adapter named Ethernet 3 and enables power management, then restarts the network adapter.
PS C:\> $netAdapter3 = Get-NetAdapter –Name "Ethernet 3"
PS C:\> Enable-NetAdapterPowerMangement –InputObject $netAdapter3

This is a version of the cmdlet that uses the pipeline to select the network adapter named Ethernet 3 and pipes that object into this cmdlet.
PS C:\> Get-NetAdapter –Name "Ethernet 3" | Enable-NetAdapterPowerMangement