This is what I use in my scripts to force CSCRIPT
CMD window visible
If Instr(1, WScript.FullName, "CScript", vbTextCompare) = 0 Then
oShell.Run "cscript """ & WScript.ScriptFullName & """", 1, False
WScript.Quit
End If
I usually run this with the CMD window visible, but you can change...