Skip to main content

How to Disable or Enable Mobile Hotspot in Windows 11/10

 

Follow the next steps to enable or disable the mobile hotspot in Windows 11/10 using Registry Editor:

 1] Press Win + R to open the Run dialog.
 2] To open Registry Editor type regedit and click Ok. 
 3] Navigate to the following registry key from the left pane of Registry Editor window:


















4] Now come to the right pane of the Network Connections registry key, right-click, and select New and click DWORD (32-bit) Value.


4] Name the newly created registry DWORD to NC_ShowSharedAccessUI

5] Now, this registry DWORD can be used to enable/disable your Mobile hotspot feature in Windows 10

Double click on this DWORD file and set the Value data for this registry DWORD to ‘0’. Once done, click ‘Ok’ and close the Registry Editor.



Thanks




Comments

Popular posts from this blog

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor Press the Windows logo key + R to open the Run box. Type  regedit  and hit Enter. When the Registry Editor opens, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters In the right pane you can see a string value named  Type . If you want Windows 10 to set time automatically, set its value data to  NTP . To disable automatic time synchronization, change its value to  NoSync . In order to enable or disable “Set Time Zone Automatically” in Windows 10, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tzautoupdate Double-click the 32-bit DWORD “ Start ” in the right pane. Set its value data to 3 if you want to make Windows 10 set time zone automatically. If you want to disable “Set Time Zone Automatically” in Windows 10, just set the value to 4. Reboot your computer for the registry changes to take ...

Find your Window licence key from inside Windows

Entering the following lines into an  admin Command Prompt  or PowerShell worked to display the OEM key embedded in our system's UEFI/BIOS. However, these commands didn't return any keys on other two machines we used for testing despite Windows 10 being activated. wmic path softwarelicensingservice get OA3xOriginalProductKey or powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey" There's also a commonly cited Visual Basic script that retrieves registry-based Windows keys (not those stored in the UEFI/BIOS). You can download the  script here . Copy this text and paste it into Notepad, saving it as a .vbs file. Then double-click to launch the file.