Powershell改变脚本执行优先权的代码分享
支持所有PS版本。
你可能需要在后台执行Powershell,例如复制文件,但是你又不想它影响你的CPU执行其它任务。
有一种方法就是降低Powershell执行的优先权,下面函数将介绍这个技巧:
代码如下:
function Set-Priority { [CmdletBinding()] param ( [Parameter(Mandatory=$true)] [System.Diagnostics.ProcessPriorityClass] $Priority ) $process = Get-Process -Id $pid $process.PriorityClass = $Priority }
下面执行降低优先权:
代码如下:
Set-Priority -Priority BelowNormal
你可以随时改回执行的优先级到正常水平,甚至提高脚本的优先级 C 增大额外开销可能会影响你UI的性能。
相关推荐
huha 2020-10-16
lianshaohua 2020-09-23
higheels 2020-08-03
ZoctopusD 2020-08-03
酷云的csdn 2020-08-03
higheels 2020-07-27
liushun 2020-06-28
zhendeshifeng 2020-06-22
Sabrina 2020-06-11
CARBON 2020-06-03
CARBON 2020-06-01
DBATips 2020-05-31
higheels 2020-05-29
applecarelte 2020-04-15
Yyqingmofeige 2020-03-28
yoshubom 2020-03-06
Yyqingmofeige 2020-03-02
SciRui 2020-02-26