Name
ScriptEngineMajorVersion Function
Syntax
ScriptEngineMajorVersion( )
Return Value
A Long.
Description
Indicates the major version (1, 2, etc.) of the scripting language currently in use.
Rules at a Glance
The following table lists the versions of VBScript through 5.0, as well as the year in which they were released and the products with which they were initially released:
Version | Year | Product |
1.0 | 1996 | Internet Explorer 3.0 |
2.0 | 1997 | IIS 2.0 |
3.0 | 1998 | Internet Explorer 4.0, IIS 4.0, WSH 1.0, Outlook 98 |
4.0 | 1998 | Visual Studio 6.0 |
5.0 | 1999 | Internet Explorer 5.0 |
5.5 | 2001 | Internet Explorer 5.5 |
5.6 | 2002 | Microsoft Visual Studio .NET |
Programming Tips and Gotchas
The function is also implemented in the JScript script engine.
If your script requires some functionality available in a baseline version, ordinarily you want to make sure that the script is running on that version or a later version. For instance, if your script requires regular expression support, which became available only in VBScript Version 5, you would test for the version with a code fragment like:
If ScriptingEngineMajorVersion >= 5 Then
You do not want to test for equality, as in:
If ScriptingEngineMajorVersion = 5 Then
since that may leave your script unable to run on versions of VBScript later than Version 5.
VBA/VBScript Differences
This function is not supported in VBA.
See Also
ScriptEngineBuildVersion Function, ScriptEngineMinorVersion Function
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access