diff --git a/Microsoft/Automated_Keyboard_input.ps1 b/Microsoft/Automated_Keyboard_input.ps1 new file mode 100644 index 0000000..304e5a0 --- /dev/null +++ b/Microsoft/Automated_Keyboard_input.ps1 @@ -0,0 +1,9 @@ +# Script by Timur@0x01337.com +# Date: 2023-11-24 +while ($true) { + Add-Type -AssemblyName System.Windows.Forms + [System.Windows.Forms.SendKeys]::SendWait('.') + Start-Sleep -Seconds 60 +} + +