如何让批处理在10分钟后运行我要的程序

来源:百度知道 编辑:UC知道 时间:2024/06/26 05:29:37
如何让批处理在10分钟后运行我要的程序,不知道大家能不能帮我

echo off
ping 127.0.0.1 -n 10 >nul
echo 执行你的程序
pause

第二句中-n 后的10 可以自己换数字来控制时间

用AT可以

echo off
ping 127.0.0.1 -n 600 >nul
start D:\Progra~1\KMPlayer\KMPlayer.exe

-n后面是600秒。