vbscript output to console
问题 This question was migrated from Server Fault because it can be answered on Stack Overflow. Migrated 8 years ago . What is the command or the quickest way to output results to console using vbscript? 回答1: You mean: Wscript.Echo "Like this?" If you run that under wscript.exe (the default handler for the .vbs extension, so what you'll get if you double-click the script) you'll get a "MessageBox" dialog with your text in it. If you run that under cscript.exe you'll get output in your console