Skip to content

Instantly share code, notes, and snippets.

View TiagoSRodrigues's full-sized avatar
🏠
Working from home

Tiago Rodrigues TiagoSRodrigues

🏠
Working from home
View GitHub Profile
@TiagoSRodrigues
TiagoSRodrigues / sleep.ps1
Created February 27, 2024 22:56
Windows Powershell sleep
Start-Sleep -Seconds 4800; Add-Type -TypeDefinition @"
using System;
using System.Runtime.InteropServices;
public class PInvoke {
[DllImport("powrprof.dll", SetLastError = true)]
public static extern bool SetSuspendState(bool hibernate, bool forceCritical, bool disableWakeEvent);
}
"@; [PInvoke]::SetSuspendState($false, $false, $false)