Sometimes, you may want to lower process priority for some processes. That's a PowerShell one liner. Note that the next line lowers priority for all Notepad processes to "below normal:"
Get-Process notepad | ForEach-Object { $_.PriorityClass = "BelowNormal" }