Yes, you can control Power Throttling in Windows 11. It's adjustable per app right now, and turned off system-wide on Pro, Enterprise, and Education editions through Group Policy. Home users can get the same result with a registry tweak. The catch: none of these settings override a hot laptop, an underpowered charger, or an OEM's firmware limits. Before you touch a single setting, open Task Manager and confirm what's actually happening.
TL;DR:
- Power throttling can be controlled per app with
powercfgor system-wide via Group Policy and registry edits, but these do not bypass hardware thermal or firmware limits.- Confirm whether performance drops are due to Windows software throttling or hardware thermal protection by monitoring core temperatures, clock speeds, and core parking status.
- Exempt specific applications from power throttling using individual
powercfgcommands or by adjusting background app permissions for store apps to improve sustained performance.- Setting the power mode to Best Performance often resolves throttling issues on desktops without needing registry or policy changes.
- Hardware protections like overheating and firmware restrictions will override software settings, and fixing those requires physical maintenance or firmware updates.
Table of Contents
- How to Tell If Windows or Your Hardware Is Throttling You
- Fixing Power Throttling for One App at a Time
- Turning Off Power Throttling System-Wide
- Core Parking and Processor Settings: CPMaxCores Explained
- When Windows Settings Can't Fix It: Thermal and Hardware Limits
- The Safest Workflow: Diagnose First, Change Second
- What I'd Actually Do Before Touching the Registry
- A Diagnostic-First Alternative to Manual Registry Edits
- Where to Verify These Steps
- Sources
- FAQ
How to Tell If Windows or Your Hardware Is Throttling You
Power throttling in Windows 11 isn't always the culprit when a game stutters or an app lags. Sometimes it's the CPU protecting itself from heat, and no software setting will fix that.
Start in Task Manager. Press Ctrl+Shift+Esc, go to the Details tab, right click any column header, and add Power Throttling. Processes marked "Enabled" are being deliberately slowed by Windows. You'll also spot a small green leaf icon next to certain process names in the Processes tab. That's Efficiency Mode, a related but separate feature that caps a process's priority and lets other cores handle real work.
For a deeper look, Resource Monitor (type resmon into the Start menu) shows which cores are parked and which are active under load. Performance Monitor adds frequency counters if you want to track clock speed drops in real time.
Here's the diagnostic split that matters:
- Software throttling: low clock speeds, normal temperatures, and it only happens to background apps, not the one you're actively using.
- Thermal or power throttling: high package temperatures, sudden frequency drops under sustained load, and it happens whether the app is foreground or background.
Test the same task on AC power and then on battery. If performance recovers substantially on AC, Windows 11 battery performance settings, not heat, are likely the cause.
Pro Tip: Run the same benchmark or game session twice, once on Best Performance power mode and once on Balanced. If the numbers barely move, your bottleneck is thermal or power delivery, not software throttling.
Fixing Power Throttling for One App at a Time
Most people don't need a system-wide change. They need one app, usually a video encoder, a VM host, or a compiler, to stop getting deprioritized in the background. Here's the order of operations that actually works.
- Turn off Efficiency Mode for the session. Right click the process in Task Manager and select "Efficiency Mode" to toggle it off. This works immediately, but it resets the moment you close the app or restart the PC.
- Make the fix persistent with powercfg. Open Command Prompt as administrator and run:
powercfg /powerthrottling disable /path "C:\path\to\app.exe"This tells Windows to exempt that executable from Power Throttling permanently, not just for the current session. - Verify the exemption took. Run
powercfg /powerthrottling listto see every currently exempted executable. If your app isn't listed, the path was wrong or the command didn't run elevated. - For Microsoft Store apps, go to Settings > Apps > Installed apps, click the three dots next to the app, choose Advanced options, and set "Background apps permissions" to Always. It's a softer fix than powercfg, but it works for sandboxed apps that don't respond to path-based exemptions.
Pro Tip: Don't exempt everything you see flagged in Task Manager. Most background processes are throttled on purpose to save power, and disable power throttling only for the two or three apps that genuinely need sustained CPU access. That guidance lines up with how Windows 11 handles background workloads by design, not by accident.
Turning Off Power Throttling System-Wide
If you've confirmed multiple apps are affected, or you just want to disable power throttling across the board on a desktop, there are three paths, ranked from safest to most permanent.
Start with Power mode. Go to Settings > System > Power & battery > Power mode and set it to Best Performance. This is fully reversible with one click and often solves the problem without touching Group Policy or the registry at all, a point echoed in Microsoft's own community threads on CPU throttling.
Group Policy (Pro, Enterprise, Education, IoT only). Open gpedit.msc, navigate to Computer Configuration > Administrative Templates > System > Power Management > Power Throttling Settings, and set "Turn off Power Throttling" to Enabled. This applies system-wide until you switch it back to Not Configured.
Registry (works on Home edition too). Navigate to HKLM\SOFTWARE\Policies\Microsoft\Windows\System and create a DWORD value named PowerThrottlingOff set to 1. If the System key doesn't exist under Policies, you'll need to create it first.
Before either change, export the registry key or create a restore point. Both take under a minute and give you a clean rollback path if something goes sideways.
| Method | Reversibility | Edition support |
|---|---|---|
| Power mode: Best Performance | One click, instant | All editions |
| Group Policy | Reset to Not Configured | Pro, Enterprise, Education, IoT |
| Registry (PowerThrottlingOff) | Delete key or set to — | All editions |
None of these bypass firmware thermal caps or an OEM's quiet mode. If your laptop still gets hot and slow after disabling power throttling, the limit is coming from somewhere Windows can't reach, and disabling power throttling entirely can shorten battery life and raise fan noise, so measure the trade off before committing to it long term.
Core Parking and Processor Settings: CPMaxCores Explained
Core parking is a different mechanism from frequency throttling. Instead of slowing a core down, Windows puts idle logical processors to sleep entirely to save power. The setting that controls this is called CPMaxCores, and it's expressed as a percentage of logical processors allowed to stay unparked, tied to Windows power provisioning keys like Common\Power\Policy\Settings\Processor\CPMaxCores.
Unparking cores can reduce latency spikes on workloads that need to spin up threads quickly, like competitive gaming. It's a workload-dependent fix, not a universal one. Core parking rarely triggers by default on modern Windows 11 systems running on AC power, so check before assuming this is your problem.
- Check parked cores in Resource Monitor under the CPU tab. Parked cores show a "Parked" label next to the core number.
- Read your current setting with
powercfg /qh scheme_current sub_processor, which lists the GUID-backed values including CPMinCores and CPMaxCores for both AC and DC (battery) profiles. - Raise the AC minimum with
powercfg /setacvalueindex scheme_current sub_processor CPMINCORES 100, then apply it withpowercfg /setactive scheme_current. Test on AC only. Desktops tolerate this far better than laptops running on battery.
| Setting | What it controls | Typical safe range |
|---|---|---|
| CPMinCores | Minimum percent of cores kept unparked | 0-100% (AC), lower on DC |
| CPMaxCores | Maximum percent of cores allowed unparked | Usually left at 100% |
One caveat worth knowing: on AMD's X3D chips and some hybrid Intel scheduling setups, forcing all cores unparked can actually hurt performance by spreading work away from the fastest cache-equipped cores. Independent bench testing shows unparking reduces worst-frame spikes more often than it improves average FPS, so run a frame-time test before and after, not just an average FPS check.
When Windows Settings Can't Fix It: Thermal and Hardware Limits
Sometimes the fix isn't a setting at all. Hardware-level protections sit above anything Windows controls, and no registry edit changes what your firmware allows.
Look for these signs that you're dealing with a physical limit, not Windows 11 power management:
- Package temperatures near or at TjMax (usually 95-100°C on modern CPUs) during sustained load.
- Frequency drops that happen even after you've disabled every Power Throttling and core-parking setting.
- Performance that changes noticeably depending on which charger or dock is plugged in.
- Fans staying quiet under heavy load when they should be ramping up, a sign of an OEM quiet-mode override.
Test with a clean boot to rule out a background driver forcing a battery-saver profile, and check your BIOS or UEFI for a "quiet" or "silent" mode that caps power delivery regardless of what Windows requests. Charger wattage matters too: an underpowered adapter throttles the CPU to protect the battery even while plugged in.
Hardware protections outrank software settings every time. Thermal trip points and OEM firmware limits take precedence over anything Windows exposes, so if you've made every software change on this list and the laptop still throttles, the next steps are physical: clean the fans, reapply thermal paste, or check with the manufacturer about a firmware update. For a deeper walkthrough of that side of the problem, see these fixes for thermal throttling.

