The Name property is read only and returns the name of the WScript object (usually "Windows Script Host"). This is the default property of the WScript object.
WScript.Echo "Default property =",
WScript
WScript.Echo "Name property =", WScript.NameDefault property =
Windows Script Host
Name property = Windows Script
HostThis VBScript code illustrates the use of this property.