Network and Internet Enable or Disable Mobile Hotspot Power Saving in Windows 11


  • Staff
Mobile_Hotspot_banner.png

This tutorial will show you how to enable or disable mobile hotspot power saving in Windows 11.

You can turn your Windows PC into a mobile hotspot by sharing your Internet connection with other devices over Wi-Fi. You can share a Wi-Fi, Ethernet, or cellular data connection. If your PC has a cellular data connection and you share it, it will use data from your data plan.

When you turn on mobile hotspot, you can turn on or off a power saving feature that will automatically turn off mobile hotspot in five minutes when no devices are connected.


Contents

  • Option One: Turn On or Off Mobile Hotspot Power Saving in Settings
  • Option Two: Turn On or Off Mobile Hotspot Power Saving using BAT file




Option One

Turn On or Off Mobile Hotspot Power Saving in Settings


1 Open Settings (Win+I).

2 Click/tap on Network & internet on the left side, and click/tap on Mobile hotspot on the right side. (see screenshot below)

Mobile_hotspot_Settings-1.png

3 Turn on (default) or off Power saving for what you want. (see screenshot below)

Mobile_hotspot_Settings-2.png

4 You can now close Settings if you like.,




Option Two

Turn On or Off Mobile Hotspot Power Saving using BAT file


You must be signed in as an administrator to use this option.


Running the .bat files in this option will turn off mobile hotspot, so you will need to turn on mobile hotspot again afterwards if wanted.


1 Do step 2 (on) or step 3 (off) below for what you want to do.

2 Turn On Mobile Hotspot Power Saving

This is the default setting.


A) Click/tap on the Download button below to download the .bat file below, and go to step 4.​

Enable_automatically_turn_off_mobile_hotspot_when_no_devices_are_connected.bat


(contents of .bat file)
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"

3 Turn On or Off Mobile Hotspot Power Saving

A) Click/tap on the Download button below to download the .bat file below, and go to step 4.​

Disable_automatically_turn_off_mobile_hotspot_when_no_devices_are_connected.bat


(contents of .bat file)
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"

4 Save the .bat file to your desktop.

5 Unblock the .bat file.

6 Run the downloaded .bat file.

7 When prompted by UAC, click/tap on Yes to approve running the .bat file as administrator (elevated).

8 You will now see a command prompt open to run the commands in the .bat file. The command prompt will automatically close when finished.

9 You can now delete the .bat file if you like.


That's it,
Shawn Brink


 

Attachments

  • Mobile_Hotspot.png
    Mobile_Hotspot.png
    15.7 KB · Views: 115
  • Disable_automatically_turn_off_mobile_hotspot_when_no_devices_are_connected.bat
    436 bytes · Views: 247
  • Enable_automatically_turn_off_mobile_hotspot_when_no_devices_are_connected.bat
    436 bytes · Views: 241
Last edited:

Latest Support Threads

Back
Top Bottom