VBScript
This property set the name of a namespace if the Scope if the persistent variable is set to SCOPE_NAMESPACE.
The given name may contain any characters. It has a maximum length of 128 characters. Longer strings will be truncated.
Dim MyVariable Set MyVariable = new PersistentVariable MyVariable.Name = "Welcome" MyVariable.Scope = SCOPE_NAMESPACE MyVariable.Namespace = "Support"
The above example defines a persistent variable Welcome in the namespace Support. All scripts defining the same namesapce will be able to access this variable.
Another persistent variable Welcome in a namespace Sales will not interfere.

By Tom Wellige