1. 程式人生 > >VBS實現定時關機

VBS實現定時關機

dim x
set w=createobject("wscript.shell")
x=inputbox("請輸入倒計時關機時間如60表示一分鐘後關機"&"VBS迷你關機小程式")
if vbok then
w.run "shutdown -s -t " + x
if x="" then
w.run "shutdown -a "
end if
end if