views:

54

answers:

4

how i can execute windows batch file from UNIX-AIX i install copssh ???

+1  A: 

You can't unless it's very basic, i.e. it doesn't call any Windows specific programs, in which case you're probably better off transcoding it to bash or similar.

Lazarus
+1  A: 

The best way will be translating it into bash.

Ruel
+1  A: 

Check out winexe.

kofucii
+1  A: 

Does this work? From the Unix box:

$ rsh -l user_name windows_host_name "C:\scan.bat"
dogbane