Folks,
I am trying to execute some functionality if the ov version is one of 3 possible values.
the following %if statement fails on the third condition (AS5.6). i.e. if the Os is either As5.3 or AS5.4 then the %if statement is executed correctly. the third condition is always ignored even when the os version is AS5.6.
Is there some kind of limit on the number of conditions in an %if statement.
Code:%if "%_os_ver" == "AS5.3" || "%_os_ver" == "AS5.4" || "%_os_ver" == "AS5.6"