倒计时(cmd命令) - 🧩 软件分享极核论坛 - 知识星球 - 极核GetShell

倒计时(cmd命令)

命令

@echo off
for /l %%i in (5,-1,0) do (
cls
echo.
echo.
echo.
echo. 倒计时数%%i后 最小化。。
ping 127.1 -n 2 >nul
)
start /B cmd /c powershell -command "& { $x = New-Object -ComObject Shell.Application; $x.MinimizeAll() }
mshta vbscript:%print%(msgbox("倒计时结束!!",4,"Title"))(window.close)
start cmd /k "echo 倒计时结束!!"
exit

其中的for /l %%i in (5,-1,0)里面的5,-1,0   5表示的是你要倒计时多久    -1表示倒计时以每秒1个的速度来减少例如5  4  3  2  1,里面的0表示的是到几秒结束,

在使用的过程中请保持该程序不被关闭或停止

image

image

image

 

请登录后发表评论

    没有回复内容