Windows IT Pro is the authoritative and independent resource for windows nt, windows 2000, windows 2003, windows xp. Features a collection of resources and magazines for windows IT professionals.
  
  
  Advanced Search 


April 28, 2000

How do I obtain the currently running batch file’s PID?

RSS
Subscribe to Windows IT Pro | See More Resource Kit Articles Here | Reprints | Or get the Monthly Online Pass—only $5.95 a month!

A. If you’ve installed the Microsoft Windows NT Resource Kit, you can use the following batch file to obtain the currently running batch file’s process identifier (PID). To use this script at the command line, change the double percentage sign to a single character (i.e., %).

for /f "Tokens=*" %%I in ('f:\tlist ^| grep %0 ^| grep CMD ^| awk "{ print $1 }"') do call :SETPID %%I
:next
.......
:SETPID
set MASTER_PID=%1
goto :next
.......

The following alternative uses the resource kit’s Tlist utility.

for /f "Tokens=1 Delims= " %I in ('c:\tlist ^| find "%0"') do goto :SETPID %I
:next
.......
:SETPID
set MASTER_PID=%1
goto :next
.......

Use the command tlist rather than pulist, because pulist doesn’t give enough information. You need the batch file’s name, which tlist provides. Because the shell uses the pipe character (i.e., |), you must use the caret character (i.e., ^) to escape the pipe.

You can compile the tlist alternative on one line, as follows.

for /f "Tokens=1 Delims= " %I in ('c:\tlist ^| find "%0"') do set MASTER_PID=%1

End of Article



Reader Comments
The proposed solution doesn't work if you are running multiple instances of the same batch file in parallel.

I created a small tool to solve this problem - you can find the executable (including sources etc. ) here:

http://www.edelbyte.org/misc/getpids/index.html

Daniel Scheibli May 25, 2003


You must log on before posting a comment.

If you don't have a username & password, please register now.




Top Viewed ArticlesView all articles
No Jobs, No Excitement at Apple's Last Macworld Keynote

Apple CEO Steve Jobs made the right move in skipping out on his company's last appearance at Macworld: In a Tuesday keynote address at the conference, Apple had no interesting new products to sell, opting instead to spend mind-numbing amounts of time on ...

Where is Microsoft NetMeeting in Windows XP?

...

Command Prompt Tricks

One reader shares his tip for setting up the command prompt to reflect a remote path. ...


Windows OSs Whitepapers Why SaaS is the Right Solution for Log Management

Related Events Virtualization Forum: Optimizing Storage, Networks, Desktops, and Security

Cloud Computing Forum: Integrating Software, Server and Storage as a Service into Your Enterprise IT Delivery Model

Virtualization Forum: Optimizing Storage, Networks, Desktops, and Security

Check out our list of Free Email Newsletters!

Scripting eBooks Keeping Your Business Safe from Attack: Encryption and Certificate Services

Best Practices for Managing Linux and UNIX Servers

Building an Effective Reporting System

Related Scripting Resources Become a VIP member of the Windows IT Pro community!
Get it all with the VIP CD and VIP access. A $500+ value for only $279!

Subscribe to Windows IT Pro!
Solve your toughest technical problems with our experts and access 10,000 + articles online. 30% off

Monthly Online Pass - Only $5.95!
Get instant access to 10,000+ articles from Windows IT Pro Magazine!

TechNet Virtual Labs
Evaluate and test Microsoft's newest products.


Windows IT Pro Home Register FAQ for Windows WinInfo News
Europe Edition About Us Contact Us/Customer Service Media Kit Affiliates / Licensing  
SQL Server Magazine Office & SharePoint Pro Windows Dev Pro IT Job Hound ITTV
IT Library Technology Resource Directory Connected Home Windows Excavator Windows SuperSite 
 
 Windows IT Pro is a Division of Penton Media Inc.
 Copyright © 2009 Penton Media, Inc., All rights reserved. Terms and Use | Privacy Statement | Reprints and Licensing