开发者

I found this Reboot Vista.vbs script. Can you help with it?

Found this Reboot Vista.vbs script on a number of forums. Seems like the whole post ( text including the code ) was posted 开发者_Go百科on many forums. So I don't know who the original author is. Heres the code here:

Option Explicit
On Error Resume Next
Dim Wsh, Time1, Time2, Result, PathFile, MsgResult, MsgA, AppName, KeyA, KeyB, TimeDiff
MsgA = "Warning! Close all running programs and click on OK."
KeyA = "HKEY_CURRENT_USER\Software\RestartTime\"
KeyB = "HKEY_CURRENT_USER\Software\Microsoft\Windows\Curr e ntVersion\Run\RestartTime"
AppName = "Boot Up Time"
Set Wsh = CreateObject("WScript.Shell")
PathFile = """" & WScript.ScriptFullName & """"
Result = wsh.RegRead(KeyA & "Times")
if Result = "" then
MsgResult = Msgbox (MsgA, vbOKCancel, AppName)
If MsgResult = vbcancel then WScript.Quit
Wsh.RegWrite KeyA & "Times", left(Time,8), "REG_SZ"
Wsh.RegWrite KeyB, PathFile, "REG_SZ"
Wsh.Run "cmd /c Shutdown -r -t 00", false, 0
else
Wsh.RegDelete KeyA & "Times"
Wsh.RegDelete KeyA
Wsh.RegDelete KeyB
TimeDiff = DateDiff("s",Result,left(Time,8))
MsgBox "Your system reboots in " & TimeDiff & " seconds", VbInformation, AppName
end if
wscript.Quit

It is supposed to reboot Vista, and once it is rebooted, show the time it took to reboot. It reboots fine and everything, but the dialog box doesn't pop up. I have to manually click on the script again for the time to appear ? I think that defeats the purpose of the script don't you ?

Any help would be much appreciated fellas.


You cannot have spaces in the regpath: Change "Curr e ntVersion" to "CurrentVersion"

This row:

Wsh.RegWrite KeyB, PathFile, "REG_SZ"

will register the script to autostart with windows if the PathFile and KeyB is correct, but with spaces in "Curr e ntVersion" it will not work.


Maybe you are getting an error which is preventing the display of the message box? This line you have at the start of the script will cause it to ignore all errors:

On Error Resume Next

You should simply delete this line, then run it again and see what is happening.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