PowerShell不会设置处理器关联

时间:2019-07-10 04:56:00

标签: powershell

使用以下代码powershell不会设置处理器亲和力,但是将空闲设置好就可以了?

    $ffproc = Start-Process -filepath $ffm -ArgumentList $aaa -NoNewWindow -PassThru

    $ff2 = [System.Diagnostics.Process]::GetProcessById( $ffproc.Id )
    $ff2.PriorityClass = 'Idle'
    $ff2.ProcessorAffinity = 0x7

    Wait-Process -inputObject $ffproc

0 个答案:

没有答案