Tengo este script guardado en "test.vbs":
Set FSO = CreateObject("Scripting.FileSystemObject")
Set File = FSO.OpenTextFile(workFolder &"\test.txt", 2, True)
File.Write "testing"
File.Close
Set File = Nothing
Set FSO = Nothing
Set workFolder = Nothing
Cuando ejecuto el script, quiero pasar el valor de la variable "workFolder".
¿Cómo puedo hacer esto? ¿Puedo hacerlo? ¿Algo como "cscript test.vbs workFolder: 'C: \ temp \'" quizás?
Pregunta adicional: ¿Es necesario limpiar la variable pasada con "Set workFolder = Nothing" o VBSCript lo hace automáticamente cuando termina? ¿Quizás "Set File = Nothing" y "Set FSO = Nothing" también sean innecesarios? Por favor, avíseme si conoce la respuesta a ambas preguntas.