Sharing the Internet from a laptop or PC Windows 10 — a useful skill when you don't have a router at hand but urgently need to connect your phone, tablet, or second computer. For example, in a hotel with wired internet, at a dacha with a USB modem, or when the main router is broken. The system offers several built-in ways to create virtual Wi-Fi hotspot, but each of them has its own nuances: from limitations on the number of devices to problems with drivers.
In this article - 3 proven methods launching an access point (including hidden settings), a comparison table of methods, instructions for troubleshooting common errors (for example, Failed to set up mobile hotspot) and answers to frequently asked questions. All solutions work without third-party programs, but for a stable connection, you'll need to configure them correctly. network adapter and credentials.
⚠️ Important: If your PC is connected to the Internet via PPPoE (as with most Russian providers), before creating an access point Necessarily Check your sharing settings—otherwise, connected devices won't be able to access the network. Instructions for setting up sharing are available in the relevant section.
Method 1: Mobile hotspot (the easiest)
Built-in tool Mobile hotspot appeared in Windows 10 version 1607 and allows you to share Wi-Fi in just 2 clicks. Suitable for most modern laptops and PCs with Wi-Fi adapter, supporting the regime SoftAP (This is 90% of devices after 2015). The main limitation is that you can connect no more than 8 devices simultaneously.
To activate the hotspot:
- Open
Start → Settings → Network & Internet → Mobile hotspot. - In the drop-down menu
SharingSelect the connection through which the PC receives the Internet (for example,Ethernetor the name of your USB modem). - Click
Changenext to the fieldsNetwork nameAndNetwork passwordto set your own parameters (minimum 8 characters for the password!). - Move the slider
Distribution is permittedin positionOn
Done! Other devices will now see your network in the list of available Wi-Fi networks. If the hotspot doesn't start, check:
- 🔄 Wi-Fi adapter driver: update it through
device Manager(instructions in the section on errors). - 🔒 Antivirus/firewall: Disable them temporarily - they may be blocking the distribution.
- 📡 Adapter operating mode: some older models (eg Broadcom 4313) do not support SoftAP.
Update your Wi-Fi adapter driver|Disable VPN/proxy|Make sure your internet connection is working on your PC|Check that your adapter supports SoftAP mode-->
⚠️ Attention: If an error appears after turning on the hotspot Failed to set up mobile hotspot, most likely the problem is in the settings public accessGo to . Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings, right-click on your primary connection (for example, Ethernet), select Properties → Access and check the box Allow other network users to use this computer's Internet connection.
Method 2: Command line (universal method)
If Mobile hotspot doesn't work or you need more control over the settings (like choosing a Wi-Fi channel), use command lineThis method works even on older versions. Windows 10 and allows you to bypass the limitations of the built-in hotspot.
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="Password_of_8_characters" keyUsage=persistent
netsh wlan start hostednetwork
Replace Network_name And Password_of_8_characters to your values. After executing the second command, the access point will be active. To stop distribution, use:
netsh wlan stop hostednetwork
To automatically start the access point when you turn on your PC, create bat file with these commands and add it to startup. However, keep in mind:
- 🔧 This method not always compatible with some adapters (eg Realtek RTL8188EE may give an error
Failed to start hosted network). - 📶 By default, the network operates on a channel
11(2.4 GHz). To change the channel, add the parameterchannel=6to the first team. - 🔄 After restarting your PC, you need to restart the access point (if autostart is not configured).
3. Method: Via adapter parameters (for experienced users)
This method is suitable if the first two methods did not work or you need share the Internet from a specific adapter (for example, if you have two Wi-Fi modules). It requires manual configuration of the virtual adapter and sharing, but provides maximum control over network parameters.
Instructions:
- Open
device Manager(Win + X → Device Manager). - Expand the branch
Network adaptersand find your Wi-Fi module (for example, Intel Wi-Fi 6 AX200). - Right click on it →
Properties → Advanced. - Find the parameter
Wireless ModeorWireless network modeand set the value802.11b/g/n(or802.11a/b/g/nfor 5 GHz). - Go to
Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings. - Find the connection through which the PC receives the Internet (for example,
Ethernet), right-click →Properties → Access. - Check the box
Allow other network users to use your connection...and select from the drop-down listLocal Area Connection* X(where X is the number of the virtual adapter created for distribution).
Now all that remains is to launch the access point using any of the previous methods (via Mobile hotspot (or command line). If the virtual adapter is not in the list of connections, run the following in the command line:
netsh wlan set hostednetwork mode=allow
⚠️ Attention: If after setup the devices connect to the network, but the Internet does not work, check:
- 🔌 Is it the right choice? original connection in the sharing settings (there should be one through which the PC itself receives Internet).
- 🛡️ Doesn't it block? firewall traffic: try disabling it temporarily.
- 🔄 Do they conflict? IP addresses: in the command line, run
ipconfig /alland make sure that the virtual adapter has an IP from the range192.168.137.X.
Mobile Hotspot|Command Line|Adapter Settings|Third-Party Programs-->
Comparison of Wi-Fi distribution methods
To choose the optimal method, consider your needs and equipment. Below is a table outlining the key differences:
| Parameter | Mobile hotspot | Command line | Adapter settings |
|---|---|---|---|
| Difficulty of setup | ⭐ (2 clicks) | ⭐⭐ (requires commands) | ⭐⭐⭐ (manual setting) |
| Max devices | 8 | 10+ (depending on adapter) | 10+ |
| 5 GHz support | Yes (if the adapter supports it) | Yes (manually configurable) | Yes |
| Autostart after reboot | Yes | No (script needed) | Yes |
| Works on older adapters | No | Partially | Yes |
For most users mobile hotspot — the best choice due to its simplicity. If your adapter does not support SoftAP mode (for example, some models from Realtek or Broadcom), the only working option is to use third-party programs like Connectify or Virtual Router Plus. However, they may conflict with antiviruses and require installation.
Common mistakes and their solutions
Even with proper configuration, the access point may fail to start. Here are the most common errors and how to fix them:
Error: "Unable to set up mobile hotspot"
Reasons and solutions:
- 🔌 No internet connection: Check that the PC itself has access to the network.
- 🔄 The adapter driver is out of date.: update it through
device Manageror from the manufacturer's website (for example, Intel or Qualcomm Atheros). - 📡 The adapter does not support SoftAP mode.: Check the specifications of your Wi-Fi module. Alternatively, use
netshor third-party programs. - 🛡️ Blocked by antivirus: temporarily disable Kaspersky, Avast or built-in Windows Defender.
Error: "Failed to start hosted network" (using netsh)
This error (The hosted network couldn't be started) occurs due to:
- 🔧 Incorrect adapter settings: run in command line:
netsh wlan set hostednetwork mode=disallownetsh wlan set hostednetwork mode=allow ssid="Name" key="Password" - 🔄 Conflict with virtual machines: if you have installed VirtualBox or Hyper-V, disable virtual network adapters.
- 📋 Lack of support: some adapters (eg. Realtek RTL8188SU) can't work in access point mode. Check the model in
Device Manager.
How to find out the model of a Wi-Fi adapter?
Open device Manager (Win + X → Device Manager), expand the branch Network adapters and find the device with the words Wireless, Wi-Fi or Network Adapter in the title. For example, Intel Wi-Fi 6 AX201 or Qualcomm Atheros QCA9377.
The devices connect, but the internet doesn't work.
The problem is usually related to the settings public access:
- Open
Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings. - Right-click on the connection through which the PC receives the Internet (for example,
Ethernet), selectProperties → Access. - Check the box
Allow other network users to use your connection...and select the virtual adapter from the list (usuallyLocal Area Connection* X). - Click
OKand restart the access point.
If the problem persists, check:
- 🔌 IP addresses: The connected device must have an address from the range
192.168.137.X(check in the Wi-Fi settings on your phone/tablet). - 🔄 DNS: in the command line on your PC, run
ipconfig /flushdns. - 🛡️ Firewall: Turn it off for 10 seconds and check the connection.
How to improve access point stability
A virtual access point is often less stable than a router: connections may drop, speeds may drop, or the internet may disappear. Here's how to minimize these problems:
- 📶 Select a free Wi-Fi channel: use the program WiFi Analyzer (Android) or inSSIDer (PC) to find the least crowded channel in the 2.4 GHz range (for example,
1,6or11). For 5 GHz, select channels36-48or149-165. - 🔋 Disable power saving for your Wi-Fi adapter:
- Open
Device Manager → Network Adapters. - Right-click on your Wi-Fi module →
Properties → Power Management. - Uncheck the box
Allow the computer to turn off this device to save power.
- Open
802.11ac (For example, TP-Link Archer T2U).If the internet speed on connected devices is significantly lower than on your PC, check:
- 🔌 Adapter operating mode: V
Device Managerset the maximum speed (eg802.11acinstead of802.11n). - 📊 CPU load: The virtual access point may use 10-30% of the CPU. Close unnecessary programs.
- 🔄 MTU packets: If pages are loading partially, reduce the MTU to
1400in the adapter settings.
Virtual Hotspot Security
Sharing Wi-Fi from a PC creates potential risks, ranging from connecting unauthorized devices to traffic interception. To protect your network:
- 🔐 Use a complex password: minimum 12 characters with numbers, capital letters and special characters (e.g.
WiFi@Home2026!). Avoid simple combinations like12345678. - 🔄 Change the network name (SSID): Don't use standard names like
DIRECT-PCorMyWiFiIt's better to choose a neutral name without mentioning the device model. - 🛡️ Turn off distribution when it is not needed: The virtual access point remains active even after all devices are disconnected.
- 📡 Configure MAC address filtering (for experienced):
- Find out the MAC addresses of trusted devices (on your phone:
Settings → About phone → General information → Wi-Fi MAC address). - IN Windows You can filter devices by MAC only through third-party programs (for example, Virtual Router Plus).
- Find out the MAC addresses of trusted devices (on your phone:
⚠️ Attention: If you are distributing the Internet in a public place (for example, in a cafe or an airport), Never use the same PC for online banking or working with confidential data.Devices connected to your access point may attempt to intercept traffic through protocol vulnerabilities (e.g. ARP-spoofing).
For additional protection:
- 🔒 Turn on Windows Firewall and check that it is not blocking network discovery.
- 🔄 Update regularly Wi-Fi adapter driver — new versions often fix vulnerabilities.
- 📋 Use VPN on connected devices (eg ProtonVPN or Windscribe), if you are transmitting sensitive data.
FAQ: Frequently Asked Questions
Is it possible to share Wi-Fi from a PC if the Internet is connected via a USB modem (4G)?
Yes, but there are some nuances:
- If the modem is connected as
NDIS-device (displayed inNetwork connectionsas a separate adapter), it can be selected in the settingsMobile hotspotor throughnetsh. - If the modem is operating in mode
Modem-only(For example, Huawei E3372), first set up the connection viaControl Panel → Phone and Modem Options, then distribute it. - The speed will be lower than with a wired connection due to the limitations of USB 2.0/3.0.
Why doesn't the access point start automatically after rebooting the PC?
Built-in Mobile hotspot should start automatically, but if it doesn't:
- Check if the service is enabled
Automatic WLAN configuration(Win + R → services.msc). - For
netsh-create a methodbat-file with commandnetsh wlan start hostednetworkand add it to startup (Shell:Startup). - Some antiviruses (for example, Avast) block the autostart of network services.
Is it possible to share Wi-Fi from a laptop if it doesn't have a physical Wi-Fi button?
Yes, a physical Wi-Fi button (or switch) does not affect the ability to create a hotspot. The main thing is:
- IN
Device ManagerThere were no errors near the network adapter. - The adapter driver supported the mode SoftAP (checked by the command
netsh wlan show drivers— look for the lineHosted network support: yes). - Wi-Fi was enabled programmatically (via
Control Panelor keyFn + F2/F12, depending on the laptop model).
If the adapter is disabled, enable it through device Manager (right click → Engage).
How to share Wi-Fi with 5 GHz band?
By default Windows 10 Creates an access point in the 2.4 GHz band. To force it to use 5 GHz:
- Check if your adapter supports 5GHz (in
Device Manager → Adapter Properties → Advancedthere must be a parameterPreferred BandorWireless Modewith meaning802.11a/n/ac). - Use the command line with an explicit channel specification from the 5 GHz range:
netsh wlan set hostednetwork mode=allow ssid="MyWiFi5" key="password123" channel=36Allowed channels for 5 GHz:
36-48,149-165(depending on the country). - If the command does not work, update the adapter driver to the latest version.
⚠️ Not all devices (especially older smartphones) support 5 GHz. In this case, they simply won't see your network.
Is it possible to limit the internet speed for connected devices?
Built-in tools Windows 10 — No. But there are workarounds:
- QoS in a router: If your PC is connected to the Internet via a router, set up speed limiting (QoS) on it.
- Third-party programs: NetLimiter or TMeter allow you to limit traffic for individual devices.
- VPN with restrictions: some VPN services (eg. ProtonVPN) allow you to set speed limits.
For home use, the easiest way to configure QoS is on the main router (if you have one).