Bitsum Community Forum

General Category => Process Lasso => Topic started by: kittawat on July 14, 2025, 10:25:46 AM

Title: is Process matching using Process_name + Process priority possible?
Post by: kittawat on July 14, 2025, 10:25:46 AM
Hi everyone, currently, i am try to set the CPU affinity for specific process

the process tree looking like this:
A-|
  |-B (priority class = normal)
  |-B (priority class = normal)
  |-B (priority class = normal)
  |-B (priority class = Above normal)

basically i want to set the cpu affinity of the process "B" that were created with priority class = Above normal.
of course, i wont be changing priority class of the process B

is even possible?

also i figured that i could get the PID using "Get-Process UnrealCEFSubProcess | Where-Object { $_.PriorityClass -eq 'AboveNormal' }" command but i do not know how to use the output in process lasso
Title: Re: is Process matching using Process_name + Process priroity possible?
Post by: Jeremy Collake on July 14, 2025, 04:30:39 PM
I'm sorry to say there's no way to match based on a combination of name and priority. We'll look into whether we want to try to support that. For the time being, with a little finagling and help from AI, you can use your PowerShell script to set that process's CPU affinity. It won't be as efficient or sleek as Process Lasso, but should get the job done.