The Safest Workflow: Diagnose First, Change Second
The order matters more than the individual fix. Start with Task Manager and resmon to confirm what's actually slowing you down. Apply a per-app exemption with powercfg before touching anything system-wide. Test the change on AC power. Save Group Policy or registry edits for desktops, or for laptops where you've accepted the battery trade-off.

This is exactly the kind of decision a performance optimization tool is built to support: it flags the specific process or setting causing a slowdown, explains what the change does before you approve it, and keeps a full undo path so a registry mistake doesn't turn into a weekend project. Keep a restore point active, write down every command you run, and revert immediately if fan noise or battery life gets worse.
What I'd Actually Do Before Touching the Registry
Disabling Power Throttling system-wide feels like the decisive move, but it's rarely the right first step. A laptop that's already running warm doesn't need more sustained power draw. It needs someone to check the thermal paste and the charger before it needs a registry key.
I'd exempt one or two specific apps with powercfg, test on AC, and stop there unless I had a real reason to go further. Desktops can absorb the battery-life question that laptops can't, so the system-wide options belong there far more often than on a laptop you're carrying around. Document what you change. You'll thank yourself the first time something needs to be undone.
— Ian
A Diagnostic-First Alternative to Manual Registry Edits
If the powercfg commands and registry paths above feel like more risk than you want to take on manually, that's the kind of gap specialized optimization tools aim to close. Instead of guessing which process needs an exemption or which registry key to edit, such tools scan your live hardware metrics, CPU, RAM, GPU, disk, uptime, and flag the real constraints behind a slowdown in plain language.

