Difference between revisions of "Wget"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created wget silent installer page.)
(No difference)

Revision as of 14:57, 16 August 2012

Wget For windows

Wget can be used to download http files using the command line. This can be handy when this functionality is needed in other installers or scripts (for example, you can spread the load of downloading large files across multiple http servers, without the need to alter your wpkg server infrastructure)

Download the pre-compiled exe file from this link [1]

<!-- 
  Download wget for windows from here
  http://users.ugent.be/~bpuype/wget/
  This should be ok for 64 and 32 bit systems (if someone confirms this can they alter this like accordingly)
-->
<package
        id="wget"
        name="wget for windows v1.11.4"
        revision="2012081601"
        priority="20"
        reboot="false">
        <check type="file" condition="exists" path="%WINDIR%\system32\wget.exe" />

        <install cmd='cmd /c copy /y %SOFTWARE%\wget\wget.exe %WINDIR%\system32' />
        <upgrade include="install" />
</package>