I want to execute a command line tool to process data. It does not need to be blocking. I want it to be low priority. So I wrote the below
Process app = new Process(); app.StartInfo.FileName = @"binconvert.exe"; app.StartInfo.Arguments = TheArgs; app.PriorityClass = ProcessPriorityClass.BelowNormal; app.Start();
However, I get a System.InvalidOperationException with the message "No process is associated with this object." Why? How do I properly launch this app in low priority?
System.InvalidOperationException
Without the line app.PriorityClass = ProcessPriorityClass.BelowNormal; the app runs fine.
app.PriorityClass = ProcessPriorityClass.BelowNormal;
Try setting the PriorityClass AFTER you start the process. Task Manager works this way, allowing you to set priority on a process that is already running.
2.1m questions
2.1m answers
60 comments
57.0k users