Changes

Jump to: navigation, search

MyDefrag

120 bytes added, 06:47, 3 July 2009
added source tags
Install the main-program:
<source lang="xml">
<package id="mydefrag" name="MyDefrag" revision="1" reboot="false" priority="3">
<check type="uninstall" condition="exists" path="MyDefrag v4.0b11" />
<remove cmd='"%PROGRAMFILES%\MyDefrag\unins000.exe" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' />
</package>
</source>
I have some custom scripts. I don't want the user to see, MyDefrag runs, so I added a "WindowSize(invisible)" to the scripts. The scripts are textfiles.
<source lang="xml">
<package id="mydefrag-scripts" name="MyDefrag-Scripts" revision="1" reboot="false" priority="2">
<check type="file" condition="exists" path='C:\TEMP\WPKG\mydefrag-scripts.SEM' />
<install cmd='\\server\wpkg\files\dist\mydefrag\install.bat' />
</package>
</source>
install.bat is a small copy script, which copies the customized scripts into the programdir of MyDefrag.
Run once a deep-optimize (it's safe, no worry about corrupted discs in your company):
<source lang="xml">
<package id="mydefrag-slow" name="MyDefrag SlowOptimize" revision="1" reboot="false" priority="1" notify="false" execute="once">
<install cmd='cmd.exe /c start "MyDefrag" /BelowNormal "%PROGRAMFILES%\MyDefrag\MyDefrag.exe" "-r" "SlowOptimize.MyD"' />
</package>
</source>
To not jam the PC, the processpriority is below normal.
And an everyday job, to keep the discs unfragmented:
<source lang="xml">
<package id="mydefrag-fast" name="MyDefrag Fast-Update" revision="1" reboot="false" priority="0" notify="false" execute="always">
<install cmd='cmd.exe /c start "MyDefrag" "%PROGRAMFILES%\MyDefrag\MyDefrag.exe" "-r" "FastUpdate.MyD"' />
</package>
</source>
[[Category:Silent Installers]]

Navigation menu