How to See What Your Windows 7 Restart Time isInformation:This app will show you how long in seconds it takes your Windows 7 to restart back to the desktop.
1. Click on the
Here to download to download the
Restart-Time.zip file.
2. Click on
Save, and save the
Restart-Time.zip file to the desktop.
3. Open the
Restart-Time.zip file and
extract the
Restart-Time.vbs file to the desktop.
NoteJust for your reference, this is the contents of the Restart-Time.vbs file below: Option Explicit
On Error Resume Next
Dim Wsh, Time1, Time2, Result, PathFile, MsgResult, MsgA, AppName, KeyA, KeyB, TimeDiff
MsgA = "Please close all running applications and click on OK."
KeyA = "HKEY_CURRENT_USER\Software\RestartTime\"
KeyB = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\RestartTime"
AppName = "Restart-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 computer restarts in " & TimeDiff & " seconds", VbInformation, AppName
end if
wscript.Quit
4. Right click on the Restart-Time.vbs file, and click on Properties.
5. Under the General tab, click on the Unblock button to unblock the
Restart-Time.vbs file.
NOTE: If you do not have a
Unblock button, then it is already unblocked. Continue to step 6.
6. Click on the
Restart-Time.vbs file to run it.
7. Click on
OK to restart the computer.
WARNING: Close and save all windows first. This will immediately restart your computer.8. When the computer finishes restarting, you will see your Windows 7 restart time. Click on
OK when done.
9. You can now delete the
Restart-Time.zip and
.vbs files on the desktop if you like, or save them somewhere to use again later.