Setting up file deployment across several machines (automation?)
Setting up file deployment across several machines (automation?)
You're asking about efficiently copying multiple folders across several Windows PCs without manually pasting files. It would be helpful if there were a method that compresses the folders first and then copies them in bulk, possibly using robocopy. This could save time and avoid spending money on individual transfers.
Yeah i am using batscript but cannot find a way to extract the zipped folder. See below inside folder ONE there is a zip file, i am looking that to copy over and when it copys over, the zip will extract. @echo off timeout /t 5 robocopy.exe "C:\one" "\\PC1\e\Test" /e robocopy.exe "C:\one" "\\PC2\e\Test" /e exit
A similar concept to Dysinch Dysinchronize is achieved through linking folders with mklink or using rsync.