ver.js
Normally, cscript.exe uses the jscript.dll by default.
In order to use the jscript9.dll with cscript.exe,
the jscript9 engine must be used as a command line option.
Doing a search of the registry for jscript9.dll,
I found the ClsID;...
Read more
Code:
WScript.Echo( ScriptEngineMajorVersion() + "." +
ScriptEngineMinorVersion() + "." +
ScriptEngineBuildVersion());
Normally, cscript.exe uses the jscript.dll by default.
In order to use the jscript9.dll with cscript.exe,
the jscript9 engine must be used as a command line option.
Doing a search of the registry for jscript9.dll,
I found the ClsID;...
Read more