How to change I/O priority of a process or thread in Win7?

57,794

Solution 1

Ready-Made Tool

A third-party tool to set process I/O priorities, either by manual user action or automation and persistence, would be Process Lasso. It can set almost any process setting, and do so persistently, or by rules (e.g. when this happens, change I/O priority of that).

Programmatic Answer

The answer is a simple API call to an NT Native API, NTSetInformationProcess. It is defined as the class 'IoPriority' in the 2008 DDK. In NT6 only two levels supported: Very Low (background) and Normal. There are technically 5 levels defined -- Critical, High, Normal, Low, and Very Low. The Critical level is reserved for paging operations. No data on the others.

However, the proper way to use the I/O priority is only to start a 'background mode' via a call to the Windows API SetProcessPriorityClass, supplying PROCESSS_MODE_BACKGROUND_BEGIN. This will cause it to use the very Low (background) I/O priority, along with an IDLE CPU priority class. When done, revert via PROCESS_MODE_BACKGROUND_END.

The SetThreadPriority API will also allow this same background mode for specific threads. Here you'd supply THREAD_MODE_BACKGROUND_BEGIN/END.

Solution 2

I developed this after seeing nobody bothered with it: https://sourceforge.net/projects/iopriority/ (open source)

This program is able to set the I/O priority of a process, and all threads are being affected by it immediately. It's pretty easy to modify it to work with threads instead of processes.

Solution 3

ProcessHacker is a GUI tool that can change IO priority of an arbitrary process.

Solution 4

I'm partial to a free app called PRIO (at prnwatch.com/prio), which is a process priority saver (among other things) with a very small (less than 1 MB) footprint. After installation it runs silently in the background until you need it, and its interface builds directly into the Windows Task Manager, extending its functionality and making it as if the added features were always part of Task Manager. When you right-click a process in Task Manager with the intent of changing its priority, some of PRIO's added features become apparent, as you can change not only the process' CPU priority but its I/O priority as well (ergo your question), and you can choose to SAVE the new settings if you so desire ⁠— which is to say, make them persistent.

One thing about the I/O priority settings in particular ᎓ don't know why, but those can only go down, i.e. underneath "Normal", as both "Above normal" and "High" are always greyed out (anybody know why?). This is in contrast to CPU priority, which covers the full gamut, up to and including "Real time" (though this last is not recommended).

The app has other features that also extend the functionality of the various tabs in the Windows Task Manager. Versions exist for both 32- and 64-bit systems, and the app is free for personal use.

Share:
57,794

Related videos on Youtube

RomanSt
Author by

RomanSt

Updated on September 17, 2022

Comments

  • RomanSt
    RomanSt over 1 year

    Process Explorer is able to show the effective IO priority of a given thread, but not change it. Seeing as IO priority support is a comparatively new feature, most programs don't set their own IO priorities. It appears that by default the IO priority is derived from the thread priority (rather than process priority), which Process Explorer can't modify either.

    Are there any other tools out there that can help me change the IO priority of a given thread / all threads of a given process?

    • Admin
      Admin about 14 years
      There is almost the same question on Stack Overflow: stackoverflow.com/questions/301290/…
    • Admin
      Admin almost 14 years
      @[Mehper C. Palavuzlar] true, but this is not for software I develop - I'm looking for a ready-made tool to do this on third-party software.
  • barlop
    barlop over 11 years
    I'm not into windows programming and OS level stuff, but i've heard of bumping the priority of a thread, all the way up to THREAD_PRIORITY_TIME_CRITICAL is that possible with your program or any program? or is it still only IO PRIORITY that can be adjusted, and not thread cpu priority? I guess changing IO priority won't make much difference to CPU Usage, right?
  • dyasta
    dyasta about 11 years
    Yes. Both can be set, and persist. Many other things can also be set, or dynamically changed based on rules (e.g. CPU affinity). I/O priority is distinct from CPU priority, right.
  • Daniel Mošmondor
    Daniel Mošmondor over 10 years
    Why does it look like something Russinovich did?
  • RomanSt
    RomanSt over 10 years
    @DanielMošmondor Maybe it was inspired by ProcExp and its limitations? I personally switched because ProcExp showed completely wrong CPU usage on my laptop after version 14.
  • Daniel Mošmondor
    Daniel Mošmondor over 10 years
    Not only that, ProcExp was also able to BSOD my comp, etc. Is it free?
  • RomanSt
    RomanSt over 10 years
    @DanielMošmondor Yes, moreover it actually seems to do more than ProcExp in every way. Slightly different UI but very capable indeed.
  • Cees Timmerman
    Cees Timmerman almost 10 years
    That's not "a ready-made tool to do this on third-party software."
  • jftuga
    jftuga over 9 years
    I just noticed you don't allow it to change a process to a High priority on Server 2012R2.
  • dyasta
    dyasta almost 8 years
    Sorry, I think the question may have been edited, as clearly I was answering from a programmatic side (not edited). Process Lasso is a 'ready-made tool to do this on third-party software'. See bitsum.com
  • Stijn de Witt
    Stijn de Witt almost 7 years
    Sounds like a great app. Got a link?
  • Mike Mounier
    Mike Mounier almost 7 years
    If you mean PRIO, it's available from a number of different content aggregators (like cnet), but directly from the developer's website would be prnwatch.com/prio