Answer» Dear All !!
Could anyone give me briefly idea about Cscript.
Thanks!CScript is the command line version of Windows Script Host (WSH). Actually among other subtle differences CScript allows access to the console STDIN and stdout devices and echoed OUTPUT is sent to the console. WScript is the GUI version of WSH, has no access to console stdin or stdout devices and echoed output is sent to a window.
CScript generally offers more control over your script and is used MAINLY for administrative and event monitoring scripts.
CScripts that run AMOK can be canceled at the command line with ctl-C. WScripts that run amok need to be terminated from the Windows Task Manager.Ok, Thanks n Regards, Jay
|