Set CPU Process Priority for Apps in Windows 11/10 PC – Boosting Your PC’s Power

Manage running processes in Windows 10 to help make your computer run more smoothly.

Ever wondered why some apps run smoother than others on your computer? It’s all about the priority they have for using the computer’s brainpower, called the CPU priority. If a task has a higher priority, it gets more of the computer’s attention, making it work better.

You can also manually set priority for processes to run with a Real-Time, High, Above Normal, Normal, Below Normal, or Low priority level

Windows 11 & 10 OS lets you decide how much priority each task should get. Whether you want a task to be a top priority or just chill in the background, you have the power to choose. But there’s a catch – these changes don’t stick around forever. Once you close an app or restart your computer, it goes back to its usual way of doing things.

In this guide, we’ll walk you through how to set CPU process priority for any app in a Windows 11/10 PC.

How to Set CPU Process Priority for Applications in Windows 11 & 10?

Setting processes to a realtime priority level is not advisable because it may decrease your system’s performance by depriving lower priority processes of the resources they require.

If you are already aware of changing priority in the task manager of Windows 11, you are almost halfway to knowing your PC better, because there is yet another different approach that you might not know about yet.

There is a term called CPU affinity that you might or might not have noticed on your computer yet. But, as you might already know, a computer processor consists of cores. Like quad-core CPUs have 4 cores, dual-core CPUs have 2 cores, etc. CPU affinity refers to the number of cores that you have assigned to a particular task or process.

Let us take an example of a file CompatTelRunner.exe which is an integral part of your Windows System and is responsible for keeping your computer up to date. Hence, if you assign one whole core to this process, it means you have assigned almost 25% of the CPU power to a single process (in the case of a quad-core processor).

Also, make sure you know the process very well. If you don’t know much about the process then first research it and only then give priority.

Method 1. How to Assign a Specific CPU Core to a Program (via Task Manager)?

How to allocate more CPU to a program in Windows 10

Method 2. How To Change the Priority of Running Process in PowerShell

 Get-WmiObject Win32_process -filter 'name = "ProcessName"' | foreach-object { $_.SetPriority(PriorityLevelID) }
Priority Level IDPriority Level Name
256Realtime
128High
32768Above normal
32Normal
16384Below normal
64Low
How To Change the Priority of Running Process in PowerShell

Method 3. How To Change Priority of Running Process in Command Prompt

wmic process where name="ProcessName" CALL setpriority "PriorityLevelName"

OR
wmic process where name="ProcessName" CALL setpriority PriorityLevelID
Priority Level IDPriority Level Name
256Realtime
128High
32768Above normal
32Normal
16384Below normal
64Low
Set priority ID command
Set priority ID command

How to Set Priority for High CPU Usage Processes

This is the second and most traditional way to change process priority in Windows 11 as most of the work is handled by the system itself. There are usually six priority levels offered by the Windows system such as:

Realtime
High
Above Normal
Normal
Below Normal
Low

So, you can choose from these options as you like. For instance, you could choose high priority for games, Above Normal priority for software like WinRAR, etc. All the rest of the work will be handled by Windows on its own most efficiently and smartly as possible.

Hence, if you want to know how to set process priority in Windows 10 and set a program to high priority, these are the simplest steps that will help you do that.

How to Change Process Priority in Windows 10

This was all about how to set priority in Windows 11 to make your computer work more efficiently and assign resources to the programs that need them. We hope this guide has pretty much cleared all your doubts about it.

Using these above-mentioned steps, you can do the same to any app you want, but don’t alter any settings related to system processes to be on the safe side. That’s it for this article, in case of any further queries, feel free to ask us in the comments section below.