List of Services Running on PC/Servers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I get a list of PCs/Servers running a particular service without connecting to each one individually? W2K Servers XP/W2K Environment
 
How can I get a list of PCs/Servers running a particular service without connecting to each one individually? W2K Servers XP/W2K Environment

From a Windows XP domain member, use tip 4195 in the 'Tips & Tricks' at
http://www.jsiinc.com to run a batch that writes the output of the following to
a share.

@echo off
for /f "Tokens=*" %%a in ('net start^|findstr /i /c:"ServiceName"') do (
@echo %computername% %%a>>\\Server\share\report.txt


where ServiceName is the services DisplayName Value.


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top