vote up 1 vote down star

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?

flag
Add clarity. Where do you want this called batch file to run? on the client machine? or the remote machine? – B. Tyndall Nov 14 '08 at 4:02

2 Answers

vote up 2 vote down

Why not use UNC naming? As in

ThisComputer.bat

   @echo on
    dir *.whatever
    call \\ServerName\C$\YourFolder\OtherComputer.bat
link|flag
vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.