VBScript 到记事本/写字板
我想将 VBScript 的输出实时写入记事本/写字板。最好的方法是什么?我知道 sendkeys,但它要求我解析特殊命令的输入。
I'd like to write output from VBScript to notepad/wordpad in realtime. What's the best way to do this? I'm aware of sendkeys, but it requires that I parse the input for special commands.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SendKeys 是实时写入第三方应用程序的唯一方法。为什么不使用 CScript 并写入标准输出呢?这就是它的目的。
SendKeys is the only method for writing to a third-party application in realtime. Why don't you use CScript and write to the standard output instead? That is what it is meant for.
试试这个
Try this