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
 
Back
Top