1.

Solve : call batch file in shared directory?

Answer»

Is there a way to call a BATCH file in a shared directory on ANOTHER computer?

Maybe it's not due to security issues. I'm hoping to not have to MAP the drive.
I want to call:

\\\mycomputer\mysharedfolder\mybat.bat

Thanks!You can call files ACROSS the network PROVIDED you use the full UNC path to the file.

Code: [Select]call \\mycomputer\mysharedfolder\mybat.bat

I prefer mapping the drive and addressing the file as if it were local.

8-)



Discussion

No Comment Found