Add files via upload

This commit is contained in:
Adam R Grey 2021-07-04 06:32:18 -04:00 committed by GitHub
parent 876b0d5f53
commit 0f36bf909d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
save every 5.ps1 Normal file
View File

@ -0,0 +1,8 @@
Add-Type -AssemblyName System.Windows.Forms
write-host "hi I'mma save"
while($true){
start-sleep 300;
[System.Windows.Forms.SendKeys]::SendWait("^s")
write-host "save keys sent, $(get-date)"
}