Difference between revisions of "Cobian"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 2: Line 2:
 
[http://www.educ.umu.se/~cobian/cobianbackup.htm/ Cobian Backup 8] is an open source backup program.
 
[http://www.educ.umu.se/~cobian/cobianbackup.htm/ Cobian Backup 8] is an open source backup program.
  
<PRE>
+
<source lang="xml">
<package
+
<package
 
id="cobian"
 
id="cobian"
 
name="Cobian Backup 8.4.0.198"
 
name="Cobian Backup 8.4.0.198"
Line 13: Line 13:
 
<upgrade cmd='\\%SOFTWARE%\cobian\cobian.exe /SP- /VERYSILENT /norestart' />
 
<upgrade cmd='\\%SOFTWARE%\cobian\cobian.exe /SP- /VERYSILENT /norestart' />
 
<remove cmd='"%PROGRAMFILES%\Cobian Backup 8\cbUninstall.exe" /VERYSILENT /SP- /norestart' />
 
<remove cmd='"%PROGRAMFILES%\Cobian Backup 8\cbUninstall.exe" /VERYSILENT /SP- /norestart' />
</package>     
+
</package>     
</PRE>
+
</source>
  
 
At the moment the uninstall process does not work in silent mode, it requires user interaction. I'm trying to solve the problem.
 
At the moment the uninstall process does not work in silent mode, it requires user interaction. I'm trying to solve the problem.

Revision as of 22:03, 7 February 2008

This is a silent installer for Cobian Backup.
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.

Links