WiFi hotspot

WiFi hotspot

How to share your WIFI connection on Windows 7 turning your PC in a wifi HOTSPOT in n steps:

1) create a text file and name it:
hotspot_allow.bat
write into the file the following command:

netsh wlan set hostednetwork mode=allow ssid=HOTSPOT key=yourpassword

you can change the ssid and key parameters as you want naming the wifi hotspot with a name of yours and with a strong password…

2) create a text file and name it:
hotspot_start.bat
write into the file the following command:

netsh wlan start hostednetwork

3) create a text file and name it:
hotspot_stop.bat
write into the file the following command:

netsh wlan stop hostednetwork

so you have finished:

To start your hotspot, launch in the sequence: hotspot_allow.bat
go to in control panel, in network devices you will see a VIRTUAL WIFI MINIPORT added – in properties enable ONLY IPV4 (all other protocols disabled)
and then hotspot_start.bat as administrator (right click: execute as administrator)

To stop, launch as administrator: hotspot_stop.bat

bye!