如果要开机多久后关机的话,编个vbs的更好一点. dim wshshell set wshshell=wscript.createobject("wscript.shell") wscript.sleep 1000*600 wshshell.run
@echo offecho hello>nul ping 127.1 /10 echo worldpause::输出hello,延迟10秒后,输出world。::将/10,改为/100就延迟100秒。举一反三,你懂得……