vote up 1 vote down star

Hi,

I need to identify the P(rocess) ID of an executing batch file from a PowerShell (v1.0) script. Can anyone suggest a way of doing this?

Thanks, MagicAndi.

flag

3 Answers

vote up 2 vote down check

Well, whether that's possible depends on how you executed the batch file.

In general, the only way you could possibly find this out is to look at the command line used to start the batch. If you double-click a batch file in Windows Explorer you'll get a command line like

cmd /c ""C:\Users\Me\test.cmd" "

In Powershell you can then use Get-WMIObject on Win32_Process which includes the command line:

PS Home:\> gwmi Win32_Process | ? { $_.commandline -match "test\.cmd" } | ft commandline,processid -auto

commandline                             processid
-----------                             ---------
cmd /c ""C:\Users\Me\test.cmd" "             1028

However, if you started the batch directly from a command prompt, then you have no way of externally finding out that a batch is running and who started it.

link|flag
Johannes, excellent answer. +1 Please see my answer for a possible way of identifying a specific batch file even called from the command prompt. If you see a problem with this answer, please comment on it! Thanks. – MagicAndi Aug 27 at 17:04
What I'm doing here is not pretty, though. – Johannes Rössel Aug 27 at 17:06
Johannes, it does not have to be pretty - it is good enough to get something that just works. – MagicAndi Aug 27 at 17:11
Johannes, Accepted as the answer. Thanks. – MagicAndi Aug 28 at 8:29
vote up 2 vote down

I have found one method of discovering the PID of a running batch file. You will need to set the title of the batch console window in the batch file to identify it:

...
Title MyBatchWindow
...

In the PowerShell script, you can check for the MainwindowTitle property and retrieve the PID from the process that matches your batch window title:

$batchProcess = get-process cmd | where-Object {$_.MainWindowTitle -eq "MyBatchWindow"}
$processID = $batchProcess .ID
...

I have tested this method, and it appears to work both where you call the batch file by double clicking it, or by calling it from the command line.

link|flag
Will work until you have two batches using the same window title :-). I assumed you have no control over the batch, though. – Johannes Rössel Aug 27 at 17:03
In this case, I do have control over the batch. However, point taken - if you had multiple instances of the same batch, the above answer would not work. – MagicAndi Aug 27 at 17:10
Well, it would, sort of ... You'd get a list of processes that run the batch. But your second line would have to look different as you currently assume a single returned object. – Johannes Rössel Aug 27 at 17:12
vote up 1 vote down

I don't believe this is possible in a reliable manner. Batch files themselves do not launch a separate process but instead are run within a cmd.exe instance. There is no exported data from that particular process that will reliably tell you what file is being run.

The one exception is if a cmd.exe instance is launched specifically to run a batch file. In that case it would appear in the command line of the application and it would be possible to grep the command line for the batch file. This wouldn't solve the normal case though of multiple batch files being run from within a cmd.exe prompt.

link|flag
Yay, the anonymous downvote on a valid answer – JaredPar Aug 27 at 17:03

Your Answer

Get an OpenID
or

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