Files
FAT_Test/Unencrypted PS and Json files/20260515/PS/NetworkInterfacePowermanagementDisableALL.ps1
2026-05-15 16:26:08 -06:00

9 lines
324 B
PowerShell

$adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement
foreach ($adapter in $adapters)
{
$adapter.WakeOnMagicPacket = 'Enabled'
$adapter.WakeOnPattern = 'Enabled'
$adapter.AllowComputerToTurnOffDevice = 'Disabled'
$adapter | Set-NetAdapterPowerManagement
}