Created
December 6, 2013 22:41
-
-
Save gtallen1187/7833377 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if WScript.Arguments.Count < 2 Then | |
WScript.Echo "Error! Please specify the source path and the destination. Usage: XlsToCsv SourcePath.xls Destination.csv" | |
Wscript.Quit | |
End If | |
Dim oExcel | |
Set oExcel = CreateObject("Excel.Application") | |
Dim oBook | |
Set oBook = oExcel.Workbooks.Open(Wscript.Arguments.Item(0)) | |
oBook.SaveAs WScript.Arguments.Item(1), 6 | |
oBook.Close False | |
oExcel.Quit | |
WScript.Echo "Done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment