This example shows how to pass variables into the batch file
@echo off
echo this shows how to pass a variable into the batch file
echo call the batch file with values after the batch file name
echo in this example you will use the variable to create a folder
echo there can be more than 1 variable. The variables are named
echo %0
echo %1
echo %2
echo.
echo to show a %% value use %%%%
echo %%0 is the command to run, %%1,%%2 etc is the variables after.
echo the %% values range from %%0 to %%9
rem echo. adds a new line
echo.
echo eg. call BatchFileVariables \aFolder \anotherFolder
echo this will create 2 folders
echo \aFolder
echo \anotherFolder
echo.
md %1
md %2