인수를 VBScript (cscript로 시작된 VBS 파일)에 전달할 수 있습니까?
이 스크립트는 "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 : …