Difference between revisions of "Using Robocopy in WPKG"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Major change, clarified why RoboCopy doesn't work because it outputs too much text)
Line 1: Line 1:
If you use WPKG with robocopy, you have to set the /log: variable in Robocopy, otherwise the Copyprocess will fail (at least in Windows 7 Professionell 64 Bit German, haven´t testet it with 32 bit).
+
RoboCopy allows you to copy files in restartable mode.  If the copying process or network connection dies it will start where it left off instead of starting over and copying the entire file.
  
i tried to copy a whole folder with the following install command:
+
WPKG has a bug that stalls wpkg.js if the command outputs too much text. RoboCopy tends to output a lot of text even when copying small files and RoboCopy doesn't have a silent flag so you have to use 5 different flags to disable all of the output.
<install cmd='robocopy.exe %SOFTWARE%\pdfsam\ "%PROGRAMFILES%\PDFSAM" /mir' />
+
  
As a result, only a few files were copied, and the script hangs till timeout
+
An example install command looks like this:
 +
<source lang="xml">
 +
<install cmd='%COMSPEC% /c robocopy /Z /NP /NDL /NFL /NJH /NJS "%Software%\7-Zip" "%Temp%\7-Zip" "7z%FileVersion%.msi"' ><exit code="any" /></install>
 +
</source>
  
I found out, that with the /log: parameter, robocopy works as intended
+
or this if you want to copy the entire folder:
 +
<source lang="xml">
 +
<install cmd='%COMSPEC% /c robocopy /Z /S /NP /NDL /NFL /NJH /NJS "%Software%\7-Zip" "%Temp%\7-Zip"' ><exit code="any" /></install>
 +
</source>
  
<install cmd='robocopy.exe %SOFTWARE%\pdfsam\ "%PROGRAMFILES%\PDFSAM" /mir /log:%temp%\robocopy.log' />
+
Usefull flags while copying: (more available here http://ss64.com/nt/robocopy.html)
 +
<source lang="xml">
 +
/Z : Copy files in restartable mode (survive network glitch).
 +
/S : Copy Subfolders.
 +
/E : Copy Subfolders, including Empty Subfolders.
 +
/PURGE : Delete dest files/folders that no longer exist in source.
 +
/MIR : MIRror a directory tree - equivalent to /PURGE plus all subfolders (/E)
 +
</source>
  
for %temp% you can use any other path you like
+
Disable output:
 +
<source lang="xml">
 +
/NP : No Progress - don't display % copied.
 +
/NDL : No Directory List - don't log directory names.
 +
/NFL : No File List - don't log file names.
 +
/NJH : No Job Header.
 +
/NJS : No Job Summary.
 +
</source>
 +
 
 +
Alternative way to disable output:
 +
<source lang="xml">
 +
/LOG:filename : Output status to LOG file (overwrite existing log).
 +
</source>
 +
This outputs the text to the log file instead of STDOUT which avoids the bug in WPKG.

Revision as of 19:06, 6 August 2011

RoboCopy allows you to copy files in restartable mode. If the copying process or network connection dies it will start where it left off instead of starting over and copying the entire file.

WPKG has a bug that stalls wpkg.js if the command outputs too much text. RoboCopy tends to output a lot of text even when copying small files and RoboCopy doesn't have a silent flag so you have to use 5 different flags to disable all of the output.

An example install command looks like this:

<install cmd='%COMSPEC% /c robocopy /Z /NP /NDL /NFL /NJH /NJS "%Software%\7-Zip" "%Temp%\7-Zip" "7z%FileVersion%.msi"' ><exit code="any" /></install>

or this if you want to copy the entire folder:

<install cmd='%COMSPEC% /c robocopy /Z /S /NP /NDL /NFL /NJH /NJS "%Software%\7-Zip" "%Temp%\7-Zip"' ><exit code="any" /></install>

Usefull flags while copying: (more available here http://ss64.com/nt/robocopy.html)

/Z : Copy files in restartable mode (survive network glitch).
/S : Copy Subfolders.
/E : Copy Subfolders, including Empty Subfolders.
/PURGE : Delete dest files/folders that no longer exist in source.
/MIR : MIRror a directory tree - equivalent to /PURGE plus all subfolders (/E)

Disable output:

/NP : No Progress - don't display % copied.
/NDL : No Directory List - don't log directory names.
/NFL : No File List - don't log file names.
/NJH : No Job Header.
/NJS : No Job Summary.

Alternative way to disable output:

/LOG:filename : Output status to LOG file (overwrite existing log).

This outputs the text to the log file instead of STDOUT which avoids the bug in WPKG.