Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个杀死进程的 vbs 脚本。这个脚本提供了一个 pid 作为参数。我想从一个期望脚本中生成这个脚本。但是当我写:
spawn KillProcess.vbs pid_to_kill
我收到错误消息:“没有这样的文件或目录”。顺便说一句,我是新手:)
但我做错了什么?
vbs 脚本与期望脚本位于同一文件夹中。
您可能必须使用以下命令启动 VBS 程序cscript:
cscript
spawn cscript KillProcess.vbs $pid_to_kill
http://ss64.com/vb/cscript.html