waxinator, den February 18, 2009, 16:26, skrev:
Är här någon mer än jag som egentligen tagit tiden för de olika inställningarna ?
Omarkerat antal processorkärnor innebär max antal enligt BIOS.
Ändrar man värdet så reduceras antalet processorkärnor i Windows.
Tid från BIOS-pip - till allt uppe och MSN inloggad
-------------------------------------------------------------------------------
[1] = 3:15 3:16 Core 1
[2] = 2:56 2:50 Core 1,2
[3] = 2:52 2:49 Core 1,2,3
[4] = 2:49 2:52 2:53 Core 1,2,3,4
[_] = 2:46 2:54 2:43 Core 1,2,3,4
Skillnaden i mitt system är minimal så länge som man inte stryper ner till en enda processorkärna.
Inga gigantiska skillnader här heller...!
1 kärna - 69 sek.
2 kärnor - 65 sek.
Allt enligt tidtagningsscriptet nedan! Fick tyvärr inte bifoga .vbs !
OmStartsTidtagaren.vbs
Option Explicit
On Error Resume Next
Dim Wsh, Time1, Time2, Result, PathFile, MsgResult, MsgA, AppName, KeyA, KeyB, TimeDiff
MsgA = "Vänligen, stäng alla öppna program och klicka OK."
KeyA = "HKEY_CURRENT_USER\Software\RestartTime\"
KeyB = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\RestartTime"
AppName = "OmStartsTidtagaren"
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 "Din dator startar om på " & TimeDiff & " sekunder", VbInformation, AppName
end if
wscript.Quit