vote up 4 vote down star
1

How can I check if an application is running from a batch (well cmd) file?

I need to not launch another instance if a program is already running. (I can't change the app to make it single instance only.)

Also the application could be running as any user.

flag

8 Answers

vote up 2 vote down check

Or, you could play with the various switches 'tasklist' (on the windows command shell) supports.

link|flag
Thanks for the suggestion. I'd already found the command when you posted this answer. I've created an answer with an example below. – Matt Lacey Oct 2 '08 at 13:51
vote up 0 vote down

ah...this was all messy...i made some mistakes, so i got rid of it

link|flag
vote up 1 vote down

Another possibility i came up with inspired by using grep is this

tasklist /FI "IMAGENAME eq myapp.exe" 2>NUL | find /I /N "myapp.exe">NUL
if "%ERRORLEVEL%"=="0" echo Programm is running

It doesn't need to save an extra file, so i prefer this method

link|flag
vote up 0 vote down

I use PV.exe from http://www.teamcti.com/pview/prcview.htm installed in Program Files\PV with a batch file like this:

@echo off
PATH=%PATH%;%PROGRAMFILES%\PV;%PROGRAMFILES%\YourProgram
PV.EXE YourProgram.exe >nul
if ERRORLEVEL 1 goto Process_NotFound
:Process_Found
echo YourProgram is running
goto END
:Process_NotFound
echo YourProgram is not running
YourProgram.exe
goto END
:END
link|flag
vote up 0 vote down

I don't know how to do so with built in CMD but if you have grep you can try the following:

tasklist /FI "IMAGENAME eq myApp.exe" | grep myApp.exe
if ERRORLEVEL 1 echo "myApp is not running"
link|flag
see my answer above, which solves this all from DOS. – Matt Lacey Oct 2 '08 at 13:52
vote up 6 vote down

Here's how I've worked it out:

tasklist /FI "IMAGENAME eq notepad.exe" /FO CSV > search.log

FOR /F %%A IN (search.log) DO IF %%~zA EQU 0 GOTO end

start notepad.exe

:end

del search.log

The above will open notepad if it is not already running

Edit: Note that this won't find apps hidden from the tasklist. This will include any scheduled tasks running as a different user, as these are automatically hidden.

link|flag
This works for me, on XP. Haven't checked anything else. – Matt Lacey Oct 2 '08 at 13:53
vote up 0 vote down

I'm assuming windows here. So, you'll need to use WMI to get that information. Check out The Scripting Guy's archives for a lot of examples on how to use WMI from a script.

link|flag
yes windows. If pos I'd like to do it in DOS, not VBScript. – Matt Lacey Oct 2 '08 at 13:39
vote up 0 vote down

You should check the parent process name

CodeProject Article - .NET based solution

Non-Programmatic way to check:

  1. Launch Cmd.exe
  2. Launch an app [for instance, c:\windows\notepad.exe]
  3. Check Properties of Notepad.exe process in Process Explorer
  4. Check for parent process.[This shows cmd.exe]

The same can be checked by getting ParentProcess Name.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.