Open Notepad and save this as Priority.vbs and place this script in your Startup folder,
CODE
On Error Resume Next
'Priority Class Value
' Low - 64
' Below Normal - 16384
' Normal - 32
' Above_Normal - 32768
' High - 256
' Real_Time - 128
Const High = 256
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colProcesses = objWMIService.ExecQuery _
("Select * from Win32_Process Where Name = 'Explorer.exe'")
For Each objProcess in colProcesses
objProcess.SetPriority(High)
Next
This should be self explanatory, but in any case lets explain a little bit, in this form you'll make explorer a High proccess, but i recomend just to keep it as a Above Normal proccess, you could do that by modifying the following :
CODE
Const Above_Normal = 32768
...and
CODE
objProcess.SetPriority(Above_Normal)
If its still not clear what this does, i suggest you don't do it.
Note : I did not do this, got it from Bill's site
Kategorie(n):