Modern laptops and PCs on Windows 10 are capable of working as full-fledged Wi-Fi hotspots, even if you don't have an active internet connection. This feature is useful for connecting multiple devices to a local network—for example, to transfer files between smartphones and computers, play multiplayer games, or test IoT devices. Unlike tethering on smartphones, it doesn't require mobile data, and data transfer speeds are limited only by the device's capabilities. Wi-Fi adapter your PC.
In this article, we will look at all the ways to create a virtual router on Windows 10 — from standard tools to alternative methods using the command line. You'll learn how to avoid common errors (for example, Failed to set up mobile hotspot), what settings optimize connection stability, and why sometimes the access point refuses to work on some models Wi-Fi adaptersAll instructions have been tested on current builds. Windows 10 (including 22H2) and do not require administrator rights for basic setup.
Why create a Wi-Fi hotspot without internet?
At first glance, the idea of sharing Wi-Fi without network access seems pointless. However, this mode has several practical applications:
- 📱 File transfer between devices without cables (for example, with Android on Windows through
FTP serverorHTTP sharing). - 🎮 Local multiplayer: Connect multiple consoles or PCs for online gaming.
- 🖥️ Testing IoT devices (smart lamps, sensors) without connection to the cloud.
- 🔧 Network diagnostics: checking functionality Wi-Fi modules on other devices.
The key advantage of this approach is no dependence on a provider or mobile operatorYou create an isolated network where all connected devices can see each other but have no access to the global internet. This is especially useful in situations where the internet is unavailable (for example, while traveling or at the cottage), but you need to organize communication between devices.
Hardware and software requirements
Before you begin setup, make sure your hardware meets the minimum requirements:
- 🖥️ Laptop or PC With Windows 10 (version
1809or newer). On desktops you will need Wi-Fi adapter with mode supportSoftAP(most modern models, for example, Intel AX200 or Qualcomm Atheros, support this function). - 📶 Wi-Fi adapter must work in mode
802.11n/ac/axOld standard adapters802.11b/gmay not support network distribution. - 🔋 Drivers: update the driver Wi-Fi module through
device Manageror the manufacturer's website (for example, Intel Driver & Support Assistant for chips Intel).
To check the adapter compatibility, run Command line (Win + R → cmd):
netsh wlan show drivers
Find the line in the output Hosted network support. If it is indicated there Yes — your adapter is ready for setup. If No - update the driver or use an external one USB Wi-Fi module (For example, TP-Link TL-WN725N).
Method 1: Create an access point via the command line
This is a universal method that works even on systems with limited rights. It doesn't require third-party software and provides complete control over network parameters.
Open Command prompt as administrator (Win + X → Command Prompt (Administrator)) and execute the commands sequentially:
- Set the network name (
SSID) and password (minimum8 characters):
Replacenetsh wlan set hostednetwork mode=allow ssid="MyWiFi" key="12345678" keyUsage=persistentMyWiFiAnd12345678to their values. - Start the network:
netsh wlan start hostednetwork
After running the second command, a new access point with the specified name will appear in the list of networks on other devices. To stop sharing, use:
netsh wlan stop hostednetwork
Make sure the command prompt displays "Hosted network started" after startup.
Try connecting to the access point from another device.
Check if the IP address has been received (on the client device, ping 192.168.137.1)
-->
Method 2: Using a mobile hotspot (GUI)
IN Windows 10 there is a built-in tool Mobile hotspot, which simplifies setup. However, it has limitations: for example, it doesn't allow you to change the channel. Wi-Fi or encryption type. However, this method doesn't require knowledge of commands.
Instructions:
- Open
Settings → Network & Internet → Mobile Hotspot. - In the field
Sharing an Internet connectionselectNo internet connection(important!). - Click
Changenext to the fieldsNetwork nameAndNetwork password, set your values. - Turn on the switch
Allow other devices to use my internet connection.
If an error appears after switching on Failed to set up mobile hotspot, try:
- 🔄 Reboot Wi-Fi adapter V
Device Manager. - 🔧 Roll back the driver to the previous version (if the problem appeared after the update).
- 📡 Change network name (
SSID) into Latin without spaces.
Why might my mobile hotspot not work?
Most often, the issue is related to a driver conflict or Group Policy settings. For example, some enterprise versions of Windows block Wi-Fi sharing via registry editors. Also, check whether power saving mode is enabled for the Wi-Fi adapter in Device Manager (Power Management tab).
Optimizing network parameters for stable operation
By default Windows 10 creates an access point on the channel 6 (2.4 GHz) with a width 20 MHz and encryption WPA2-PSKThese settings are not always optimal, especially in conditions of interference from other networks. To improve stability, adjust the settings via Command line:
| Parameter | Team | Recommended value |
|---|---|---|
| Channel | netsh wlan set hostednetwork channel=11 |
1, 6 or 11 (for 2.4 GHz); 36, 40, 44, 48 (for 5 GHz) |
| Security type | netsh wlan set hostednetwork keyUsage=persistent |
WPA2-PSK (default) |
| Max. number of clients | Changes in the registry (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WlanSvc\Parameters\HostedNetworkSettings) |
Up to 10 devices (default: 8) |
For the range 5 GHz (if your adapter supports it) use the command:
netsh wlan set hostednetwork mode=allow ssid="MyWiFi5G" key="12345678" keyUsage=persistent channel=36
Common errors and their solutions
Even with proper setup, you may encounter problems. Here are some common scenarios and how to troubleshoot them:
⚠️ Attention: If the access point does not start automatically after restarting the PC, add the commandnetsh wlan start hostednetworkVTask Schedulerwith a triggerAt system startup.
- 🚫 Error: "Failed to start hosted network":
- Check if the service is enabled
Automatic WLAN configuration(services.msc → WlanSvc).- Delete old network profiles with the command
netsh wlan delete profile name="*". - 🔌 The devices connect, but there is no access to the local network.:
- Set up
General accessVConnection properties(tabAccess).- Make sure that the IP addresses of the devices are in the same subnet (e.g.
192.168.137.x). - 📶 Slow speed or dropped connections:
- Change the channel to a less busy one (use Wi-Fi Analyzer for ether analysis).
- Turn off power saving for Wi-Fi adapter V
Device Manager.
If the problem persists, check the event log Windows (eventvwr.msc → Windows Logs → System) for errors related to WLAN AutoConfig (event ID 10000 or 10001).
Alternative programs for distributing Wi-Fi
If standard means Windows 10 If your apps don't work, try using third-party utilities. They offer additional features, such as traffic control or automatic startup at system startup.
- 🌐 Connectify Hotspot: paid program with a trial period, supports customization
SSID, channel and device restrictions. Suitable for creating guest networks with limited access. - 🛠️ MyPublicWiFi: a free, open-source utility that allows you to log connections and block unwanted devices by
MAC address. - 🔧 Virtual Router Plus: A simple interface for quick setup. It works using the same commands.
netsh, but with visual control.
When choosing a program, please pay attention to:
- Support
Windows 10 22H2(some utilities have not been updated since2018). - Availability advertising or embedded offers (For example, Connectify may offer installation of additional software).
- Opportunity firewall settings to isolate devices in the network.
FAQ: Frequently asked questions about setup
Is it possible to share Wi-Fi without a password?
Technically yes, but it's not secure. To create an open network, the team netsh skip the parameter key:
netsh wlan set hostednetwork mode=allow ssid="OpenWiFi" keyUsage=persistent
However, in this case, any device within range will be able to connect to your network, which creates security risks.
Why does the access point disappear after sleep/hibernation?
This is a known feature. Windows 10To automatically restore the network, create bat file with the following contents:
@echo offnetsh wlan stop hostednetwork
netsh wlan start hostednetwork
And add it to Task Scheduler with a trigger When waking up from sleep.
How to change the IP address of the shared network?
By default Windows assigns an address 192.168.137.1To change it, open Registry Editor (regedit) and follow the path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{GUID}
Find the parameter IPAddress and change its value (for example, to 192.168.100.1). After this, restart your PC.
Is it possible to share Wi-Fi and be connected to another network at the same time?
Yes, but with some caveats. If you are connected to the internet via Ethernet, then you can distribute local network only (no internet access for clients). If you need to share the internet, select it in the settings Mobile hotspot original connection (eg Ethernet or Mobile network).
Why doesn't Wi-Fi sharing work on some laptops?
This may be due to:
- Lack of support
SoftAPin the driver (relevant for older adapters, for example, Broadcom 4313). - Blocking the function at the BIOS level (found on some models) Dell And HP for corporate lines).
- Conflict with wireless network management software (eg. Intel PROSet/Wireless).
Solution: Update BIOS and drivers, or use an external USB Wi-Fi adapter.