KB-60769: Increasing E3Viewer’s process priority via Elipse E3.

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
Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *