I've tried a few things, from WScript.Echo "cls"
to crazy functions like the ones below I found on the internet.
Set CrlScrn = WScript.CreateObject("WScript.Shell")
CrlScrn.SendKeys "CLS + {ENTER}"
and
Set CrlScrn = WScript.CreateObject("WScript.Shell")
CrlScrn.Run "cmd echo /c cls"
Set CrlScrn = Nothing
Neither of these work.
I'm executing my vbs simply by running cscript myscript.vbs
so I can view output in the console. Any other ideas on how to clear the screen?