Questions tagged [vbscript]

2 questions
8
votes
2 answers

Why does VBA / VBScript require "Set" prefix

When I set a variable to an object in VBA / VBScript, I always need to prefix the statement with "Set" such as: Set Dict = CreateObject("Scripting.Dictionary") If I set a variable to a primitive or array value, I have to omit the "Set" such as: Num…
neelsg
  • 473
  • 5
  • 13
4
votes
4 answers

Is it the standard accepted practice to install software using VBScript?

Consider the following requirements Windows software which communicates with a web application using basic authentication The software is an MSI package The software requires a token to be placed in order to authenticate itself to the web…