Hi. I've got an HP Pro x2 tablet which has a Verizon SIM card installed. The tablet is running Win 10 x64 Enterprise and was connected to a domain, but for this work, it's been removed from that domain. It's now using the SIM card for connectivity.
I'm trying to use the cellular connection as a hotspot and have made the following modifications to the registry:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Network Connections]
"NC_PersonalFirewallConfig"=dword:00000001
"NC_ShowSharedAccessUI"=dword:00000001
"NC_AllowNetBridge_NLA"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"DisableBkGndGroupPolicy"=dword:00000001
I've got this batch file that creates a hosted connection (hotspot):
netsh wlan set hostednetwork mode=allow ssid=Hotspot key=123456
netsh wlan start hostednetwork
netsh wlan show hostednetwork
pause
This batch file causes the "Cellular" network connection on the tablet to start coming in and going out, in an infinite loop. To correct this, I have to right click the "Cellular" connection in the "View Network Connections" and Disable/Enable it. Then it works fine.
What's causing the Verizon connection to become flaky after I add the above hosted connection? Why does a Disable/Enable fix it? Your help is appreciated. Thanks.