I have a vbscript file A that will call another vbscript file B. File B requires arguments and it is located in the same folder with file A.
The code works like this:
File A.vbs is located in C:\temp
In File A, call C:\temp\B.vbs
Wherever folder I put these vbs files, as long as they are on the same folder, file A should call file B without changing the code. How can I do this in VBScript?