Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Monitoring PC Apps
nipper
Need to monitor TS on a DOS box. On Unix, write a script that does a ps & grep for the processes. What is the equivilent on DOS ? Or is there a Perl Module for this ?
Andy
Find more posts tagged with
Comments
Migrateduser
Depending on your specific platform, you should be able to use these commands in conjunction with one another:
netstat -an
net start
... and have your script read the input. The "net start" command is particularly helpful but netstat -an pretty much does the same thing in DOS as it does in Unix.