/
/

How to Enable or Disable OneDrive Syncing in Battery Saver Mode on Windows 11

by Andrew Gono, IT Technical Writer
How to Enable or Disable OneDrive Syncing in Battery Saver Mode on Windows 11 blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

Key Points

  • Manage OneDrive Battery Saver Syncing: Windows 11 supports enabling or disabling OneDrive syncing during Battery or Energy Saver mode.
  • Use Multiple Configuration Methods: OneDrive settings, Windows power options, Group Policy, registry edits, and PowerShell can control sync behavior.
  • Override Defaults at Scale: Group Policy and scripted registry changes allow enterprises to standardize OneDrive sync behavior across devices.
  • Verify Behavior After Changes: Validation ensures syncing pauses or resumes correctly when power-saving modes activate.
  • Consider Environmental Factors: OEM power features, MDM policies, and account types can override expected OneDrive behavior.

OneDrive battery saver syncing is possible for environments that rely on continuous cloud storage. Built-in tools can manage this easily with centralized platforms, helping you balance device uptime and data synchronization across your fleet.

Control when your data is aligned across devices. This guide explains how to trigger or stop OneDrive from syncing in your enterprise.

How to turn OneDrive battery saver syncing on or off

OneDrive management during low-power use prevents syncs when users travel and schedules them for hybrid workers. Take note of your technical constraints before you disable OneDrive or pause battery saver mode.

📌 Prerequisites:

  • Control battery saver behavior: Choose whether OneDrive pauses syncing during low power conditions.
  • Optimize device performance: Reduce background activity for extended battery life.
  • Enforce organizational settings: Use registry or policy methods to standardize sync behavior.
  • Prevent sync interruptions: Allow syncing during battery saver mode when uptime is more important than battery conservation.
  • Validate sync flow: Ensure OneDrive resumes or pauses correctly based on power mode.

📌 Recommended deployment strategies:

Click to Choose a Method

💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Use OneDrive settings to control syncing during battery saver mode
Method 2: Modify battery saver behavior using Windows settings
Method 3: Control OneDrive battery saver behavior using group policy
Method 4: Adjust sync behavior using Registry Editor
Method 5: Use PowerShell to automate sync behavior configuration
Method 6: Validate sync behavior in battery saver mode

Method 1: Use OneDrive settings to control syncing during battery saver mode

Microsoft pauses OneDrive when you save on power, but users can simply turn it back on on the Windows GUI. To do this:

  1. Open your system tray.
  2. Double-click on the OneDrive cloud icon.
  3. Navigate to Help & Settings > Settings > Sync and back up.
  4. Toggle Pause syncing when this device is in battery saver mode On or Off.

If you don’t see the icon on your system tray, press Win + S, open OneDrive, and configure the “Pause syncing when this device is in battery saver mode” setting.

💡Note: The OneDrive power saver pause feature was introduced in July 2018. On Windows 11 24H1 and earlier, the feature is called Battery Saver. On Windows 11 24H2 and later, it was renamed to Energy Saver.

Method 2: Modify battery saver behavior using Windows settings

To save power, Energy Saver limits background activity and major processes, like OneDrive cloud syncs. While Energy Saver doesn’t offer granular controls for OneDrive resource usage, you can change when Energy Saver activates.

📌 Use Cases: To adjust when your Windows 11 device starts saving power.

  1. Press Win + I to open Settings.
  2. Go to System > Power & battery.
  3. Under the Saver section, set Energy Saver’s percentage threshold.
  4. Optionally, wait for the device to drop to your chosen battery percentage

Method 3: Control OneDrive battery saver behavior using group policy

Here’s how to enforce policies for consistent OneDrive cloud sync behaviors across your entire fleet.

📌 Use Cases: To override OneDrive’s default response to Energy Saver mode across your enterprise.

📌 Prerequisites: Administrative privileges, Windows Pro, Education, or Enterprise edition

  1. Download the latest OneDrive ADMX and ADML files from Microsoft Learn.
  2. Install the OneDrive policy templates
  3. Copy OneDrive.admx to:

