Hi all, Thanks for the replies. Much appreciated. findstr /i "test" "c:\test\Test.txt" if errorlevel 1 (start "" x.exe) else start "" y.exe - This batch file seems to get stuck on a loop of constantly running findstr /i "test" "c:\test\Test.txt&...
Hi all, Not particularly advanced in batch file scripting but just trying my hand. Having a bit of an issue with the following script: Echo on findstr /i "test" "c:\test\Test.txt" || if %errorlevel% EQU 1 goto notfound findstr /i "test" "c:\test\Test.txt" || i...