I'd like to know if everything is fine since I have the value "H1" not working in this set
set /p LL1=
IF "%LL1%" == "1" (
goto :LL1
) ELSE (
IF "%LL1%" == "EN" (
goto :LL1
) ELSE (
goto :LLERR
IF "%LL1%" == "H1" (
goto :LLH
) ELSE (
IF "%LL1%" == " " (
goto :LLERR
) ELSE (
IF "%LL1%" == "" (
goto :LLERR
) ELSE (
goto :LLERR
)
)
)
)
)
1 / EN input works, H1 doesn't and space / void is blocked as intended , I am really lost on this one , got any idea ?
Thanks in advance.