I'm having one file start another file with check parameters to prevent the second file from being opened with out running the first but even when i run the the first the second still comes up withe the same error message
the start command
start test2.bat %CD% %key1% 1234 %key2% 5678 %key3% 9012 %key4% 3456 i like cheese
check code
IF not "%3"=="1234" goto error1
IF not "%5"=="5678" goto error1
IF not "%7"=="9012" goto error1
IF not "%9"=="3456" goto error1
IF not "%10"=="1" goto error1
IF not "%11"=="like" goto error1
IF not "%12"=="cheese" goto error1
