Difference between revisions of "FilterPro"
From WPKG | Open Source Software Deployment and Distribution
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | This is a silent installer and uninstaller for FilterPro. | + | This is a silent installer and uninstaller for FilterPro. For more infos see http://focus.ti.com/docs/toolsw/folders/print/filterpro.html |
− | + | <source lang="xml"> | |
+ | <package id="filterpro" name="FilterPro (TI)" revision="1" priority="0" reboot="false"> | ||
<check type="file" condition="exists" path="%ProgramFiles%\filterpro\filterpro.exe" /> | <check type="file" condition="exists" path="%ProgramFiles%\filterpro\filterpro.exe" /> | ||
<install cmd='cmd /c mkdir "%ProgramFiles%\filterpro"'/> | <install cmd='cmd /c mkdir "%ProgramFiles%\filterpro"'/> | ||
Line 8: | Line 9: | ||
<remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\FilterPro" '/> | <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\FilterPro" '/> | ||
<upgrade cmd='' /> | <upgrade cmd='' /> | ||
− | + | </package> | |
− | + | </source> | |
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Latest revision as of 08:22, 1 March 2011
This is a silent installer and uninstaller for FilterPro. For more infos see http://focus.ti.com/docs/toolsw/folders/print/filterpro.html
<package id="filterpro" name="FilterPro (TI)" revision="1" priority="0" reboot="false">
<check type="file" condition="exists" path="%ProgramFiles%\filterpro\filterpro.exe" />
<install cmd='cmd /c mkdir "%ProgramFiles%\filterpro"'/>
<install cmd='cmd /c copy %SOFTWARE%\filterpro\Raw\*.* "%ProgramFiles%"\filterpro' />
<remove cmd='cmd /c del /s /q "%ProgramFiles%"\filterpro' />
<remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\FilterPro" '/>
<upgrade cmd='' />
</package>