我需要从键盘发送按键,而无需手动/物理触摸键盘。 我不想使用SendKeys或使用AutoHotKey等来模拟按键事件。我需要信号来自键盘的USB线。
这个脚本,
' Open notepad
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad", 9
' Give Notepad time to load
WScript.Sleep 500
'press some letters and capslock
WshShell.SendKeys "Hello World!"
WshShell.SendKeys "{CAPSLOCK}"
键入消息,Hello World!,并“按下”大写锁定键,导致大写锁定点亮(或根据起始位置关闭)。所以我假设我能够向键盘发送信号。如何将信号发回?