How do I make it so that if a file with the same name already exists, it will be quietly overwritten?
Dim oExcel
Dim oBook
Set oExcel = CreateObject("Excel.Application")
Set oBook = oExcel.Workbooks.Open(Wscript.Arguments.Item(0))
'What options to add?
oBook.SaveAs "out.csv", 6
oBook.Close False
oExcel.Quit