batch-file – 在文件开头跳过Microsoft的消息

前端之家收集整理的这篇文章主要介绍了batch-file – 在文件开头跳过Microsoft的消息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从bat文件运行vbs脚本时,有时会在头文件输出文件中写入
Microsoft (R) Windows Script Host Version 5.8 
Copyright (C) Microsoft Corporation 1996-2001. Tous droits r‚serv‚s
example: cscript myvbs.vbs file.txt >result.txt

我知道在输出文件上做了2个以上,我可以忽略它.毫无疑问,我想知道是否有可能以不同的方式做到这一点.

先感谢您

尝试// Nologo Prevent徽标显示:执行时不会显示横幅
C:\>cscript
Microsoft (R) Windows Script Host Version 5.8
Copyright (C) Microsoft Corporation. All rights reserved.

Usage: CScript scriptname.extension [option...] [arguments...]

Options:
 //B         Batch mode: Suppresses script errors and prompts from displaying
 //D         Enable Active Debugging
 //E:engine  Use engine for executing script
 //H:CScript Changes the default script host to CScript.exe
 //H:WScript Changes the default script host to WScript.exe (default)
 //I         Interactive mode (default,opposite of //B)
 //Job:xxxx  Execute a WSF job
 //logo      Display logo (default)
 //Nologo    Prevent logo display: No banner will be shown at execution time
 //S         Save current command line options for this user
 //T:nn      Time out in seconds:  Maximum time a script is permitted to run
 //X         Execute script in debugger
 //U         Use Unicode for redirected I/O from the console
原文链接:https://www.f2er.com/windows/363512.html

猜你在找的Windows相关文章