Windows等效的“ nice”


73

Windows是否有与Unix命令等效的Windows,nice

我专门在寻找可以在命令行中使用的内容,而不是任务管理器中的“设置优先级”菜单。

那些无法提出更好的形容词的人挫败了我在Google上发现此内容的尝试。

Answers:


63

如果要在启动进程时设置优先级,可以使用内置的START命令:

START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
      [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
      [/WAIT] [/B] [command/program] [parameters]

使用低至低于正常的选项来设置启动的命令/程序的优先级。似乎是最直接的解决方案。没有下载或脚本编写。其他解决方案可能适用于已经运行的proc。


6
要使start行为更像nice,请使用/WAIT/B选项,使终端输出进入同一窗口。
Albert Armea 2014年

但是,这似乎完全删除了您的命令历史记录(从箭头键并按F7键)。
Albert Armea 2014年

3
这仍然不能解决如何更改运行进程的优先级的问题-来自duane的回答(通过VBScript)是目前最佳的解决方案。
西蒙·索比斯

如果尝试运行类似的内容start /low "C:\Program Files\myprog.exe" param1 param2,则会收到错误“ Windows无法找到'param1'”。解决方案是用不带引号的c:\ progra〜1 \ ..替换“ C:\ Program Files \ ...”(DOS目录名称)。
Putnik

9

如果使用PowerShell,则可以编写脚本来更改进程的优先级。我在Monad博客

function set-ProcessPriority { 
    param($processName = $(throw "Enter process name"), $priority = "Normal")

    get-process -processname $processname | foreach { $_.PriorityClass = $priority }
    write-host "`"$($processName)`"'s priority is set to `"$($priority)`""
}

在PowerShell提示符下,您需要执行以下操作:

set-ProcessPriority SomeProcessName "High"

5

也许您想考虑使用ProcessTamer来根据您的设置“自动”执行降级或升级过程优先级的过程。

我已经使用了两年了。这很简单,但确实有效!


4

来自http://techtasks.com/code/viewbookcode/567

# This code sets the priority of a process

# ---------------------------------------------------------------
# Adapted from VBScript code contained in the book:
#      "Windows Server Cookbook" by Robbie Allen
# ISBN: 0-596-00633-0
# ---------------------------------------------------------------

use Win32::OLE;
$Win32::OLE::Warn = 3;

use constant NORMAL => 32;
use constant IDLE => 64;
use constant HIGH_PRIORITY => 128;
use constant REALTIME => 256;
use constant BELOW_NORMAL => 16384;
use constant ABOVE_NORMAL => 32768;

# ------ SCRIPT CONFIGURATION ------
$strComputer = '.';
$intPID = 2880; # set this to the PID of the target process
$intPriority = ABOVE_NORMAL; # Set this to one of the constants above
# ------ END CONFIGURATION ---------

print "Process PID: $intPID\n";

$objWMIProcess = Win32::OLE->GetObject('winmgmts:\\\\' . $strComputer . '\\root\\cimv2:Win32_Process.Handle=\'' . $intPID . '\'');

print 'Process name: ' . $objWMIProcess->Name, "\n";

$intRC = $objWMIProcess->SetPriority($intPriority);

if ($intRC == 0) {
    print "Successfully set priority.\n";
}
else {
    print 'Could not set priority. Error code: ' . $intRC, "\n";
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.