WshEnvironment Object
length Property
Method: WshEnvironment.Count
object.
Count
()
The
Count
method returns a Long value which is the number of items in the collection.
The following JScript code uses the
Count
method to report the number of system environment variables currently defined.
Code:
Set objShell = WScript.CreateObject("WScript.Shell")
Set objSysEnv = objShell.Environment("SYSTEM")
WScript.Echo("There are", objSysEnv.Count(), "System environment variables.")
Output:
There are 14 System environment variables.
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information