I have four files I would like to distribute en masse. I have a batch file written that checks for the presence of the files and then copied them if needed. I've tried numerous "Run" and scheduled job options but nothing seems to take. Thank you in advance!
Announcement
Collapse
No announcement yet.
Distributing files to multiple desktop computers
Collapse
X
-
Re: Distributing files to multiple desktop computers
Create a Custom Tool in Hyena to run your batch file.
You could have it something like:
cmd /c c:\copyfiles.bat %E%
In your batch file, wherever you need the computer name that you are copying to, put in it's place %1.
Then you can select the computers you want to run this against and run the custom tool.
Comment