I have the following value for the choice parameter:
Name: Param
Choices:
- Test1
- Test2
- Test3
And an Execute windows batch command :
if (%Param% == "Test1") (
echo "1"
) else if (%Param% == "Test2") (
echo "2"
) else (
echo "3"
) ---is not working
if (%Param% == "Test1") (
echo "1"
) else ( if (%Param% == "Test2") (
echo "2") else (
echo "3"
)
) ---is not working