Difference between revisions of "Utorrent"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m (add cat and description)
 
Line 1: Line 1:
Silent installer for uTorrent, a nice and easy torrent client.
+
Silent installer for uTorrent, a torrent client. More infos from [http://www.utorrent.com/ here].
  
 
<source lang="xml">
 
<source lang="xml">
Line 21: Line 21:
  
  
* http://www.utorrent.com/
+
[[category:Silent Installers]]

Latest revision as of 12:09, 1 April 2011

Silent installer for uTorrent, a torrent client. More infos from here.

<?xml version="1.0" encoding="UTF-8"?>
  <package
    id="utorrent"
    name="uTorrent"
    revision="182"
    reboot="false"
    priority="0">
 
    <check type="file" condition="exists" path="%PROGRAMFILES%\uTorrent\utorrent.exe"/>
    <install cmd='cmd.exe /C mkdir %PROGRAMFILES%\uTorrent'/>
    <install cmd='cmd.exe /C copy /y %SOFTWARE%\utorrent\utorrent_v1.8.2.exe %PROGRAMFILES%\uTorrent\utorrent.exe'/>
 
    <remove cmd='cmd.exe /C del %PROGRAMFILES%\uTorrent\utorrent.exe'/>
    <remove cmd='cmd.exe /C rmdir %PROGRAMFILES%\uTorrent'/>
  </package>
</packages>