Hello I have a batch file with content as follows
-------------------------------- CONTENT OF BATCH ----------------------
REM Coderun.bat
CodeX %1.TXT -strip -interlace -quality 85% %1.RPT
------------------------ END OF CONTENT -------------------------------
Aboce file Coderun.bat will take command line argunent (%1 i.e file ) with extension .TXT and process and deliver fcommand line argument (%1 i.e file).RPT
My problem is 85% is being interpretted by windows and giving error. 85% is fixed value we should pass. 85% should be not be used as 85th argument.
How do I code?
Thanks
-------------------------------- CONTENT OF BATCH ----------------------
REM Coderun.bat
CodeX %1.TXT -strip -interlace -quality 85% %1.RPT
------------------------ END OF CONTENT -------------------------------
Aboce file Coderun.bat will take command line argunent (%1 i.e file ) with extension .TXT and process and deliver fcommand line argument (%1 i.e file).RPT
My problem is 85% is being interpretted by windows and giving error. 85% is fixed value we should pass. 85% should be not be used as 85th argument.
How do I code?
Thanks