Lowering Process Priority

by Aug 2, 2010

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" }

Twitter This Tip! ReTweet this Tip!