C:\Windows\PolicyDefinitions

  1. Copy the matching language file (for example, OneDrive.adml) to:

C:\Windows\PolicyDefinitions\en-US

  1. For domain environments, place these files in the Central Store instead.
  2. Press Win + R, type gpedit.msc, and press Enter
  3. Go to:

User Configuration > Administrative Templates > OneDrive

  1. Locate the policy named “Continue syncing when devices have battery saver mode turned on.”
  2. Double-click the policy.
  3. Choose one option:
    1. Enabled: Forces OneDrive to continue syncing during Battery/Energy Saver mode
    2. Disabled or Not configured: Allows OneDrive to pause syncing when Battery Saver activates
  4. Click Apply, then OK to save the configuration.
  5. Open Command Prompt as administrator.
  6. Run gpupdate /force to enforce your policy changes.
  7. Restart OneDrive
  8. Open Edge or another browser.
  9. Navigate to edge://policy
  10. Confirm the OneDrive policy appears as applied.

Method 4: Adjust sync behavior using the registry editor

Modifying values in the Registry Editor fundamentally alters OneDrive battery saver syncing. Here’s how:

  1. Press Win + R, type regedit, and press Ctrl + Shift + Enter.
  2. To change how cloud syncs operate on a per-user basis, use the address bar to go to HKEY_CURRENT_USER\Software\Microsoft\OneDrive.
  3. Double-click on the DWORD named UserSettingBatterySaverEnabled.
  4. Modify the value:
    1. Set the value to 1 to prevent OneDrive from pausing when Battery Saver is on
    2. Set the value to 0 to allow automatic pausing
  5. For a policy-based override that allows/prevents any pausing, double-click on the DWORD named DisablePauseOnBatterySaver.
  6. Modify the value:
    1. Set the value to 1 to prevent OneDrive syncs from pausing
    2. Set the value to 0 to allow pausing
    3. Press OK.
  7. Close Registry Editor.
  8. Restart OneDrive to apply your changes.

Method 5: Use PowerShell to automate sync behavior configuration

Running PowerShell scripts automates the process, saves time, and reduces human error.

📌 Use Cases: To implement changes at scale with powerful command-line capabilities.

📌 Prerequisites: Windows Pro, Education, or Enterprise edition

  1. Press Win + R, type PowerShell, and press Ctrl + Shift + Enter.
  2. For per-user changes, run the following:

# Disable auto‑pause in Battery Saver (keep syncing)

Set-ItemProperty -Path 'HKCU:\Software\Microsoft\OneDrive' -Name 'UserSettingBatterySaverEnabled' -Type DWord -Value 0

# Enable auto‑pause in Battery Saver (pause syncing)

Set-ItemProperty -Path 'HKCU:\Software\Microsoft\OneDrive' -Name 'UserSettingBatterySaverEnabled' -Type DWord -Value 1

  1. For a policy-based override on OneDrive syncs, run the following:

# Ensure policy key exists

New-Item -Path 'HKCU:\Software\Policies\Microsoft' -Name 'OneDrive' -Force | Out-Null

# Prevent pausing (continue syncing under Battery/Energy Saver)

Set-ItemProperty -Path 'HKCU:\Software\Policies\Microsoft\OneDrive' -Name 'DisablePauseOnBatterySaver' -Type DWord -Value 1

# Allow pausing (default behavior)

Set-ItemProperty -Path 'HKCU:\Software\Policies\Microsoft\OneDrive' -Name 'DisablePauseOnBatterySaver' -Type DWord -Value 0

``

  1. Restart OneDrive:

Stop-Process -Name OneDrive -Force

Start-Process "$env:LOCALAPPDATA\Microsoft\OneDrive\OneDrive.exe"

Method 6: Validate sync behavior in Energy Saver mode

