代码功能是——连接我的ADSL,4秒后断开,一秒后再连接,四秒后再连接,如此重复直到关闭窗口。
我知道自动连接ADSL的代码是“Rasdial ADSL 111111111 000000000”其中1111111是我的ADSL账号,0000000是密码。“ADSL”是连接名
请用这个条件写一个我说的代码,或者VBS脚本也可以。
我写了个VBS的。你看看
Set ws=WScript.CreateObject("wscript.shell")
do
ws.Run "cmd.exe /c Rasdial ADSL 111111111 000000000",True,true
WScript.Sleep 4000
ws.Run "cmd.exe /c Rasdial /d ",True,True
WScript.Sleep 1000
loop
这个是终止脚本的代码
set ws=wscript.createobject("wscript.shell")
ws.run "cmd.exe /c taskkill /im wscript.exe /f",true,true
看看这样行吗?
@echo off
color 0b
echo 删除Cookies和IE临时文件?
echo.
echo 0.都不 1.Cookies 3. IE临时文件 4.Cookies和IE临时文件 Q. 退出
:cho
echo.
set /p choice= 请选择(0/1/3/4/Q)后按回车执行:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="0" goto gogogo
if /i "%choice%"=="1" goto a1
if /i "%choice%"=="3" goto a3
if /i "%choice%"=="4" goto a4
if /i "%choice%"=="q" goto end
echo.
echo 输入错误,请重新选择
goto cho
:a1
del /f /q %userprofile%\cookies\*.*
goto gogogo
:a3
del /f /s /q %userprofile%\Local Settings\Temporary Internet Files\*.*
goto gogogo
:a4
del /f /q %userprofile%\cookies\*.*
del /f /s /q %userprofile%\Local Settings\Temporary Internet Files\*.*
goto gogogo
:gogogo
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /s /q "%userprofile%\Local Settings\Temp\*.*
del /f /s /q "%userprofile%\recent\*.*
cls
echo.
echo 已执行完毕.2秒后将自动退出.
ping -n 2 127.0>nul
exit
:end
exit
0