1

I set up a WiFi Mobile hotspot on a HP notebook, which shares the internet from its Ethernet connection to my other Dell PC. Both run Windows 10.

I have failed to prevent the automatic hotspot shutdown after following several guides on the internet, and apparently, it's a common issue. (Prevent Windows 10 Wifi hotspot turning off automatically on 1809)

Though, it seems to be possible to turn on the hotspot remotely (see image#1), but I can't figure out how to do that from the Dell (image#2), nor from my Samsung S9 (which I would accept as a workaround).

So, the question is:

How do I turn on the hotspot remotely?
I would consider rewarding any workaround as well if it meant I don't have to unlock the HP and turn the hotspot on via its settings, though I will reserve the Accepted answer for the "Turn on Remotely" feature.


This is how the Mobile hotspot settings look. Notice Turn on remotely at the bottom. Mobile hotspot settings showing Turn on remotely at the bottom.[2]

It's only possible to Connect using Direct connection. Connect to HP using Direct connection

Qwerty
  • 586

1 Answers1

1

The following measures should help to keep the hotspot on:

  • Ensure that the computer will not enter Sleep/Hibernate

  • In Settings > Network & Internet > Mobile Hotspot, toggle off "When no devices are connected, automatically turn off mobile hotspot".

  • Disable Wifi adapter power management options in Device Manager, expand Network devices, right-click the Wifi adapter, Properties, Power Management tab, uncheck "Allow the computer to turn off this device to save power", click OK

  • For the Mobile Hotspot not to turn off itself:

    • In the Services applet, stop the "Mobile Hotspot Service" (icssvc)
    • In regedit, navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\icssvc\Settings
    • Create a DWORD Key named PeerlessTimeoutEnabled with the value of 0
    • Restart the Mobile Hotspot Service (icssvc)

    Alternatively, execute the following PowerShell command with admin privileges:

    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"
    

  • If all else fails, this answer contains a PowerShell script to turn on the Mobile Hotspot if not enabled. You may save it as a .ps1 file and add it to the Task Scheduler so it runs every minute or so.
  • Alternatively, you can use this solution instead, which is a small app that resides in the taskbar tray area.
    enter image description here
Qwerty
  • 586
harrymc
  • 498,455