Skip to content

Instantly share code, notes, and snippets.

@thevickypedia
Last active July 23, 2021 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thevickypedia/7a28ab96399175deba31fe6ba3d56d36 to your computer and use it in GitHub Desktop.
Save thevickypedia/7a28ab96399175deba31fe6ba3d56d36 to your computer and use it in GitHub Desktop.
Keep it busy for Windows OS
cls
$currentTime = Get-Date -format "MMM, dd yyyy hh:mm:ss tt"
echo "StartTime: $currentTime`n`n"
echo "I will keep the system busy! Go do your thing!`n`t- Vignesh Rao`n`n"
echo "Questions?`n"
echo "https://vigneshrao.com/contact"
while (1) {
$stopper = New-Object -ComObject WScript.Shell
$stopper.SendKeys('{F15}')
Start-Sleep -seconds 59
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment