ANAVEM
Languagefr
How to Configure Network Connectivity During Modern Standby in Windows 11

How to Configure Network Connectivity During Modern Standby in Windows 11

Control whether your Windows 11 device maintains network connectivity while in Modern Standby mode using multiple configuration methods to optimize either connectivity or battery life.

Emanuel DE ALMEIDAEmanuel DE ALMEIDA
March 18, 2026 12 min 0
easywindows11 7 steps 12 min

What is Modern Standby Network Connectivity in Windows 11?

Modern Standby is Windows 11's advanced low-power sleep state that replaces traditional S3 sleep mode on newer devices. Unlike conventional sleep where your computer completely disconnects from the network, Modern Standby maintains partial system activity while consuming minimal battery power. This allows your device to receive notifications, sync emails, and even accept VoIP calls while appearing to be "asleep."

The network connectivity feature during Modern Standby gives you granular control over this behavior. You can configure different settings for battery power versus plugged-in scenarios, choosing between three modes: Enable (always connected), Disable (disconnected), or Managed by Windows (automatic decision based on system conditions).

Why Configure Modern Standby Network Settings?

The default Windows 11 behavior enables network connectivity when plugged in and uses automatic management on battery power. However, your specific use case might require different settings. For example, if you frequently work in areas with poor WiFi that causes connection issues, you might prefer to disable connectivity entirely during standby. Conversely, if you need to receive urgent notifications or calls, you'll want connectivity enabled even on battery power.

Battery life is another crucial consideration. Maintaining network connectivity during standby can reduce battery life by 10-20% depending on your network conditions and background app activity. For users who prioritize maximum battery life during travel or extended periods away from power sources, disabling network connectivity during battery-powered standby can significantly extend usage time.

Related: Enable or Disable Copilot File Search on Windows 11

Related: How to Remove Recommended Section from Windows 11 Start Menu

Related: How to Add 'Turn Off Display' to Windows 11 Context Menu

Related: How to Restore Windows 10-Style Start Menu in Windows 11

Related: How to Get Windows 11 26H1: What It Is, Who It's For, and

Which Configuration Method Should You Choose?

This tutorial covers four different methods to configure Modern Standby network connectivity, each suited for different scenarios. The Power Options GUI method is perfect for individual users who want a simple point-and-click interface. PowerShell commands work well for IT professionals managing multiple devices or users who prefer command-line control. Group Policy Editor provides enterprise-grade management for domain environments, while registry files enable deployment scenarios and advanced customization.

Implementation Guide

Full Procedure

01

Verify Modern Standby Support

Before configuring network connectivity settings, confirm your device supports Modern Standby. Open Windows Terminal as administrator and run the power configuration analysis command.

powercfg /a

Look for "Standby (S0 Low Power Idle) Network Connected" or "Standby (S0 Low Power Idle) Network Disconnected" in the output. If you see these entries, your device supports Modern Standby.

Pro tip: If you only see "Standby (S3)" or "Hibernate (S4)", your device uses traditional sleep modes and doesn't support Modern Standby network configuration.

Verification: The command output will explicitly list available sleep states. Modern Standby devices show S0 states rather than S3.

02

Configure Network Settings via Power Options GUI

The easiest method uses the built-in Power Options control panel. Press the Windows key, type "Control Panel", and press Enter. Ensure the view is set to icons by clicking "Category" next to "View by:" and selecting "Large icons" or "Small icons".

Click the "Power Options" icon, then click "Change plan settings" for your currently active power plan. Click "Change advanced power settings" to open the detailed configuration window.

Expand the "Network connectivity in Standby" section. You'll see two dropdown menus:

  • On battery: Controls behavior when running on battery power
  • Plugged in: Controls behavior when connected to AC power

For each dropdown, select from three options:

  • Enable: Always maintain network connectivity (uses more battery)
  • Disable: Disconnect network during standby (saves battery)
  • Managed by Windows: Let Windows decide automatically

Click "OK" to apply your changes.

Warning: If you don't see the "Network connectivity in Standby" option, your device may not support this feature or you may need to use alternative methods below.

Verification: Return to the advanced power settings to confirm your selections are saved and displayed correctly.

03

Apply Settings Using PowerShell Commands

For more reliable configuration, especially in managed environments, use PowerShell commands. Open Windows Terminal as administrator and use the powercfg utility with specific GUID values.

The GUID F15576E8-98B7-4186-B944-EAFA664402D9 represents the network connectivity setting. Use these commands based on your requirements:

Configure battery power settings:

# Enable network connectivity on battery
powercfg /setdcvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 1

# Disable network connectivity on battery
powercfg /setdcvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 0

# Let Windows manage on battery
powercfg /setdcvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 2

Configure plugged-in power settings:

# Enable network connectivity when plugged in (default)
powercfg /setacvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 1

# Disable network connectivity when plugged in
powercfg /setacvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 0

# Let Windows manage when plugged in
powercfg /setacvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 2

After running your chosen commands, activate the changes:

powercfg /setactive scheme_current
Pro tip: Create a batch file with your preferred settings to quickly reapply them if they don't persist across system updates.

Verification: Check the Power Options GUI to confirm your PowerShell changes are reflected in the interface.

04

Configure via Local Group Policy Editor

For enterprise environments or permanent configuration, use the Local Group Policy Editor. This method is only available in Windows 11 Pro, Enterprise, and Education editions.

Press Windows + R, type gpedit.msc, and press Enter. Navigate to the following path:

Computer Configuration > Administrative Templates > System > Power Management > Sleep Settings

You'll find two relevant policies:

  • "Allow network connectivity during connected-standby (plugged in)"
  • "Allow network connectivity during connected-standby (on battery)"

