批处理/VBS延时执行某程序

问题:
怎样在开机以后5分钟自动运行某程序?

1、批处理
将下面的内容保存为 .bat 后缀文件,如QQ.bat,然后复制到启动项里

代码内容如下:

@echo off
ping 127.0.0.1 -n 300>null
start D:\tools\Tencent\QQ\Bin\QQ.exe
del null

2、VBS
将下面的内容保存为 .vbs 后缀文件,如QQ.vbs,然后复制到启动项里

代码内容如下:

wscript.sleep 300000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.run """D:\tools\Tencent\QQ\Bin\QQ.exe"""

Related Posts