I would like to change the way the following script out puts the information. Curenntly it does it to a generic HTM file, but what I would like to do is make it output to the next column in a specific Excel document.
Can anyone let me know what I need to change to make this happen.
Thanks
strComputer = "." Set objExplorer = WScript.CreateObject("InternetExplorer.Application") objExplorer.Navigate "about:blank" objExplorer.ToolBar = 0 objExplorer.StatusBar = 0 objExplorer.Visible = 1 Set objFSO = CreateObject("Scripting.FileSystemObject") objStartFolder = inputbox("Please input the directory you wish to display") Set objFolder = objFSO.GetFolder(objStartFolder) Set colFiles = objFolder.Files For Each objFile in colFiles Wscript.Echo objFile.Name strHTML = strHTML & objFile.Name & "<BR>" Next