Windows 11’s default power plan prioritizes energy efficiency over raw performance, leaving significant speed potential untapped. By switching to High Performance mode and tweaking advanced settings, you can dramatically improve system responsiveness, gaming FPS, and application load times.
Understanding Windows 11 Power Plans
Windows 11 includes three default power plans:
- Balanced — Default setting; balances performance with power consumption
- Power Saver — Maximum energy efficiency; reduces performance significantly
- High Performance — Maximum performance; uses more power but delivers fastest speeds
For gaming, content creation, and productivity, High Performance is the clear choice.
Step 1: Switch to High Performance Mode
Via Settings (Easiest Method)
- Press Win + I to open Settings
- Go to System > Power & battery
- Click Power mode dropdown
- Select Best performance
- Confirm the switch—your system now runs at sustained high clock speeds
Via Control Panel (Alternative)
- Press Win + R, type
control, and press Enter - Go to Power Options
- Click “Show additional plans” to reveal more options
- Select “High performance”
- This is now your active power plan
Via Command Line (PowerShell)
Open PowerShell as Administrator and run:
powercfg /list
powercfg /setactive 8c5e7fda-e8bf-45a6-a6cc-4b3c5b93c220
The second line activates High Performance mode directly.
Step 2: Disable CPU Parking
CPU parking reduces active cores under light load. When parking is enabled, some cores become unavailable even during gaming, causing stutter. Disable it:
# Run as Administrator
powercfg -setacive scheme_current
powercfg -change monitor-timeout-ac 20
powercfg -change monitor-timeout-dc 5
powercfg /powersettingdataindex scheme_current sub_processor PARKINGSTATE 0
powercfg /powersettingdataindex scheme_current sub_processor PARKINGSTATE 0 /ac 0
powercfg /powersettingdataindex scheme_current sub_processor PARKINGSTATE 0 /dc 0
powercfg /s scheme_current
Or manually:
- Open Control Panel > Power Options > High Performance > Change Plan Settings
- Click “Change advanced power settings”
- Expand Processor power management > Processor parking minimum cores
- Set to 100% for both AC and DC (battery)
Step 3: Maximize Clock Speed
Prevent Windows from throttling CPU frequency:
- In Advanced Power Settings, locate Processor power management > Minimum processor state
- Set to 100% (both AC and DC)
- Expand Maximum processor state
- Set to 100% to ensure your CPU runs at full rated speed
Step 4: Disable C-State Efficiency
C-states are CPU power-saving states that reduce frequency at idle. Disabling them ensures instant performance response:
- In Advanced Power Settings, locate Processor power management > Processor performance boost
- Set to Enabled (both AC and DC)
- Locate Allow throttle states
- Set to Disabled
Step 5: Optimize System Cooling Policy
- In Advanced Power Settings, expand Processor power management
- Find System cooling policy
- Set to Active (AC) to allow aggressive fan ramping when needed
Step 6: Disable USB Selective Suspend
USB Selective Suspend powers down USB ports to save power, causing mouse/keyboard lag:
- In Advanced Power Settings, expand USB settings > USB selective suspend setting
- Set to Disabled (both AC and DC)
Step 7: Disable Hard Disk Power Down
Drives spinning down cause application lag when accessing files:
- In Advanced Power Settings, expand Hard disk > Turn off hard disk after
- Set both AC and DC to 0 (never turn off)
- If using an SSD, this is less critical but still recommended
Step 8: Disable PCI-E Link State Power Management
PCIe devices may reduce link speed in low-power states:
- In Advanced Power Settings, expand PCI Express > Link State Power Management
- Set to Off (both AC and DC)
Verification: Confirm Settings Applied
Check current power settings with:
powercfg /query
This displays your active scheme and all current settings. Verify:
- High Performance scheme is active
- Minimum processor state: 100%
- Maximum processor state: 100%
- Processor parking: 0%
- System cooling: Active
Real-World Performance Impact
After optimizing:
- Gaming FPS increases 5-20% depending on CPU bottleneck intensity
- Application launch times drop 10-30%
- System responsiveness improves noticeably in multitasking
- Power consumption increases 10-15% (trade-off)
For Laptops: Battery Considerations
High Performance mode drains battery significantly. On laptops:
- Keep Balanced mode as default
- Switch to High Performance only when plugged in
- Use battery profiles in BIOS/UEFI if available
- Consider setting Sleep timeout to 10 minutes when unplugged
Backup and Reset Power Plan
Save your optimized scheme:
powercfg /export C:\Users\YourUsername\Documents\HighPerf.pow
Restore it anytime with:
powercfg /import C:\Users\YourUsername\Documents\HighPerf.pow
To revert to defaults:
powercfg /restoredefaultschemes
Advanced: Create Custom Power Plan
For maximum control, create a custom plan:
powercfg /create "Custom Performance" /scheme_guid scheme_current
powercfg /setactive "Custom Performance"
Then apply individual settings from Step 2-8 to this custom plan.
Conclusion
Optimizing Windows 11’s power plan for performance is straightforward and delivers measurable improvements. High Performance mode, combined with disabled CPU parking and throttling, ensures your system runs at peak speed. For gaming and demanding workloads, the slight increase in power consumption is a worthwhile trade-off for substantially better performance.
Apply these settings today and notice the difference in responsiveness, FPS, and application speed immediately.