Search found 1 match

by rnara
05 Oct 2016 10:11
Forum: DOS Batch Forum
Topic: Equal operator is not working in a bat script
Replies: 3
Views: 3605

Equal operator is not working in a bat script

Hi, I have the following code in a bat script. It is always going to the "applied" label even though the numbers are not equal. Please let me know if I'm doing anything wrong. Thanks! @echo off set KNO=3176483 if %KNO% ==3176493 goto applied :applied echo ############################# echo...