Windows batch command to ignore case sensitivity in variables
Read HELP IF
: the /I
switch, if specified, says to do case insensitive string compares. The /I
switch can also be used on the string1==string2 form
of IF.
So try IF /I %SSL%==F ...