Questions tagged [vbscript]
The vbscript tag has no summary.
2 questions
4
votes
4
answers
1k
views
Is it the standard accepted practice to install software using VBScript? [closed]
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 ...
8
votes
2
answers
3k
views
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 ...