send.bat

@echo off
set /p mood=How are you:  
call Receive.bat %mood% "thats good"

receive.bat

@echo off
echo %1
echo %2
pause