powershell [System.Windows.Forms.SendKeys]::SendWait("{Enter}")
不熟悉 Powershell 的语法,暂时需要做一个这样的功能。
伸个爪,求教。
1
iamverylovely 2020-09-14 10:29:01 +08:00
```powershell
powershell -Command '[void] [System.Reflection.Assembly]::LoadWithPartialName(\"System.Windows.Forms\");[System.Windows.Forms.SendKeys]::SendWait(\"你似不似懒\")' ``` |
2
iamverylovely 2020-09-14 10:32:25 +08:00
|
3
Tumblr 2020-09-14 13:42:35 +08:00
从昨晚看到同在,还是没明白楼主的具体需求。
在提供的这一句来看,就是发送按键啊。 PowerShell 本身就是直接执行的,要么写脚本传递参数,要么在控制台上敲,要么集成到一个 GUI 里去并在 GUI 中监听和响应事件(按钮、按键等)。 |