

InterviewSolution
Saved Bookmarks
1. |
Solve : Batch file for remote desktop? |
Answer» HELLO dear users, I have Windows XP. And every morning i need to connect to 63 PC's via RDC. I just need to know, if connections OK i'll close it. Maybe you have some batch file, where i can put with delay all my ip's ? Batch file need to check if connection (ip respond) that all ok. Without any users names and pwd. Or maybe i need some batch file which will ping all ip's and make a report ? Best Regards, MikeI don't fully understand what your trying to do But there is a way to ping the COMPUTERS using a batch file, like this one: CODE: [Select]@echo off ping 192.168.24.56 pause exitBut can i add there several IPs with name ? And after this action view some result ? for example: 159.152.152.152 Boss-1 159.125.124.478 Boss-2 and so on. And after all i can SEE that Boss-1 didn't reply. Couse it is very hard to connect at one time to 60 PC-s every day. Thanks, Mike |
|