This should do the trick:
<% response.write "VBScript Engine: " response.write ScriptEngineMajorVersion response.write "." response.write ScriptEngineMinorVersion %> |
If you have direct access to the machine (either physically or through remote control software), you can do one of the following:
- Use Windows Scripting Host, if it is installed. Save the following script as .vbs and double-click it:
msgbox ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion
|
- Use client-side VBScript. Save the following as .html, and open with Internet Explorer:
<script language='vbscript'> msgbox ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion </script> |
- Finally, you could right-click vbscript.dll, which should be in %windir%\system32\, choose Properties, and look at the Version tab.