Test your changes to ensure they’re applied properly and avoid troubleshooting issues down the line. To confirm your OneDrive battery saver syncing behavior, do the following:

  1. Go to Settings > System > Power and battery and toggle Energy Saver.
  2. Observe OneDrive’s sync status.
    1. Check whether OneDrive displays “Paused to save battery.”
  3. Disable Battery Saver and confirm syncing resumes
  4. If behavior does not match configuration, verify the Group Policy, registry, and OneDrive settings.

Important considerations

Other factors can influence data syncs, Energy Saver, or both. Keep these facts in mind as you configure OneDrive behavior at scale:

  • Energy Saver only triggers on laptops and tablets.
  • OneDrive Work or School accounts sync at different paces.
  • Your Intune or Mobile Device Manager (MDM) may be configured to pause syncing locally.
  • Original Equipment Manufacturer (OEM) power-saving features may independently pause OneDrive.
  • In collaborative environments, frequent pausing can cause file duplicates and version conflicts.

Troubleshooting OneDrive management in power-saving mode

When it comes to advanced tools and app behavior, even the slightest mistake can make OneDrive behave unexpectedly. Here’s how to solve the most common OneDrive management problems IT teams face:

Syncing still pauses

OneDrive behavior can be controlled via the DisableBatterySaverPause key in the device’s registry. To change it, open the Registry Editor, navigate to HKCU\SOFTWARE\Policies\Microsoft\OneDrive, set the DisableBatterySaverPause key’s value to 1, and press OK.

Toggle missing in OneDrive settings

If the Pause syncing when this device is in battery saver mode button is missing, updating OneDrive to the latest version will usually restore it. To do this:

  1. Click the OneDrive cloud icon in the taskbar notification area.
  2. Click Help & Settings (gear icon) > Settings.
  3. Go to the About tab and check the version number.
  4. To update:
    1. You’ll usually see a “Your OneDrive is up to date” note.
    2. Otherwise, go to https://www.microsoft.com/en-us/microsoft-365/OneDrive/download and install the latest version.
  5. After updating, reopen Settings > Sync & Backup tab to verify the toggle is now available.

Battery saver does not trigger pause

If OneDrive still continues to sync your data despite having Energy Saver enabled, access the app’s settings, go to Sync & backup, and toggle “Pause syncing when this device is in battery saver mode” to ON.

Toggle missing on enterprise devices

Missing options or greyed-out toggles are typically the result of pre-configured security policies. Here’s how sysadmins can re-enable device options for OneDrive:

  1. Open Local Group Policy Editor: press Win + R, type gpedit.msc, and hit Enter.
  2. Navigate to:

User Configuration > Administrative Templates > OneDrive

  1. Look for the policy “Continue syncing when devices have battery saver mode turned on”:
    1. If set to Enabled, OneDrive will always sync even in Battery Saver mode (toggle grayed out).
    2. If Disabled, sync pauses always.
  2. Alternatively, IT may push similar settings via Intune (check with the IT admin).

Sync never resumes after battery saver ends

If your data syncs stop working even after Energy Saver ends, simply restart OneDrive and/or reboot the device for a full refresh. This resets your internal state, restoring normal sync behavior.

NinjaOne integration streamlines cloud management

NinjaOne supports automated management of OneDrive sync behavior through registry deployment, scripting, and device-level policy enforcement. Administrators can manage sync settings for mobile users, validate power mode transitions, and ensure consistent OneDrive performance across large fleets.

Centralize OneDrive sync configurations

Balancing OneDrive performance with device uptime is key for productivity goals and security compliance. Configure in-app settings, change Energy Saver thresholds, edit registry values, and manage policies with centralized solutions to achieve control over OneDrive battery saver syncing.

Related topics:

FAQs

Yes, if syncing is limited to critical files or small changes, but administrators should evaluate device usage patterns before forcing continuous sync.

Yes, work or school accounts may follow organizational policies that override local OneDrive or Windows power settings.

Checking Group Policy, registry values, and OneDrive app settings together helps identify which control takes precedence.

You can prevent OneDrive from running in the background by disabling it from startup in Task Manager, pausing syncing from OneDrive settings, or uninstalling the app if it isn’t required.

You might also like

Ready to simplify the hardest parts of IT?