Difference between revisions of "Ledit Student Version"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
This is a silent installer and uninstaller for Ledit Student Version. | This is a silent installer and uninstaller for Ledit Student Version. | ||
− | + | <source lang="xml"> | |
+ | <package id="ledit" name="Ledit Student Version" revision="1" priority="0" reboot="false"> | ||
<check type="file" condition="exists" path='%PROGRAMFILES%\L-edit\ledit.exe' /> | <check type="file" condition="exists" path='%PROGRAMFILES%\L-edit\ledit.exe' /> | ||
<install cmd='cmd /c mkdir "%ProgramFiles%\\L-edit" ' /> | <install cmd='cmd /c mkdir "%ProgramFiles%\\L-edit" ' /> | ||
Line 7: | Line 8: | ||
<remove cmd='cmd /c del "%AllUsersProfile%\Start Menu\Programs\L-edit.lnk" ' /> | <remove cmd='cmd /c del "%AllUsersProfile%\Start Menu\Programs\L-edit.lnk" ' /> | ||
<remove cmd='cmd /c del /s /q "%ProgramFiles%\L-edit" ' /> | <remove cmd='cmd /c del /s /q "%ProgramFiles%\L-edit" ' /> | ||
− | + | </package> | |
+ | </source> | ||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Latest revision as of 15:23, 17 February 2008
This is a silent installer and uninstaller for Ledit Student Version.
<package id="ledit" name="Ledit Student Version" revision="1" priority="0" reboot="false">
<check type="file" condition="exists" path='%PROGRAMFILES%\L-edit\ledit.exe' />
<install cmd='cmd /c mkdir "%ProgramFiles%\\L-edit" ' />
<install cmd='cmd /c xcopy /S %SOFTWARE%\l-edit\Stu-7\*.* "%ProgramFiles%\L-edit" ' />
<remove cmd='cmd /c del "%AllUsersProfile%\Start Menu\Programs\L-edit.lnk" ' />
<remove cmd='cmd /c del /s /q "%ProgramFiles%\L-edit" ' />
</package>