静默定时启动
需求
项目上某需求,无命令行,无提示,一定时间后,某exe自启动
环境
win32下,执行某exe
具体方案
在网上找到的例子,非精确计时,定时
利用vb脚本和批处理
- vb脚本
set ws=wscript.createobject("wscript.shell")
ws.run "a.bat 10/start",0
另存为*.vbe
- bat脚本
@echo off
ping -n %1% 127.1>nul
helloworld.exe
pause
- 配合上脚本需要exe为helloworld.exe,
bat脚本命名为a.bat,实际上就是对本机ping了大约10s
write by 黄白猫 using Atom