Skip to content
Follow
Windows

How to Turn On or Off Mobile Hotspot Power Saving in Windows 11

Richard
Written by
Richard
Mar 12, 2026 Updated Aug 13, 2026 2 min read
How to Turn On or Off Mobile Hotspot Power Saving in Windows 11
How to Turn On or Off Mobile Hotspot Power Saving in Windows 11

Mobile hotspot power saving in Windows 11 turns off your PC wireless sharing feature after 5 minutes if no devices stay connected. This built-in battery saver prevents your laptop from wasting power when nobody uses the shared internet.

You can turn this setting on or off in your network settings to keep your hotspot running as long as you want.

⚡ Quick Answer

Open Settings , click Network & internet, then Mobile hotspot. Find the Power saving option and toggle it On or Off.

How to Turn Mobile Hotspot Power Saving On or Off (Using Settings)

  1. Press Win+I on your keyboard to open Settings .
  2. Click Network & internet on the left side.
  3. Click Mobile hotspot on the right side.
  4. Find the Power saving option and turn it On or Off depending on what you want.
  5. Close the Settings window when you’re done.

Here’s what it looks like:

Mobile hotspot tile in Windows 11 Settings app
Mobile hotspot tile in Windows 11 Settings app

Step 3: Mobile hotspot settings in Windows 11

Power saving toggle switch for Windows 11 mobile hotspot
Power saving toggle switch for Windows 11 mobile hotspot

Step 4: Turn Power saving On or Off here

How to Turn Mobile Hotspot Power Saving On or Off (Using a BAT File)

Running command files requires administrator privileges, but batch scripts provide a fast method for toggling this capability on or off.

⚠️ Important: Administrator permissions remain mandatory for this procedure.

Turn ON Power Saving (default setting):

💻Code
powershell -windowstyle hidden -command "Start-Process cmd -ArgumentList '/s,/c,net stop "icssvc" & REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\icssvc\Settings" /V PeerlessTimeoutEnabled /T REG_DWORD /D 1 /F & net start "icssvc"' -Verb runAs"

Turn OFF Power Saving:

💻Code
powershell -windowstyle hidden -command "Start-Process cmd -ArgumentList '/s,/c,net stop "icssvc" & REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\icssvc\Settings" /V PeerlessTimeoutEnabled /T REG_DWORD /D 0 /F & net start "icssvc"' -Verb runAs"

Steps to use the BAT file:

  1. Open Notepad and copy the code you want (ON or OFF) into it.
  2. Save the file with a .bat extension, like PowerSavingOn.bat or PowerSavingOff.bat.
  3. ⚠️ Admin required: Right-click the saved file and choose Run as administrator.
  4. You will see a command window open briefly — it runs the commands and then closes automatically.
  5. You can delete the BAT file if you don't need it anymore.

Summary

  • Easy sharing: Mobile hotspot lets you share your internet quickly with other devices.
  • Save battery: Power saving automatically turns off the hotspot when no one is connected, saving energy.
  • Simple control: You can change the power saving setting in the Settings app or by running a quick script.
  • Admin power: Advanced users with admin rights can use the BAT file method for faster changes.

Configuring this setting prevents unnecessary battery drain whenever you share a connection.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Enable or Disable Mobile Hotspot in Windows 11
Windows How to Enable or Disable Mobile Hotspot in Windows 11
How to Turn On or Off Mobile Hotspot in Windows 11
Windows How to Turn On or Off Mobile Hotspot in Windows 11
How to Share Mobile Hotspot QR Code in Windows 11
Windows How to Share Mobile Hotspot QR Code in Windows 11
How to Access Settings in Windows 11
Windows How to Access Settings in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *