[How to] Share Wifi (Hotspot) and create .bat file script

preview_player
Показать описание
Hi, today we're gonna make our own wifi hotspot by creating .bat file script for running (or stopping) our wifi hotspot service.

** Don't put Start and Stop in the same file !!

• Start Sharing Script:
netsh wlan set hostednetwork mode=allow ssid="Your Wifi Name" key="Your password"
netsh wlan start hostednetwork

• Stop Sharing Script:
netsh wlan stop hostednetwork
Рекомендации по теме
Комментарии
Автор

This works by hand (doing double click in the batch file) but if you put the batch to start wit Windows the script fail with amessage.

MarioCardonaS