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.
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.