Set Process Priority to AboveNormal

Version 1.2.2
Created on 2019-03-20
Modified on 2019-03-20
Created by trentent.tye
Downloads: 262

The Script Copy Script Copied to clipboard
$priorityhash = @{-2="Idle";-1="BelowNormal";0="Normal";1="AboveNormal";2="High";3="RealTime"} 
 
    (Get-Process -Id $args[0]).priorityclass = $priorityhash[1]