In batch file I have the command below:
WScript ABC.vbs
In ABC.vbs
:
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Echo "Hello"
When I run the batch file there is a pop-up message with the text "Hello". But what I want is showing the message "Hello" in the Command Prompt window like I do the right click on ABC.vbs
and then select "Open with command prompt".