How can you get the STDIN input for a WSH script using cscript.exe?

I am trying to use WSH instead of DOS / Batch files.

Thanks for entering!

+4
source share
1 answer

Use WScript.StdIn

var input=WScript.StdIn.ReadLine(); 
+5
source

All Articles