' RestartServices.vbs
' Example VBScript to Restart Services
' Author Guy Thomas http://computerperformance.co.uk/
' Version 1.3 - March 20th 2005
' -----------------------------------------------------------------'
Option Explicit
Dim objShell, intShortSleep, intLongSleep
Dim strService
Set objShell = CreateObject("WScript.Shell")
' Values set
' uncomment and use the first one, if you are using dual
processors. Change the processor name to CPU1 or CPU2. 'strService = "FAH@C:{+}FoldingProject{+}CPU1{+}FAH502-Console.exe"
strService = " FAH@C:{+}folding{+}FAH502-Console.exe"
intShortSleep = 1500
intLongSleep = 5500
' Cmd prompt opened
objShell.Run "cmd"
Wscript.Sleep intShortSleep
'
objShell.SendKeys "cd c:\"
Wscript.Sleep intShortSleep
objShell.SendKeys "{Enter}"
' Service stopped with 'Net' command
objShell.SendKeys "net stop" & strService
Wscript.Sleep intShortSleep
objShell.SendKeys "{Enter}"
Wscript.Sleep intLongSleep
' Service started with 'Net' command
objShell.SendKeys "net start" & strService
Wscript.Sleep intShortSleep
objShell.SendKeys "{Enter}"
Wscript.Sleep intLongSleep
' Cmd prompt exited
objShell.SendKeys "Exit"
Wscript.Sleep intShortSleep
objShell.SendKeys "{Enter}"
WScript.Quit
Of course, yesterday, I had a banner day.
I'm running a Pentium III 533MHz working on Tinker p1152 for the umpteenth time. Should I be seeing things about "SSE" in my log file? I read that Tinker cores WUs aren't optimized, so does SSE not apply to Tinkers?
I barely know what I'm asking. Just checking. =)