I want to use a conditional in my batch file, so that it opens a program, but only if that program isn't already running. Very roughly, something like:
@echo off
::(Insert IF conditional here, if program is running, then exit, if not, then continue)
cd "C:\xampp"
start xampp-control.exe
exit
I'd be super appreciative of any idea. Thanks!