本帖最后由 虫子樱桃 于 2012-5-27 12:11 编辑
看不懂这码,小弟只接触过AU3
批处理一般用的是 循环 。例如:
帮助里有很多的 看看把 或者在 论坛 ...
魔导 发表于 2012-5-26 23:43 @echo off
rem 相当于定一个函数loop,忘记bat里面那个是咋说的啦,囧
:loop
del /f /s /q /a "%userprofile%\cookies\*.*"
del /f /s /q /a "%userprofile%\local settings\history\*.*"
del /f /s /q /a "%userprofile%\local settings\temp\*.*"
del /f /s /q /a "%userprofile%\local settings\temporary internet files\*.*"
rem 其实就是一个倒计时,下面的代码
for /l %%a in (2,-1,0) do (
for /l %%b in (59,-1,0) do (
for /l %%c in (99,-1,0) do (
cls
echo. 0%%a:%%b:%%c
ping 127.1 -n 1 -w 1 >nul
)
)
)
rem 调用函数
goto loop
rem 如果bat文件带参数h执行,那么就执行begin这的代码
if "%1" == "h" goto begin
rem 貌似是关闭程序
mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit
:begin
REM
|