I have been trying to convert an .xls
file to a .txt
file. My file has Japanese characters so I need to convert into a unicode but have not found luck.
I have used the following code as of now :
Sample DELOIP.BAT :
REM INTERNAL USE ONLY
mkdir c:\temp
cd c:\temp
cd "C:\Users\Public\Documents"
REM Opening employee master
cmd /u /c type DSS_employee_master.xls>DSS_employee_master.txt
exit
cd c:\temp
But this does not work.
Any help in this is welcome.
Thanks