Wednesday, 6 January 2016

How to create wifi hotspot on laptop



Do you know you don’t need a router to create a wifi hotspot when you have a laptop. You don’t need any software.. you just need to do is type these simple commands in CMD to create a hotspot on your laptop.
To open the command window press WIN+R. Then a dialog box appears, type ‘cmd’ in that box and click ‘ok’. Now the command window is opened.

Method 1: 

open CMD and copy-paste below lines one by one--

1.netsh wlan show drivers

2.netsh wlan set hostednetwork mode=allow ssid=FreeWIFI key=12345678

3.netsh wlan start hostednetwork  -change network name and password to your choice all done!

4. netsh wlan stop hostednetwork  -To stop the wifi hotspot.

Method 2:

How to Make Wi-Fi Hotspot on Windows using Notepad

1. Open Notepad and type paste below code into it.
     
     netsh wlan set hostednetwork mode=allow ssid=FreeWIFI key=12345678

     
     netsh wlan start hostednetwork

2. Now you can change the SSID by changing code in blue color and you can change the security code in red color.

3. Now make sure to save this file as Start.bat and its done.

4. Now create another new Notepad file and paste below code into it.
     
     netsh wlan stop hostednetwork

Save this file as Stop.bat and your Wi-Fi Hotspot stopping process is up. So now whenever you want to start the Wi-Fi Hotspot simply double click the Start.bat file and your Wi-Fi hotspot will start to broadcast. As soon as you are done you can double click the Stop.bat file and your broadcast will be stopped


No comments:

Post a Comment