How to set up Windows 10 Mobile Hotspot software?

In Windows 10, the Mobile Access Point service appeared :

Mobile hotspot settings

How to enable it, programmatically configure SSID and password using PowerShell or Windows API?

Note. I am not talking about the Hosted Network service (i.e. netsh wlan set hostednetwork mode=allow ssid=Name key=Passphrase). Mobile Hotspot works even if the network card does not support Hosted Network.

+4
source share
1 answer

What I have found so far using Process Monitor is that Mobile Hotspot is managed by the service icssvc, and the SSID and password are stored as binary data in the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\icssvc\Settings\PrivateConnectionSettings.

+1
source

Source: https://habr.com/ru/post/1690532/


All Articles