环境 win7电脑 网线链接
按一下f12 关闭网络, 再按一下打开
需要更换成自己的网络名称使用
f12::
If ConnectedToInternet()
cmdReturn(“netsh interface set interface name=””本地连接”” admin=disable”) ;这里的 [本地连接] 换成自己的网络名称, 在控制面板>网络链接里面查看
else
cmdReturn(“netsh interface set interface name=””本地连接”” admin=enable”)
Return
ConnectedToInternet(flag=0x40) { ;检查网络是否链接的函数
Return DllCall(“Wininet.dll\InternetGetConnectedState”, “Str”, flag,”Int”,0)
}
cmdReturn(command){ ;运行cmd命令的函数
shell := ComObjCreate(“WScript.Shell”)
exec := shell.Exec(ComSpec ” /C ” command)
return exec.StdOut.ReadAll()
}