Copying a large amount of files
Hey
What is the best way to copy a large amount of files ( 1.12 gig) to users pc's.......I tried with 7zip to create a self extracting exe but it does not support silent installs and I've also tried to create an msi with installshield 11 but it keeps crapping out ???
Thanks
-
Installshield "craps out" when compiling the msi - jvhammar 10 years ago
Answers (4)
you can create a network share and place the files there and use xcopy /q /y or put 7-zip 7z.exe (command line version) and the zip on the share and call the extact silently from the share
Comments:
-
If you are using Windows 7 computers, give Robocopy a try. - Jbr32 10 years ago
Robocopy. The syntax is more of a challenge but the performance is better than using drag-and-drop in Windows Explorer. If you need a GUI, I have had some success with Double Commander (http://sourceforge.net/projects/doublecmd/).
Run Robocopy in restart mode, which will continue the operation if you are moving the files across the network and the connection is broken (http://technet.microsoft.com/en-us/library/cc733145.aspx).
"It keeps crapping out" isn't a particularly erudite description of the problem, especially as you don't say whether the issue is with the creation, the deployment or the execution of the MSI. That doesn't matter, though: we're all psychic here....
If you use SCCM as your deployment mechanism, that uses BITS to transfer the package to the PCs. There is now an access mechanism for scripts to use BITS, too:
http://blogs.msdn.com/b/powershell/archive/2009/01/11/transferring-large-files-using-bits.aspx
Comments:
-
"keeps crapping out" refers to installshield when compiling the msi or actually trying to compile
Thanks - jvhammar 10 years ago