This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
ECHO Setting up or shutting down a hosted network | |
SET /P ACTION="ENABLE [E] DISABLE [D] INFO[I]: " | |
IF /I "%ACTION:~,1%" EQU "E" GOTO enable | |
IF /I "%ACTION:~,1%" EQU "D" GOTO disable | |
IF /I "%ACTION:~,1%" EQU "I" GOTO info | |
GOTO unknown | |
:enable | |
SET DEFAULT_SSID=rillke's hotspot |