Use Const to declare a Constant. A constant is similar to a variable except that the value assigned to a constant doesn't change over the lifetime of the script. A good example of where a constant would be useful would be for static values like the hostname of a computer, a registry key, or even a folder path.
Const = "HOSTNAME" Const = 63
For more information about VBScript, check out our VBScript Training Videos