4.1.1 Convert XML to Excel(XLS) using the command line
The following command shows you how to convert the XML file ‘sales.xml’ to an Excel spreadsheet ‘sales.xls’.
Exultcmd.exe -t XLS -f sales.xls sales.xml
If the file is large, you may want to turn off progress reporting using the ‘-q’ option to make the execution faster.
Exultcmd.exe -q -t XLS -f sales.xls sales.xml
The above command does not overwrite ‘sales.xls’ if it exists. To overwrite the output file if it exists, use the overwrite option (‘-w’).
Exultcmd.exe -w -t XLS -f sales.xls sales.xml

