I need to pass parameter line AB CD to a batch file from the command line. This parameter refer to a file name.
AB CD
If I use use AB CD the scr
what you can do is
>batch.bat "ab cd.txt"
When the parameters contain whitespace, you can enclose them in quotes.