Skip to content

Instantly share code, notes, and snippets.

@brianhassel
brianhassel / PreventSleep.cs
Last active March 13, 2026 22:56
Prevent Computer Sleep in C#
internal static class NativeMethods {
public static void PreventSleep() {
SetThreadExecutionState(ExecutionState.EsContinuous | ExecutionState.EsSystemRequired);
}
public static void AllowSleep() {
SetThreadExecutionState(ExecutionState.EsContinuous);
}