Many people are familiar with the situation where they urgently need to connect to the internet, but their router is either unavailable or broken. In such cases, a built-in operating system feature can help, allowing them to turn their laptop into a fully-fledged router. This feature, known as mobile hotspot, allows you to broadcast a wired or Wi-Fi connection to other devices: smartphones, tablets, or even another computer.
Creating a hotspot doesn't require installing complex third-party software, as modern versions of Windows have powerful built-in tools. However, users often encounter issues such as network invisibility, bandwidth issues, or the inability to share the internet despite a connection. In this article, we'll cover all setup steps, from basic settings to in-depth diagnostics via the command line.
Before you begin setting up, you should make sure that your equipment is technically ready to operate in repeater mode. Wi-Fi adapter The laptop must support the corresponding function, and the drivers must be updated to the latest version. Ignoring this requirement is the most common cause of failure when trying to set up a local network.
Checking hardware and driver compatibility
The first step before activating internet sharing is to check whether your network adapter can operate in host mode. Not all Wi-Fi modules, especially older models, support simultaneous reception and transmission. For diagnostics, use a standard command line utility, which will provide a detailed report on the current driver status.
Open a command prompt with administrator privileges. This can be done by entering cmd in Windows Search by right-clicking on the result and selecting the appropriate option. In the window that opens, enter the command netsh wlan show drivers and press Enter. In the list of options, find the line "Hosted network supported" (or "Hosted network supported" in the English version).
If the value is "Yes," your laptop is ready to use. If you see "No," the problem lies with the driver or hardware limitations. In this case, you should try updating the software through the Device Manager or downloading the latest version from the laptop manufacturer's website. Sometimes, rolling back the driver to an earlier version helps if a feature stops working after an update.
⚠️ Attention: If reinstalling the drivers still doesn't support the feature, it's possible your Wi-Fi adapter isn't physically capable of operating in SoftAP mode. In this case, the only solution is to purchase an external USB Wi-Fi adapter that supports this feature.
It's also important to pay attention to the adapter model. Built-in modules Intel Centrino, Realtek And Qualcomm AtherosCards released after 2015 generally have no compatibility issues. However, budget laptop models may use stripped-down versions of the cards, with functionality limited to signal reception only.
Basic setup via the Windows Settings menu
The easiest and fastest way to create a Wi-Fi hotspot on a laptop is built directly into the operating system interface. In Windows 10 and 11, this functionality is located in a separate settings section, making the process as straightforward as possible even for inexperienced users. You won't need to enter complex commands manually.
To get started, go to the Start menu and select the gear icon to open Settings. Find the "Network & Internet" section. In the left pane (or in the list of options for Windows 11), select "Mobile hotspot." This is where you'll find all the controls you need to manage your future hotspot.
In the menu that opens, you'll see a toggle switch labeled "Allow access to my internet connection...." Slide it to the "On" position. The system will automatically generate a network name (SSID) and password, which will be displayed below. You can change these to your own by clicking the "Change" button. It's recommended to use a strong password to prevent neighbors from using your data.
- 📡 Network Name (SSID): Come up with a unique name to avoid confusion with neighboring networks.
- 🔐 Password: must contain at least 8 characters, including letters and numbers for WPA2 security.
- 🔗 Source: Select the type of Internet connection to be shared (Ethernet, Wi-Fi or mobile Internet).
- 📶 Range: Select 2.4 GHz for compatibility or 5 GHz for speed (if supported).
Once the slider is enabled, the laptop will begin broadcasting the signal. On other devices (phone or tablet), open the list of available Wi-Fi networks, find the newly created name, and enter the specified password. If everything is successful, the indicator on the laptop will change to show the number of connected devices.
☑️ Hotspot Launch Checklist
Configuration via the command line (Netsh)
For users who prefer classic methods or encounter errors with the graphical interface, there is an alternative way - using the command line. The utility netsh (Network Shell) allows you to manage network settings at a deeper level, bypassing possible bugs in the Windows interface.
Launch the Command Prompt as administrator. The first step is to create a network configuration. Enter the following command, replacing "MyNetwork" with the desired network name and "MyPassword" with a strong password:
netsh wlan set hostednetwork mode=allow ssid=MyNetwork key=MyPassword keyUsage=persistent
Once the command has successfully completed (the system will respond with a message about changing the parameters), the network has been created but is not yet running. To activate distribution, enter the command netsh wlan start hostednetworkIf you see the message "Hosted network started," your laptop has started broadcasting. You can stop broadcasting with the command netsh wlan stop hostednetwork.
However, even after the network is running, the internet may not work on connected devices. This is because Windows doesn't allow traffic between adapters by default. You need to open the Network and Sharing Center, go to "Change adapter settings," find your primary adapter (the one that provides internet access), click "Properties" → "Sharing," and check "Allow other network users to connect..." by selecting the virtual adapter (usually named "Local Area Connection*" and followed by a number) from the list.
What to do if the command fails?
If you receive the error "Not supported by wireless network" when entering the command, try updating your Wi-Fi adapter driver. Also, make sure your antivirus isn't blocking the creation of the virtual interface. Temporarily disabling your firewall can sometimes help.
Troubleshooting 5GHz Bandwidth and Compatibility Issues
One common issue is the inability to connect to the network on older devices or, conversely, slow speeds on modern gadgets. This is due to the frequency band selection. By default, Windows may select the 5 GHz band, which provides high speeds but has a shorter range and is less able to penetrate walls.
Many older smartphones and IoT devices (smart bulbs, plugs) simply don't detect networks operating in the 5 GHz band. If you notice that some devices aren't detecting your access point, force them to switch to 2.4 GHz. You can do this in the "Mobile Hotspot" menu -> "Change" -> "Frequency Band."
On the other hand, if you plan to transfer large amounts of data or stream video, 5 GHz is preferable due to the lack of interference from neighboring routers and microwave ovens, which clog the 2.4 GHz band. The choice depends on the specific tasks and the distance between the laptop and client devices.
| Parameter | 2.4 GHz band | 5 GHz band |
|---|---|---|
| Transfer speed | Up to 300-450 Mbps | Up to 867 Mbps and higher |
| Range | Large (up to 30-40 meters) | Medium (up to 15-20 meters) |
| Penetration of walls | High | Low |
| Interference level | High (many neighboring networks) | Low (pure ether) |
| Compatibility | Works with all devices | Only with modern gadgets |
⚠️ Attention: The band configuration interface may vary depending on your Windows version and Wi-Fi adapter model. If the band selection option is unavailable (grayed out), your driver or hardware doesn't support manual switching.
Automating access point launch
Manually launching a hotspot through the menu or command line can be inconvenient if you do it regularly. Fortunately, the process can be automated by creating a special script. This is especially useful for those using a laptop as a permanent router in a rented apartment or office.
Create a text file on your desktop and rename it to start_wifi.batIt is important to change the extension from .txt on .batOpen the file with Notepad and paste the launch commands we discussed earlier. Don't forget to replace the network name and password with your own.
netsh wlan set hostednetwork mode=allow ssid=MyHomeNet key=SuperPass123
netsh wlan start hostednetwork
Save the file. Now, to launch the access point, simply double-click this file. However, since it requires administrator privileges, the system may ask for confirmation. To avoid repeated prompts, you can set up a task in Windows Task Scheduler that will run this script at system startup with the highest privileges.
Diagnosis and troubleshooting of common errors
Even with proper setup, glitches can still occur. The most common error is "Unable to set up mobile hotspot." This is most often caused by a driver conflict or power saving settings issue. Windows may attempt to conserve power by disabling the Wi-Fi module, which interrupts the connection.
To fix this, go to Device Manager, locate your wireless adapter, open Properties, and then go to the Power Management tab. Uncheck "Allow the computer to turn off this device to save power." This will prevent the adapter from turning off accidentally.
Another possible cause could be your antivirus software. Third-party firewalls (Kaspersky, ESET, Avast) can block the creation of a virtual adapter. Try temporarily disabling network protection or adding an exception rule for Windows system processes. Resetting network settings via the command line also helps: netsh winsock reset And netsh int ip reset, after which a system restart is required.
In conclusion, it's worth noting that creating a hotspot on a laptop is a temporary solution. A laptop isn't designed to operate as a router 24/7: it gets hot, drains battery life (when not connected to a network), and has a shorter range than dedicated equipment. However, as an emergency measure or a way to quickly share internet, this method is indispensable.
Is it possible to share Wi-Fi if the laptop itself is connected via Wi-Fi?
Yes, modern Wi-Fi adapters support Wi-Fi Direct technology, which allows you to simultaneously receive and broadcast internet via Wi-Fi. However, this can reduce overall connection speed and stability. It's better to use an Ethernet cable for incoming internet.
How many devices can connect to a laptop hotspot?
Officially, Windows 10/11 limits the number of connections to 8 devices. In practice, with a powerful adapter and a good signal, you can connect more, but the internet speed on each device will noticeably drop.
Why does my phone connect but say "No Internet access"?
This is a classic NAT problem. You need to go to the properties of the primary adapter (the one connecting to the internet), go to the "Access" tab, and enable shared access for the created virtual network, as described in the command line section.
Does creating an access point affect the speed of the laptop itself?
Yes, the processor and Wi-Fi module experience additional load as they encrypt traffic and manage connections. On older laptops, this can cause noticeable stuttering when playing games or running heavy applications.