Difference between revisions of "Defraggler"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Tidyup)
Line 1: Line 1:
This is a silent installer and uninstaller for Defraggler.
+
Defraggler is a defragmentation utility, originally called MyDefrag, from Piriform (the authors of CCleaner and Recuva).
  
"From everyone here at Piriform, the company that brought you CCleaner and Recuva... we now bring you a file defragmentation tool... Defraggler!
+
Defraggler is available from http://www.defraggler.com.
 
+
A 'slim' installer, without the bundled toolbar, is available from http://www.defraggler.com/download/builds.
It differs from other defrag tools on the market, by enabling you to quickly and simply defrag the files you want to, without having to process the whole drive. Simply run it, select the file and defragment in seconds. No more struggling with the Windows defragmentation tool!" - Defraggler.com
+
 
+
Defraggler Homepage: http://www.defraggler.com/
+
 
+
Download the slim installer available at: http://www.defraggler.com/download/builds
+
  
 +
==WPKG Package==
 
<source lang="xml">  
 
<source lang="xml">  
  
Line 18: Line 14:
 
id="defraggler"
 
id="defraggler"
 
name="Defraggler 1.20"
 
name="Defraggler 1.20"
revision="120"
+
revision="1"
 
reboot="false"
 
reboot="false"
priority="0">
+
priority="3">
 
 
 
<check type="uninstall" condition="exists" path="Defraggler" />
 
<check type="uninstall" condition="exists" path="Defraggler" />

Revision as of 18:18, 25 October 2010

Defraggler is a defragmentation utility, originally called MyDefrag, from Piriform (the authors of CCleaner and Recuva).

Defraggler is available from http://www.defraggler.com. A 'slim' installer, without the bundled toolbar, is available from http://www.defraggler.com/download/builds.

WPKG Package

 

<?xml version="1.0" encoding="UTF-8"?>

<packages>

	<package
		id="defraggler"
		name="Defraggler 1.20"
		revision="1"
		reboot="false"
		priority="3">
		
		<check type="uninstall" condition="exists" path="Defraggler" />
		<check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\Defraggler\Defraggler.exe" value="1.20.0.201" />
		
		<install cmd='%SOFTWARE%\defraggler\dfsetup120_slim.exe /S' />
		
		<upgrade cmd='%SOFTWARE%\defraggler\dfsetup120_slim.exe /S' />
		
		<remove cmd='"%ProgramFiles%\Defraggler\uninst.exe" /S' />
	</package> 

</packages>