ping to all systems at simulteniously

  • Thread starter Thread starter vishal suhag
  • Start date Start date
V

vishal suhag

How do i ping from my win2000advanced server to all my 10 clients in native
and mixed mode simulteniously
by using only one command.
OR
Is there any way to find out ip addresses of all client computers in same
senario by using one command
 
vishal suhag said:
How do i ping from my win2000advanced server to all my 10 clients in native
and mixed mode simulteniously
by using only one command.
OR
Is there any way to find out ip addresses of all client computers in same
senario by using one command

Try this. It won't be simultAnEous but it will catch all
machines that are currently online:

@echo off
for /F "delims=\" %%a in ('net view ^| find "\\"') do ping %%a
 

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