VBScript
This property defines the name of the persitent variable. The name is used to access/identify the persistent variable.
Depending on the used Scope the name can be already sufficient (SCOPE_USER or SCOPE_GLOBAL) or the Namespace property (SCOPE_NAMESPACE) must be given to uniquely identity the variable.
The given name may contain any character. It has a maximum length of 50 characters. Longer names will be truncated.
Dim MyVariable Set MyVariable = new PersistentVariable MyVariable.Name = "Welcome"
The above example defines a persistent variable with the name Welcome in the user scope (default scope) of the current script user.

By Tom Wellige