校园网连外网每次都需要在一个www(auth.cau.edu.cn)网页中输入帐号和密码来连接,很不爽,
在校BBS里面找到的了各种版本的自动连接程序,很遗憾大多为EXE文件,没有提供源码,根据别人的
思路和方法,自己写了一个bat脚本文件,简单,直观,当然绝对无后门。
1
@echo
off
2
3 set Username = 填上学号
4 set Password = 填上密码
5
6 @ rem 断开所有连接
7 explorer " http://auth.cau.edu.cn/ipgw/ipgw.ipgw?uid=%Username%&&password=%Password%&&range=2&&timeout=1&&operation=disconnectall "
8 @ rem 延时1s
9 ping -n 2 127.0 . 0.1 > NUL 2 > NUL
10 @ rem 结束浏览器
11 taskkill / im iexplore . exe
12
13 @ rem 开始本机连接
14 explorer " http://auth.cau.edu.cn/ipgw/ipgw.ipgw?uid=%Username%&&password=%Password%&&range=2&&timeout=1&&operation=connect "
15 ping -n 2 127.0 . 0.1 > NUL 2 > NUL
16 taskkill / im iexplore . exe
2
3 set Username = 填上学号
4 set Password = 填上密码
5
6 @ rem 断开所有连接
7 explorer " http://auth.cau.edu.cn/ipgw/ipgw.ipgw?uid=%Username%&&password=%Password%&&range=2&&timeout=1&&operation=disconnectall "
8 @ rem 延时1s
9 ping -n 2 127.0 . 0.1 > NUL 2 > NUL
10 @ rem 结束浏览器
11 taskkill / im iexplore . exe
12
13 @ rem 开始本机连接
14 explorer " http://auth.cau.edu.cn/ipgw/ipgw.ipgw?uid=%Username%&&password=%Password%&&range=2&&timeout=1&&operation=connect "
15 ping -n 2 127.0 . 0.1 > NUL 2 > NUL
16 taskkill / im iexplore . exe
把它放在 启动 目录下,这样开机就首先断开在其他地方的连接并连上本机。不过有个问题是安
全性不够,密码是纯文本格式的,于是想把bat转成exe,结果下了个试用版的ExeScript,编译的程
序运行时还要Press any key才行,这不爽,再者,在浏览器的历史中还是存在密码的明文。算了吧,
明文就明文吧,也不是多么重要的密码,方便使用就好。