Files
wwb-daniel_windows-ui-autom…/keyboard_control.ps1.txt

14 lines
226 B
Plaintext
Raw Permalink Normal View History

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)
}