It's kinda late in the build season, but I wanted to share this anyway
To switch to regular internet.
Code:
ECHO This fanciness is brought to you by Folders!
ECHO You may have to change the text in "Wireless Network Connection"
ECHO Resetting IP Address and Subnet Mask For DHCP
netsh int ip set address name = "Wireless Network Connection" source = dhcp
netsh int ip show config
pause
To switch to Robot.
Code:
ECHO This fanciness is brought to you by Folders!
ECHO You may have to change the text in "Wireless Network Connection"
set varip=10.16.71.30
set varsm=255.255.255.0
REM For the most up-to-date-info, visit http://samanathon.com/set-your-ip-address-via-batch-file/
ECHO Setting IP Address and Subnet Mask
netsh int ip set address name = "Wireless Network Connection" source = static addr = %varip% mask = %varsm%
netsh int ip show config
pause