Bug fix: network interfaces team.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
$adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement
|
||||
foreach ($adapter in $adapters)
|
||||
{
|
||||
$adapter.WakeOnMagicPacket = 'Enabled'
|
||||
$adapter.WakeOnPattern = 'Enabled'
|
||||
$adapter.AllowComputerToTurnOffDevice = 'Disabled'
|
||||
$adapter | Set-NetAdapterPowerManagement
|
||||
}
|
||||
Reference in New Issue
Block a user