如何在看不到 Microsoft 标头的情况下运行 WSH 脚本?
当从命令行运行 .vbs 脚本时,默认情况下它将显示 Microsoft 标头:
Microsoft (R) Windows Script Host Version 5.7
Copyright (C) Microsoft Corporation. All rights reserved.
如何禁用此功能?
When a .vbs script is run from the command line, it will by default show a Microsoft header:
Microsoft (R) Windows Script Host Version 5.7
Copyright (C) Microsoft Corporation. All rights reserved.
How can this be disabled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您的意思是使用
cscript
因为wscript
不显示任何内容。您可以使用cscript
的nologo
开关来阻止显示烦人的版权消息。例如:
I assume you mean with
cscript
sincewscript
doesn't show anything. You can use thenologo
switch ofcscript
to stop the annoying copyright message from being displayed.For example:
回答我自己的问题...
您可以使用
/nologo
选项来做到这一点,例如Answering my own question...
You can do this with the
/nologo
option, e.g.