Difference between revisions of "Cobian"
From WPKG | Open Source Software Deployment and Distribution
Roussel2nis (Talk | contribs) |
|||
Line 1: | Line 1: | ||
+ | This is a silent installer for Cobian Backup.<br /><br/> | ||
+ | |||
+ | [http://www.cobiansoft.com/cobianbackup.htm Cobian Backup 11] project.<br/><br/> | ||
+ | |||
+ | In order to make a silent install, you have to provide a file named "cbSetup.txt" (select the option "Create script for unattended installations" during install) which contains the following (e.g.) :<br/><br/> | ||
+ | |||
+ | <source lang="text"> | ||
+ | Cobian Backup 11 Gravity | ||
+ | License accepted=true | ||
+ | Installation directory=C:\Program Files\Cobian Backup 11 | ||
+ | Create start menu icons=true | ||
+ | Install VSC=true | ||
+ | Installation type=0 | ||
+ | Service account=1 | ||
+ | User name= | ||
+ | Password=dgBkAGQAewBgAGMAagB5AH4AbQA2AGwAFQADABYAcwB+AHUAfQAdAAsAcgBmAHIAeQAEAAAAAAByAB0AaQAJAHsAdwBjACwAAwABAHAACwB7AA8AZwBsAHoAbAAYADIAfgA1AA== | ||
+ | Autostart UI=true | ||
+ | </source> | ||
+ | |||
+ | |||
+ | <source lang="xml"> | ||
+ | <packages> | ||
+ | <package id="pkg_Cobian_Backup_11.2" name="Cobian_Backup_11.2" revision="1.0" priority="50" reboot="postponed"> | ||
+ | <depends package-id="netframework"/> | ||
+ | <variable name="version" value="11.2"/> | ||
+ | <check type="uninstall" condition="exists" path="Cobian Backup 11 Gravity"/> | ||
+ | <install cmd='"%SOFTWARE%\CobianBackup\%version%\cbSetup.exe"'/> | ||
+ | <upgrade cmd='"%SOFTWARE%\CobianBackup\%version%\cbSetup.exe"'/> | ||
+ | <remove cmd='"%PROGRAMFILES%\Cobian Backup 11\cbUninstall.exe" -update'/> | ||
+ | </package> | ||
+ | </packages> | ||
+ | </source> | ||
+ | |||
+ | ---- | ||
+ | |||
This is a silent installer for Cobian Backup.<br /><br/> | This is a silent installer for Cobian Backup.<br /><br/> | ||
Latest revision as of 11:28, 29 April 2013
This is a silent installer for Cobian Backup.
Cobian Backup 11 project.
In order to make a silent install, you have to provide a file named "cbSetup.txt" (select the option "Create script for unattended installations" during install) which contains the following (e.g.) :
Cobian Backup 11 Gravity
License accepted=true
Installation directory=C:\Program Files\Cobian Backup 11
Create start menu icons=true
Install VSC=true
Installation type=0
Service account=1
User name=
Password=dgBkAGQAewBgAGMAagB5AH4AbQA2AGwAFQADABYAcwB+AHUAfQAdAAsAcgBmAHIAeQAEAAAAAAByAB0AaQAJAHsAdwBjACwAAwABAHAACwB7AA8AZwBsAHoAbAAYADIAfgA1AA==
Autostart UI=true
<packages>
<package id="pkg_Cobian_Backup_11.2" name="Cobian_Backup_11.2" revision="1.0" priority="50" reboot="postponed">
<depends package-id="netframework"/>
<variable name="version" value="11.2"/>
<check type="uninstall" condition="exists" path="Cobian Backup 11 Gravity"/>
<install cmd='"%SOFTWARE%\CobianBackup\%version%\cbSetup.exe"'/>
<upgrade cmd='"%SOFTWARE%\CobianBackup\%version%\cbSetup.exe"'/>
<remove cmd='"%PROGRAMFILES%\Cobian Backup 11\cbUninstall.exe" -update'/>
</package>
</packages>
This is a silent installer for Cobian Backup.
Cobian Backup 10 project.
In order to make a silent install, you have to provide a file named "cbSetup.txt" which contains the following (e.g.) :
Language=FRANCAIS
Directory=C:\Program Files\Cobian Backup 10
Create icons=false
Instal VSC=false
Installation type=3
Account=0
User name=
Password=
Autostart UI=true
<package id="cobian_backup" name="Cobian Backup" revision="101" priority="50" reboot="postponed">
<depends package-id="netframework"/>
<check type="uninstall" condition="exists" path="Cobian Backup 10"/>
<install cmd='"%SOFTWARE%\cobian_backup\10\cbSetup.exe"'/>
<upgrade cmd='"%SOFTWARE%\cobian_backup\10\cbSetup.exe"'/>
<remove cmd='"%PROGRAMFILES%\Cobian Backup 10\cbUninstall.exe" -auto'/>
</package>
--Roussel2nis 11:05, 23 August 2010 (CEST)
Cobian Backup 8 is an open source backup program.
<package
id="cobian"
name="Cobian Backup 8.4.0.198"
revision="1"
reboot="false"
prority="1">
<check type="uninstall" condition="exists" path="Cobian Backup 8" />
<install cmd='\\%SOFTWARE%\cobian\cobian.exe /SILENT /verysilent /norestart' />
<upgrade cmd='\\%SOFTWARE%\cobian\cobian.exe /SP- /VERYSILENT /norestart' />
<remove cmd='"%PROGRAMFILES%\Cobian Backup 8\cbUninstall.exe" /VERYSILENT /SP- /norestart' />
</package>
At the moment the uninstall process does not work in silent mode, it requires user interaction. I'm trying to solve the problem.