Initial commit with translated description

This commit is contained in:
2026-03-29 14:37:38 +08:00
commit 94cd04ef62
4 changed files with 135 additions and 0 deletions

13
keyboard_control.ps1.txt Normal file
View File

@@ -0,0 +1,13 @@
param (
[string]$Text,
[string]$Key
)
Add-Type -AssemblyName System.Windows.Forms
if ($Text) {
[System.Windows.Forms.SendKeys]::SendWait($Text)
}
if ($Key) {
[System.Windows.Forms.SendKeys]::SendWait($Key)
}