Skip to content

Instantly share code, notes, and snippets.

@murshex
murshex / WindowsHelper.cs
Created December 31, 2021 07:13
Fix Windows 11 Timer Resolution
public static class WindowsHelper()
{
public static void FixTimerResolution()
{
var handle = Process.GetCurrentProcess().Handle;
var info = new PROCESS_POWER_THROTTLING_STATE
{
Version = PROCESS_POWER_THROTTLING_CURRENT_VERSION,
ControlMask = PROCESS_POWER_THROTTLING_IGNORE_TIMER_RESOLUTION,