LISTING 3: Code That Creates Objects BEGIN COMMENT ‘ The following statement uses WSH’s CreateObject method to ‘ create an instance of the FileSystemObject object: END COMMENT Set objFSO1 = WScript.CreateObject("Scripting.FileSystemObject") BEGIN COMMENT ‘ The following statement uses VBScript’s CreateObject function to ‘ create an instance of the FileSystemObject object: END COMMENT Set objFSO2 = CreateObject("Scripting.FileSystemObject")