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
you can use %~1 instead of %1
e.g a test.bat with :
echo %~1
then a call to test "abc de" will display :
test "abc de"
abc de