Today's reality is that internet access is needed not only on a computer, but also on smartphones, tablets, smartwatches, and even home appliances. But what if you don't have a router handy, and you want to share the internet with Windows 10 Need it urgently? Luckily, the operating system has built-in tools for creating virtual Wi-Fi hotspot, and today we will look at all possible methods - from standard to alternative.
The problem is that many users are facing errors like "Unable to set up mobile hotspot" or "No internet connection"The reasons may vary, from incorrect network adapter settings to conflicts with antivirus software. In this article, you'll find step-by-step instructions for each method, a comparison table of methods, and solutions to the most common errors. It doesn't matter whether you need to share the internet with laptop Lenovo, ASUS or HP — the algorithm is universal.
If you have previously tried to set up Wi-Fi distribution via command line If you've received an error, or your mobile hotspot refuses to turn on, don't give up. Most often, the problem can be solved in just 2-3 clicks. And for those who value stability, we've prepared a solution. list of the best third-party programs for distributing the Internet, which work even where standard means Windows 10 powerless.
1. Method 1: Mobile hotspot (the easiest method)
Since version Windows 10 1607 (Anniversary Update), a built-in function has appeared in the system Mobile Hotspot, which allows you to share your internet connection via Wi-Fi in just a few clicks. This method does not require knowledge of commands and is suitable even for beginners. However, it has limitations: for example, if your network adapter does not support the mode Hosted Network, then the function may not work.
To activate the hotspot:
- Open
Settings → Network & Internet → Mobile Hotspot. - In the drop-down menu "Sharing" Select the connection through which your PC receives the Internet (for example,
EthernetorWireless network, if you are connected to a different Wi-Fi). - Click "Change" next to Network data and ask:
- 🔑 Network name (SSID) - any, for example
MyWiFi_5G. - 🔒 Password — at least 8 characters (we recommend using letters, numbers and special characters).
- 🔑 Network name (SSID) - any, for example
Done! Other devices can now connect to your network. If you see an error after turning it on "Unable to set up mobile hotspot", try it restart the computer or update the network adapter driver (more about this in the section on errors).
Make sure your laptop's Wi-Fi is turned on|Check that you have an active internet connection|Disable your VPN or proxy (they may be blocking the hotspot)|Update your network card driver (if the hotspot won't turn on)
-->
2. Method 2: Command line (universal method)
If the mobile hotspot refuses to work or is not available in your version Windows 10, will come to the rescue command lineThis method works on all versions of the system, including Windows 10 LTSC, where there is no graphical interface for the hotspot. The main advantage is flexibility of settings: You can set any Wi-Fi channel, encryption type, and even limit the number of connected devices.
Open the command prompt as administrator (click Win + X and select the appropriate item) and execute the following commands in order:
netsh wlan set hostednetwork mode=allow ssid="Network_Name" key="Network_Password" keyUsage=persistent
netsh wlan start hostednetwork
Replace Network_name And Network_Password to your values. After executing the second command, the following message should appear: "The hosted network has started."Now we need to enable internet sharing:
- Open
Control Panel → Network and Internet → Network and Sharing Center. - Click on the active connection (for example,
Ethernet), then Properties → Access. - Check the box Allow other network users to connect to your Internet connection and in the drop-down menu, select the created network (it will be called
Local Area Connection* X). - Click "OK" and restart your computer.
- 📶 Your mobile hotspot may not detect your modem connection. In this case, use
command line. - 🔌 Some modems block data sharing by default. Check the settings in your operator's software (for example, MTS Connect or MegaFon Internet).
- 🔄 If the upload speed is too low, try disabling traffic saving in the modem settings.
If Wi-Fi is not available after rebooting, check if the network is running using the command:
netsh wlan show hostednetwork
The status should be "Posted: Yes"If not, repeat the command. netsh wlan start hostednetwork.
@echo off
netsh wlan start hostednetwork
pause
and run it as administrator.-->
3. Method 3: PowerShell (alternative to the command line)
PowerShell — a more powerful tool than the regular command line, and it also allows you to set up Wi-Fi sharing. This method will come in handy if you're having problems with netsh or you prefer scripts. The main advantage is possibility of automation: You can write a script that will turn on the hotspot on a schedule.
Open PowerShell as administrator and run:
$ssid = "MyWiFi_PS"$password = "SecurePass123!"
$adapter = Get-NetAdapter | Where-Object {$_.Status -eq "Up" -and $_.MediaType -eq "Native 802.11"}
New-VirtualSwitch -Name "WiFiHotspot" -SwitchType Internal
New-NetIPAddress -IPAddress 192.168.137.1 -PrefixLength 24 -InterfaceAlias "vEthernet (WiFiHotspot)"
New-NetNat -Name "WiFiNat" -InternalIPInterfaceAddressPrefix 192.168.137.0/24
Add-NetNatStaticMapping -NatName "WiFiNat" -Protocol TCP -ExternalIPAddress 0.0.0.0 -ExternalPort 80 -InternalIPAddress 192.168.137.2 -InternalPort 80
netsh wlan set hostednetwork mode=allow ssid=$ssid key=$password
netsh wlan start hostednetwork
This script creates a virtual adapter, configures it NAT (network address translation) and starts the access point. If you don't need advanced settings (such as port forwarding), you can limit yourself to the last two lines with netsh.
To disable distribution, run:
netsh wlan stop hostednetwork
Mobile Hotspot|Command Prompt|PowerShell|Third-Party Programs|I Don't Share My Internet Connection-->
4. Method 4: Third-party programs for distributing Wi-Fi
If built-in tools Windows 10 do not work or you need additional features (eg. traffic limitation, blacklist of devices, repeater mode), it's worth considering third-party utilities. We tested several popular programs and compiled a table listing their features:
| Program | Free version | Windows 10 support | Additional functions | Cons |
|---|---|---|---|---|
| Connectify Hotspot | ❌ (14-day trial) | ✅ | 🔹 Repeater mode (Wi-Fi extender) 🔹 Firewall and traffic control 🔹 Support for 3G/4G modems |
Paid, free version has a time limit |
| MyPublicWiFi | ✅ | ✅ | 🔹 Connected devices log 🔹 URL Filtering 🔹 Simple interface |
No 5 GHz support, outdated design |
| Virtual Router Plus | ✅ | ✅ (but there may be bugs) | 🔹 Minimalistic interface 🔹 WPA2 support |
Not updated since 2016, may contain errors |
| Baidu WiFi Hotspot | ✅ | ✅ | 🔹 Automatically detect the best channel 🔹 Support for Cyrillic SSIDs |
Chinese software, potential privacy issues |
We recommend MyPublicWiFi For most users, the program is free, lightweight, and requires no installation. However, if you need advanced features like signal repeater, pay attention to Connectify Hotspot (though you will have to pay for the full version).
Important: Some antivirus programs (for example, Kaspersky or Avast) may block third-party Wi-Fi hotspot programs. In this case, add the utility to the exceptions list or temporarily disable protection.
5. Method 5: Sharing Wi-Fi via a USB modem (for 3G/4G)
If your computer is connected to the internet via USB modem (For example, Huawei E3372 or ZTE MF823), you can also share your internet connection via Wi-Fi. Any of the methods described above will work, but there are some caveats:
Instructions for USB modem:
- Connect your modem and wait until Windows 10 will install the drivers.
- Run Command Prompt as Administrator and run:
netsh wlan set hostednetwork mode=allow ssid="Modem_WiFi" key="password123"netsh wlan start hostednetwork - Open
Network and Sharing Center → Change adapter settings. - Find your modem connection (usually it is named as operator, for example
MTS), open Properties → Access and allow sharing forLocal Area Connections* X.
Why is the data transfer speed via a USB modem lower than on a phone?
When sharing Wi-Fi from a computer, data first passes through the USB modem, then is processed by Windows, and only then is it transmitted over Wi-Fi. Each step adds latency. Furthermore, many USB modems have hardware limits on the number of simultaneously connected devices (usually 5-10).
6. Troubleshooting Wi-Fi Sharing Errors
Even if you followed the instructions, errors may still occur. We've collected the most common problems and ways to fix them:
⚠️ Attention: If after the update Windows 10 If your mobile hotspot has stopped working, check if your network adapter settings have been reset. Reinstalling it often helps. device Manager.
| Error | Cause | Solution |
|---|---|---|
Failed to set up mobile hotspot |
🔹 Driver missing for Microsoft Hosted Network Virtual Adapter🔹 Conflict with antivirus |
🔹 Update your Wi-Fi adapter driver manually from the manufacturer's website (Intel, Realtek, Broadcom). 🔹 Disable your antivirus during setup. |
The hosted network is not supported. |
🔹 My old Wi-Fi adapter doesn't support it. Hosted Network🔹 The driver is not compatible with Windows 10 |
🔹 Check the adapter model in Device Manager and find a driver with support Virtual WiFi.🔹 Use third-party programs (for example, Connectify). |
| The devices connect, but the internet doesn't work. | 🔹 Sharing is not configured 🔹 IP address conflict |
🔹 Check your access settings in Connection properties.🔹 Run in the command line: ipconfig /releaseipconfig /renew |
| Wi-Fi is available, but very slowly. | 🔹 Channel congestion 🔹 Incorrect power saving settings |
🔹 Change the Wi-Fi channel in your router settings (if you're distributing through one) or using the command:netsh wlan set hostednetwork channel=6🔹 Disable power saving mode for your Wi-Fi adapter in Device Manager. |
If none of the methods helped, check:
- 🔌 Is the Wi-Fi adapter working? (Try connecting to a different network.)
- 📡 Is there any interference from other networks (use the program WiFi Analyzer for ether analysis).
- 🛡️ Is your firewall blocking the distribution? Windows (disable it temporarily to test).
Settings → Network & Internet → Status → Network reset.-->
7. Security when sharing Wi-Fi with Windows 10
Sharing the Internet via Wi-Fi is convenient, but unsafeIf you don't follow simple rules, your network could become a target for hackers who will try to intercept traffic or connect to your devices. Here's what you can do to minimize the risks:
🔐 Use a complex password:
- 🚫 Don't use simple combinations like
12345678orqwerty. - ✅ Optimal password:
12+ characters, with capital letters, numbers and special characters (for example,WiFi@Home_2026!).
🛡️ Set up your firewall:
- Open
Control Panel → Windows Firewall → Advanced settings. - Create an inbound rule that allows only the required ports (e.g.
80And443for the web).
👁️ Control your connected devices:
- Periodically check the list of devices on your network using the command:
arp -aor in the router interface (if you are distributing through it).
- If you see an unfamiliar device - change your password immediately.
⚠️ Attention: If you are distributing the Internet in a public place (for example, in a cafe or an airport), never use open network without a passwordAttackers can connect to your computer and gain access to personal data.
🔄 Turn off the hotspot when you don't need it.:
- A constantly active access point increases the load on the processor and drains battery power (relevant for laptops).
- To disable distribution, run:
netsh wlan stop hostednetworkor turn off mobile hotspot in settings.
8. Alternative options for distributing Internet
If you distribute Wi-Fi with Windows 10 If this doesn't work or you need a more stable solution, consider the alternatives:
📱 Tethering:
- 🔹 Most smartphones on Android And iOS can distribute Internet via Wi-Fi, Bluetooth or USB.
- 🔹 Speed and stability are often higher than when distributing from a PC.
- ⚠️ Operators may block tethering or charge an additional fee for it (check the terms in your personal account).
📡 Using a router in repeater mode (WISP):
- 🔹 If you have an old router, you can configure it as follows signal repeater (mode
WISPorUniversal Repeater). - 🔹 Suitable for signal amplification in a large apartment or office.
🖥️ Wired connection (if Wi-Fi is not needed):
- 🔹 If the devices support
Ethernet, connect them directly via cable - it's faster and safer. - 🔹 For laptops without an Ethernet port, you can use USB-Ethernet adapter.
Is it possible to share Wi-Fi from Windows 10 to multiple networks at the same time?
Technically yes, but it requires advanced configuration. For example, you can create two virtual networks using PowerShell with different SSIDs, but this can lead to IP address conflicts. For most purposes, a single access point is sufficient.
FAQ: Frequently asked questions about Wi-Fi sharing with Windows 10
❓ Why doesn't my mobile hotspot turn on after a Windows update?
Updates often reset network adapter settings. Try:
- Update the Wi-Fi adapter driver manually (download from the manufacturer's website, not through
Windows Update). - Perform a network reset:
Settings → Network & Internet → Status → Network reset. - Check if the service is enabled
Autoconfiguration WLAN(openservices.mscand find it in the list).
❓ Is it possible to distribute Wi-Fi from 5 GHz?
Yes, but:
- Your Wi-Fi adapter must support
802.11ac(check inDevice Manager). - When creating a network via the command line, specify the network type:
netsh wlan set hostednetwork mode=allow ssid="My5GHz" key="password" type=ac - Not all devices (especially older smartphones) support 5 GHz.
❓ How many devices can be connected to the shared Wi-Fi?
The theoretical limit is up to 254 devices (protocol limitation DHCP). However, in practice:
- 🖥️ Windows 10 works stably with
5-10 devices. - 📶 With a larger number of connections, the speed drops and disconnections are possible.
- 🔌 If you need a hotspot for
20+ devices, use a router.
❓ Why does Wi-Fi hotspot turn off after sleep or hibernation?
This is a known issue. Windows 10, related to adapter power management. Solutions:
- Open
Device Manager → Network Adapters → Properties of your Wi-Fi adapter → Power Management. - Uncheck the box "Allow the computer to turn off this device to save power".
- If it doesn't help, create
.bat-file with commandnetsh wlan start hostednetworkand add it toAutoload.
❓ Is it possible to distribute Wi-Fi from a virtual machine (VirtualBox, VMware)?
Yes, but with some reservations:
- 🔹 The virtual machine must have access to a physical Wi-Fi adapter (configure
USB forwardingorPCI-passthrough). - 🔹 In VirtualBox you need to turn on the mode
Network Bridgefor the VM network adapter. - ⚠️ Performance will be lower than on a physical PC.