fxyply 当前离线
列兵
@echo off echo TIME:%time:~0,2%:%time:~3,2%:%time:~6,2%.%time:~9,2% echo set/a t=%time:~6,2%+1 taskkill /f /im explorer.exe echo at%time:~0,2%:%time:~3,2%:%t%.%time:~9,2% /interactive %systemroot%\explorer.exe pause复制代码
评分人数
weichenxiehou 当前离线
上尉
@echo off ::实在不知下一句想干嘛,直接echo,%time%不就行了,难道是因为你的系统显示不是这个格式? echo TIME:%time:~0,2%:%time:~3,2%:%time:~6,2%.%time:~9,2% ::下一句只是起了一个显示作用啊,并没有进行实际的加法,去掉echo就行了。 echo set/a t=%time:~6,2%+1 taskkill /f /im explorer.exe ::下一句如果仍然要实际运行,也要去掉echo。 echo at%time:~0,2%:%time:~3,2%:%t%.%time:~9,2% /interactive %systemroot%\explorer.exe pause复制代码
TOP
TIME:%time:~0,2%:%time:~3,2%:%time:~6,2%.%time:~9,2%复制代码
echo TIME:%time%复制代码
TIME: 6:10:05.03 set/a t=05+1 成功: 已终止进程 "explorer.exe",其 PID 为 1592。 at 6:10:.14 /interactive C:\WINDOWS\explorer.exe 请按任意键继续. . . 复制代码
601997526 当前离线
六级士官
echo set/a t=%time:~6,2%+1复制代码
for /f "tokens=* delims=0" %%i in ("%time:~6,2%") do set /a t=%%i+1复制代码
garyng (GaryNg)当前离线
少尉
920168 当前离线
二级士官
echo off echo 现在时间:%time:~0,-3% set /a t=%time:~6,-3%+10 taskkill /f /im explorer.exe echo at %time:~0,2%:%time:~3,2%:%t%.%time:~9,2% /interactive %systemroot%\explorer.exe pause复制代码