How do I create an excel file using VBScript? I searched the net but it just mentions opening an existing file.
VBScript
This is the extraction from the Internet
Here is a sample code
strFileName = "c:\test.xls" Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True Set objWorkbook = objExcel.Workbooks.Add() objWorkbook.SaveAs(strFileName) objExcel.Quit