Can i somehow print texe in .vbs file to cmd console? I tried that:
Dim StdOut : Set StdOut = CreateObject("Scripting.FileSystemObject").GetStandardStream(1)
WScript.Echo "Hello"
WScript.StdOut.Write "Hello"
WScript.StdOut.WriteLine "Hello"
Stdout.WriteLine "Hello"
Stdout.Write "Hello"
It show an error when i run it with cmd also without.
see_an_error
Can somebody help me?
Thanks for answare.