我将此脚本保存在“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
当我运行脚本时,我想传递“workFolder”变量的值。
我怎样才能做到这一点?我可以做吗?也许像“cscript test.vbs workFolder:'C:\temp\'”这样的东西?
奖励问题:是否有必要使用“Set workFolder = Nothing”清理传递的变量,或者 VBSCript 在终止时会自动执行此操作吗?也许“Set File = Nothing”和“Set FSO = Nothing”也是不必要的?如果您知道这两个问题的答案,请告诉我。