Double-click each policy to configure it. Select one of three options:

  • Not Configured: Uses default Windows behavior
  • Enabled: Forces network connectivity during standby
  • Disabled: Prevents network connectivity during standby

Click "OK" after configuring each policy, then close the Group Policy Editor.

Warning: Group Policy settings override Power Options and PowerShell configurations. If you set policies here, the GUI options may appear grayed out.

Verification: Run gpupdate /force in Command Prompt to immediately apply policy changes, then check if the settings appear in Power Options.

05

Create Registry Configuration Files

For advanced users or deployment scenarios, create registry files to configure these settings. Open Notepad and create .reg files with the appropriate registry entries.

Sample registry file to enable network connectivity when plugged in:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings\f15576e8-98b7-4186-b944-eafa664402d9]
"ACSettingIndex"=dword:00000001

Sample registry file to disable network connectivity on battery:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings\f15576e8-98b7-4186-b944-eafa664402d9]
"DCSettingIndex"=dword:00000000

Registry values explanation:

  • ACSettingIndex: Controls plugged-in behavior
  • DCSettingIndex: Controls battery behavior
  • dword:00000000: Disabled
  • dword:00000001: Enabled
  • dword:00000002: Managed by Windows

Save each file with a .reg extension, then double-click to merge into the registry. Click "Run", "Yes", and "OK" when prompted.

Verification: Open Registry Editor (regedit) and navigate to the key path to confirm the values were applied correctly.

06

Test and Verify Configuration

After applying your configuration, test the settings to ensure they work as expected. Put your device into Modern Standby by closing the lid or pressing the power button briefly (don't hold it down).

Wait 2-3 minutes, then wake the device. Check if network connectivity behaved according to your configuration:

  • If enabled: Network apps should show recent activity and notifications
  • If disabled: Network apps will need to reconnect and sync when you wake the device
  • If managed by Windows: Behavior varies based on system conditions

Use these commands to monitor power and network states:

# Check current power scheme settings
powercfg /query scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9

# Generate detailed power report
powercfg /batteryreport /output "C:\battery-report.html"

# Check network adapter power management
Get-NetAdapter | Get-NetAdapterPowerManagement

Review the battery report to see how your configuration affects power consumption during standby periods.

Pro tip: Monitor your battery usage for a few days after changing settings to find the optimal balance between connectivity and battery life for your usage patterns.

Verification: The powercfg query command will show your exact configuration values, confirming the settings are active.

07

Troubleshoot Common Issues

If your configuration isn't working as expected, follow these troubleshooting steps to identify and resolve common problems.

Settings not visible in Power Options:

Some devices don't show the network connectivity option in the GUI. Use PowerShell or Group Policy methods instead:

# Force refresh power settings
powercfg /restoredefaultschemes
powercfg /setactive scheme_current

WiFi disconnects despite enabled setting:

Check your network adapter's power management settings:

# Disable power saving for WiFi adapter
$adapter = Get-NetAdapter -Name "Wi-Fi"
Set-NetAdapterPowerManagement -Name $adapter.Name -AllowComputerToTurnOffDevice Disabled

Settings don't persist after restart:

This often happens with PowerShell commands. Use Group Policy or registry methods for permanent changes, or create a startup script:

@echo off
REM Startup script to reapply network connectivity settings
powercfg /setdcvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 0
powercfg /setacvalueindex scheme_current sub_none F15576E8-98B7-4186-B944-EAFA664402D9 1
powercfg /setactive scheme_current

Group Policy Editor not available:

Windows 11 Home edition doesn't include gpedit.msc. Use PowerShell or registry methods instead, or enable Group Policy Editor:

FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")
FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")
Warning: Always create a system restore point before making registry changes or enabling Group Policy Editor on Windows 11 Home.

Verification: Run powercfg /a again to confirm Modern Standby is still functioning correctly after troubleshooting.

Frequently Asked Questions

What is the difference between Modern Standby and traditional sleep in Windows 11?+
Modern Standby (S0) maintains partial system activity and can keep network connections active, allowing apps to receive notifications and sync data. Traditional sleep (S3) completely suspends system activity and disconnects all network connections. Modern Standby is available on newer laptops and tablets, while traditional sleep is found on older devices and desktop computers.
Does enabling network connectivity during Modern Standby significantly drain battery?+
Yes, maintaining network connectivity during Modern Standby can reduce battery life by 10-20% depending on network conditions and background app activity. The impact varies based on WiFi signal strength, the number of apps syncing data, and how frequently the device needs to wake up to process network activity. For maximum battery life, disable network connectivity when running on battery power.
Why can't I see the Network connectivity in Standby option in my Power Options?+
This option may not appear if your device doesn't support Modern Standby or if the setting needs to be enabled through other methods. Run 'powercfg /a' in Command Prompt to verify Modern Standby support. If supported but the GUI option is missing, use PowerShell commands or Group Policy Editor to configure the setting instead.
Can I set different network connectivity settings for different power plans in Windows 11?+
Yes, network connectivity settings are configured per power plan. You can create multiple power plans with different Modern Standby network settings and switch between them based on your needs. Use the 'powercfg /duplicatescheme' command to create custom power plans, then configure each one with different network connectivity behaviors for various scenarios.
Will my Modern Standby network settings persist after Windows 11 updates?+
Settings configured through Group Policy Editor and registry modifications typically persist through Windows updates. However, PowerShell commands may need to be reapplied after major updates. Power Options GUI settings usually persist but may occasionally reset. For maximum reliability, use Group Policy Editor or create a startup script to reapply PowerShell commands automatically.
Emanuel DE ALMEIDA
Written by

Emanuel DE ALMEIDA

Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...