Originally posted by fujianabc at 2010-7-29 10:39 AM:
bootcfg /timeout直接可以设置boot.ini中的时间
能用非常好,赞一下。。我以前一直用VBS的,虽然长了点也贴出来大家参考一下。
Set WMIServices = GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery("select * from Win32_ComputerSystem")
For each CompSys in WMIServices
CompSys.SystemStartupDelay = 0
CompSys.Put_()
Next