Skip to content

Instantly share code, notes, and snippets.

View brianhassel's full-sized avatar

brianhassel

  • ExpenseWatch
View GitHub Profile
@brianhassel
brianhassel / PreventSleep.cs
Last active December 19, 2023 09:16
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);
}