Is it possible to use batch file (for XP) to call another batch file from different computer? if yes, how identify the target computer? Is it by IP comp ID?
+2
A:
You can do this using psexec from Sysinternals/Microsoft.
The computer name can be specified either by name (assuming name resolution works on the network) or IP address.
Rob Walker
2008-11-14 03:04:02
+2
A:
Why not use UNC naming? As in
ThisComputer.bat
@echo on
dir *.whatever
call \\ServerName\C$\YourFolder\OtherComputer.bat
Darian Miller
2008-11-14 03:41:42