Microsoft’s most aggressive power plan has been sitting in Windows for years, but for the vast majority of users, enabling it would be a mistake. Introduced in 2018 alongside Windows 10 Pro for Workstations, the Ultimate Performance plan is a deliberately hidden profile that eliminates micro-latencies by keeping hardware components constantly spun up and ready. While it can squeeze out incremental gains in very specific server and workstation workloads, for laptops and gaming rigs it often delivers nothing but higher power bills, louder fans, and faster battery drain. Understanding what this plan actually changes, how to turn it on, and when to avoid it is essential for any Windows power user.
Why Microsoft Created Ultimate Performance
The plan first appeared as a differentiator for high-end machines. Microsoft observed that the power-saving logic built into modern CPUs, storage, and peripherals could introduce tiny delays—often a few milliseconds—when components transitioned between idle and active states. In continuous throughput workloads like video transcoding or gaming, those micro-delays are hidden by the sheer volume of work. But in latency-sensitive scenarios—think real-time financial trading, high-frequency I/O operations, or certain server roles—the cumulative effect of state transitions can become measurable.
Ultimate Performance is essentially a blanket override of these power-saving behaviors. It takes the High Performance profile and goes further: minimum processor states are locked to 100%, disk idle timers are disabled, PCI Express link-state power management is turned off, and wireless adapters are forced to maximum performance. In effect, the plan tells the hardware, “Stay awake; I’m going to need you at full tilt at any moment.” That guarantee of immediacy is why it’s hidden on most consumer devices—always-on power consumption makes no sense for battery-operated machines or systems with thermal constraints.
What the Plan Actually Changes
Under the hood, Ultimate Performance modifies a set of advanced power settings that most users never touch. The most impactful changes include:
- Processor power management: The minimum processor state is set to 100% on AC power, eliminating the deepest sleep states (C-states) and preventing the CPU from clocking down during brief idle periods. Maximum processor state is also pegged to 100%, but the real difference is the minimum—Balanced and even High Performance plans often allow idle clocks to drop significantly, while Ultimate Performance does not.
- Disk timeout and sleep: Hard disk idle timers are reduced to extremely short intervals or disabled entirely. On systems with mechanical drives, this prevents the spin-up latency that can add tens of milliseconds to the first I/O operation after an idle period. For SSDs, the effect is less dramatic but can still matter when aggressive NVMe power states are in play.
- PCI Express link-state power management: Set to “Off,” meaning the interconnects between the CPU, GPU, and storage controllers never negotiate lower-power link speeds. This avoids the re-training delays that occur when a device wakes from a low-power link state to full bandwidth.
- Wireless adapter settings: The Wi-Fi card is forced to “Maximum Performance,” which disables adaptive power scaling and keeps the radio at full transmit power and receive sensitivity.
- Peripheral and USB selective suspend: Suspend modes for devices like network adapters, USB controllers, and multimedia endpoints are turned off, so they never cycle into low-power states.
Collectively, these tweaks ensure that the system’s components are polled at maximum frequency and deliver their lowest possible latency at all times—at the cost of dramatically higher baseline power draw.
How to Enable the Hidden Power Plan
If you’re running a desktop with ample cooling and a workload that demands every last millisecond, enabling Ultimate Performance is straightforward. The plan is present in all modern Windows editions but hidden by default on machines that don’t meet Microsoft’s intended use criteria (typically, Pro for Workstations or server SKUs). To reveal it:
- Open an elevated Command Prompt, PowerShell, or Windows Terminal.
- Run the command:
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
This copies the pre-defined but hidden scheme into your list of available plans. - Open Control Panel > Hardware and Sound > Power Options. Under “Additional plans,” you should now see “Ultimate Performance.” Select it to activate immediately.
Alternatively, you can activate it directly via the command line with:
powercfg /setactive e9a42b02-d5df-448d-aa00-03f14749eb61
If the plan still refuses to appear, a registry tweak may be required. Machines that use Modern Standby (also known as S0 Low Power Idle) intentionally suppress alternate power plans because they rely on a unified system-state model. You can override this behavior by disabling the Always On, Always Connected (AOAC) flag:
reg add HKLM\System\CurrentControlSet\Control\Power /v PlatformAoAcOverride /t REG_DWORD /d 0
After setting this key to 0, reboot and re-run the duplication command. Exercise caution: this changes how Windows handles sleep and idle, and may prevent your system from entering true standby or delay instant-on functionality. On some Windows 11 builds, OEM firmware or driver quirks can still block the plan from surfacing even after these steps; in such cases, manually importing a .pow file or creating a custom plan with equivalent settings is the fallback.
Real-World Gains Are Narrow
Measurable performance improvements are limited to workloads where micro-latency is the primary bottleneck. Benchmarks that emphasize context-switching, small file I/O, or peripheral polling can show single-digit percentage gains. For instance, a server handling thousands of rapid database queries per second might shave off enough latency to matter. Similarly, professional audio interfaces or real-time data acquisition systems that depend on deterministic USB latency can benefit from the plan’s refusal to suspend devices.
But for everyday tasks and even most gaming, the difference is negligible. Modern game engines and GPU drivers aggressively manage power and clock speeds independently of the Windows power plan. Locking the CPU to a high C-state often provides no FPS improvement; in fact, by ramping up heat output during non-critical moments, it can trigger thermal throttling sooner when a sustained load hits. Multiple community tests have shown that moving from Balanced to Ultimate Performance yields zero measurable frame rate uplift in popular titles, while increasing idle temperature by 5–10 °C.
The Costs: Heat, Battery, and Component Stress
The plan’s name hints at what it asks in return: unlimited power draw. On a desktop with robust cooling, the energy bill is the most obvious penalty—a system idling at 100–200 W rather than 30–50 W adds up over months of 24/7 operation. For laptops, the consequences are more immediate and severe.
Laptop batteries are designed to handle periodic high discharge rates, but not continuous maximum draw. Running Ultimate Performance on battery (if you somehow bypassed the hidden status) can halve runtime and accelerate cell degradation. Even when plugged in, the plan forces the system to dissipate more heat, which shortens the lifespan of fans and can lead to uncomfortable hot spots on the chassis. On gear with marginal cooling, sustained high package power triggers thermal throttling that actually reduces peak performance below what a well-tuned Balanced plan would achieve. The risk of outright hardware damage is low with modern protection mechanisms, but the long-term stress on VRMs, capacitors, and solder joints is real—especially in small form-factor builds.
Troubleshooting Common Quirks
After enabling Ultimate Performance, a few persistent issues tend to surface in community forums. One common complaint is that Windows silently reverts to Balanced or a manufacturer’s custom plan after waking from sleep. This often traces to OEM power management utilities (Lenovo Vantage, Dell Power Manager, ASUS Armoury Crate) that aggressively police power profiles. To fix it, either configure the utility to respect the user’s choice or uninstall it if the manufacturer allows.
Another oddity is degraded Wi-Fi throughput. Because the plan disables power-saving on the wireless adapter, some driver stacks struggle to maintain high data rates and fall back to lower speeds. Toggling the adapter’s advanced “Wake on Magic Packet” or “Power Saving Mode” settings in Device Manager can resolve this, or you can selectively re-enable link-state power management for the PCI Express root port that hosts the Wi-Fi card while keeping other parts of the plan intact.
Windows 11 has been particularly inconsistent. The 2022 update (22H2) broke the duplication command on certain configurations, returning success but never showing the plan in the UI. The AOAC registry override worked on earlier builds, but later cumulative updates introduced checks that sometimes ignore the key. The most reliable workaround is to export a custom power plan with the Ultimate Performance settings from a machine where it works, then import the .pow file on the problematic PC using powercfg -import.
To completely remove the plan and return to defaults, just select a different profile in Power Options and then delete the unwanted scheme with:
powercfg -delete <GUID>
You can find the GUID by running powercfg /list.
Smarter Alternatives: Don’t Nuke Power Science, Tune It
Rather than throwing the power-saving baby out with the bathwater, power users can achieve similar low-latency behavior with far fewer trade-offs by selectively tuning a Balanced or High Performance plan. powercfg exposes dozens of fine-grained settings via the -setacvalueindex and -setdcvalueindex parameters. For example, raising the minimum processor state to 80% and setting the system cooling policy to “Active” can prevent deep C-state exit latencies without locking all cores to maximum frequency. Similarly, disabling disk idle timeout only for the specific drive that hosts a latency-sensitive database preserves power savings for bulk storage.
For gaming, a more effective tweak is to leave the Windows plan on Balanced and instead use the GPU control panel (NVIDIA Control Panel, AMD Adrenalin) to set the power management mode to “Prefer Maximum Performance” for specific titles. This gives the GPU the same always-ready behavior without affecting the CPU or storage.
Modern Windows also supports per-app power priorities via the Settings > System > Power & battery > Energy recommendations page (on Windows 11) and the older “Processor performance increase threshold” for individual programs. Combined with a custom .pow file that bumps only the critical few settings, you can build a profile that matches Ultimate Performance’s latency for your workload while shedding 90% of the idle power cost.
A Checklist for the Cautious Power User
Before flicking the switch, run through this short list:
- Stay plugged in: Do not run Ultimate Performance on battery, ever. If your laptop doesn’t expose the plan, that’s a feature, not a bug.
- Verify cooling: Monitor temperatures with HWInfo or Core Temp before and after. If idle temps jump over 10°C, your cooling solution is likely insufficient.
- Test with your actual workload: Use performance counters or built-in benchmarks to measure real gains. If you can’t tell the difference blindfolded, the plan adds nothing.
- Have a rollback plan: Know how to switch back to Balanced and delete the plan via
powercfg -delete. Save a system restore point if you’re touching the registry. - Consider a custom plan: Spend 10 minutes in the advanced power settings UI to dial in individual values. You may get 95% of the benefit with none of the downsides.
The Verdict: A Scalpel, Not a Sledgehammer
Ultimate Performance is a precision tool engineered for a niche audience—admins tuning rack-mounted servers, workstation users running real-time simulations, and a handful of professionals whose software budgets milliseconds. For the rest of us, it’s an educational feature at best: it reveals how much hidden overhead Windows’ power management carries, and how little that overhead matters in practice. The plan’s enduring value is that it pushes enthusiasts to learn about C-states, link power management, and thermal headroom—knowledge that leads to smarter, cooler, quieter PCs. Engage it intentionally, run your tests, and then put it back in the box. Your hardware and electricity bill will thank you.