我们应该使用 CScript.exe 还是 WScript.exe 来运行 .vbs 文件?

发布于 2024-11-03 23:07:44 字数 79 浏览 0 评论 0原文

VBScript (.vbs) 文件可以使用 cscript.exe 或 wscript.exe 运行。

这两个选项有什么区别?

VBScript (.vbs) files can be run using either cscript.exe or wscript.exe.

What's the difference between these two options?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北渚 2024-11-10 23:07:44

一个主要区别是 cscript 在控制台中运行,而 wscript 则不然。

如果您想要类似控制台的输出,请使用cscript。在该模式下,打印将导致输出到控制台。 wscript 中的相同打印将其输出发送到对话框:

wscript.echo "hello"

One major difference is that cscript runs within a console, wscript does not.

If you want console-like output, use cscript. In that mode, printing will result in output to the console. That same printing in wscript send its output to dialog boxes:

wscript.echo "hello"
給妳壹絲溫柔 2024-11-10 23:07:44

使用 cscript,它会在 cmd 窗口中显示信息,这不会停止脚本。使用 Hscript 时会弹出一个信息,该信息会停止脚本

With cscript, it displays the info in a cmd window, which will not stop the script. while using Hscript will get a info pop up which halts the script

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文