Every suggested change comes with an explanation of what it does and why, plus a one-click undo if the result isn't what you expected. That matters most on the exact kind of setting covered here: core parking, background app permissions, startup load, all reversible tweaks rather than blind automatic ones. If you'd rather see a specific recommendation than run a fourth powercfg command by hand, you can try Tempered and start with the free tier to see what it flags on your own machine before deciding whether to upgrade.
Where to Verify These Steps
For the exact command syntax and edition-specific behavior, Microsoft's own documentation on Quality of Service and processor scheduling is the authoritative source, alongside its core parking reference. Community threads on Superuser cover Home edition workarounds in more depth.
Sources
- Windows 11 is secretly throttling your apps - here's how to catch it
- Options for core parking: CPMaxCores
- Disable CPU Core Parking in Windows 11 - Tested | RigPolice
FAQ
How Do I Disable Power Throttling in Windows 11?
For a single app, run powercfg /powerthrottling disable /path "C:\path\to\app.exe" from an elevated Command Prompt. For system-wide control on Pro or Enterprise editions, use Group Policy's "Turn off Power Throttling" setting; on Home edition, create the PowerThrottlingOff registry value instead.
How Do I Get Rid of Power Limit Throttling?
Power limit throttling tied to hardware, not Windows, usually traces back to thermal limits, an underpowered charger, or an OEM quiet mode set in firmware. Check package temperatures in Task Manager or Resource Monitor first, since no Windows setting overrides a firmware-enforced power cap.
How Do I Tell If My PC Is Being Throttled?
Add the Power Throttling column in Task Manager's Details tab and watch for "Enabled" next to specific processes, plus the green leaf icon that marks Efficiency Mode. If clock speeds drop while temperatures stay normal, that's software throttling; if temperatures spike alongside the frequency drop, that points to a thermal limit instead.
How Do I Turn Off Throttling Entirely?
There's no single switch that turns off every form of throttling, because software throttling and hardware thermal limits are separate systems. You can turn off Windows-level Power Throttling through Group Policy or the registry, but a tool like Tempered can help confirm whether a remaining slowdown is software or hardware before you chase the wrong fix.
