Laptop Wi-Fi Hotspot

Hotspot From Laptop (internal)
Hello everyone,
This is a post for "How to start a Virtual Hotspot from your Laptop even when you are connected to a Wi-Fi network."
This helps people who want to use the internet from the Laptop directly with their mobile's 
and other devices
Continue reading for more info about the amaizing post ahead,



coding

@echo off
title Hotspot
echo Enter 1 or 2 only
echo 1.Start Hotspot
echo 2.Stop hotspot
echo Enter your choice:
set/p value=
if %value%==1 goto :1
if %value%==2 goto :2

:1
netsh wlan start hostednetwork
pause
exit

:2
netsh wlan stop hostednetwork
pause

exit

But first you have to configure the hotspot using command prompt.
Thank you.

Comments