Tutorial: Create a simple Visual Basic (VB) console app
learn.microsoft.com › en-us › visualstudioSep 1, 2022 · This article shows how you'll use Visual Studio to create a simple Visual Basic application, a console app. In this app, you ask the user for their name, and then display it back with the current time. You'll also explore some features of the Visual Studio integrated development environment (IDE), including source control in Git. Visual Basic is a type-safe programming language that's designed to be easy to learn.
VBscript write to command console - Microsoft Q&A
learn.microsoft.com › en-us › answersApr 14, 2021 · Windows has 2 VB script processors, WScript.exe (GUI) and CScript.exe (console). To get the output to display in a command prompt you have to use cscript.exe. cscript.exe C:\MyScriptsFolder\MyScript.vbs. If you just type in the script name Windows will use the default which is wscript.exe. You can change that from an admin command prompt.