Question:
How can I increase E3Viewer’s process priority?
Solution:
You can change process priority via Task Manager; if you need to change the settings via Elipse E3, use the script below:
HIGH = 128
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colProcesses = objWMIService.ExecQuery _
("Select * from Win32_Process Where Name = 'E3Viewer.exe'")
For Each objProcess in colProcesses
objProcess.SetPriority(HIGH)
Next