我需要创建一个.vbs文件,将字符串“Hello World”键入到记事本等程序中。有谁知道怎么做?
答案 0 :(得分:3)
您将使用SendKeys方法。这是参考。
http://social.technet.microsoft.com/wiki/contents/articles/5169.vbscript-sendkeys-method.aspx
要打开Windows记事本,您需要从vbscript执行从Shell命令运行。您可以在任何地方查看。
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "%windir%\notepad.exe"
WshShell.AppActivate "Notepad"
WshShell.SendKeys "Hello World"
答案 1 :(得分:1)
输入记事本:
msgbox("Hello World")
然后将文件保存为您想要的任何内容并打开。它应该工作。