For the Engine GlobeControl application, the process priority can be changed with the following code.using System.Diagnostics; Process test = Process.GetCurrentProcess(); test.PriorityClass = ProcessPriorityClass.Normal;This code is at the end of the main form load method.