Difference between revisions of "DVDStyler"
From WPKG | Open Source Software Deployment and Distribution
(Removal of kikin plugin) |
(Further cleanup of Kikin plugin.) |
||
Line 17: | Line 17: | ||
<!-- Optional: Kikin plugin is installed with dvdstyler. The following line removes it. --> | <!-- Optional: Kikin plugin is installed with dvdstyler. The following line removes it. --> | ||
<install cmd='"%PROGRAMFILES%\kikin\uninst.exe" /S' /> | <install cmd='"%PROGRAMFILES%\kikin\uninst.exe" /S' /> | ||
+ | <!-- Even after uninstall, the kikin plugin leaves files in the Default User profile that may prevent new non-admin users from logging in due to incorrect permissions on some files. --> | ||
+ | <install cmd='%COMSPEC% /C if exist "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox\" "%WPKGROOT%\tools\rm.exe" -r -f "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox"' /> | ||
<upgrade cmd='"%SOFTWARE%\graphics\DVDStyler-1.7.4-win32.exe" /tasks= /VERYSILENT' /> | <upgrade cmd='"%SOFTWARE%\graphics\DVDStyler-1.7.4-win32.exe" /tasks= /VERYSILENT' /> | ||
<!-- Optional removal of kikin plugin --> | <!-- Optional removal of kikin plugin --> | ||
<upgrade cmd='"%PROGRAMFILES%\kikin\uninst.exe" /S' /> | <upgrade cmd='"%PROGRAMFILES%\kikin\uninst.exe" /S' /> | ||
+ | <!-- Even after uninstall, the kikin plugin leaves files in the Default User profile that may prevent new non-admin users from logging in due to incorrect permissions on some files. --> | ||
+ | <upgrade cmd='%COMSPEC% /C if exist "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox\" "%WPKGROOT%\tools\rm.exe" -r -f "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox"' /> | ||
<remove cmd='"%PROGRAMFILES%\dvdstyler\unins000.exe" /VERYSILENT' /> | <remove cmd='"%PROGRAMFILES%\dvdstyler\unins000.exe" /VERYSILENT' /> | ||
</package> | </package> |
Latest revision as of 03:43, 17 November 2010
Silent installer for DVDStyler.
DVDStyler is a cross-platform free DVD authoring application for the creation of professional-looking DVDs.
WPKG Package
<!-- http://www.dvdstyler.de/ -->
<package
id="dvdstyler"
name="DVDStyler"
revision="1"
reboot="false"
priority="3">
<check type="uninstall" condition="exists" path="DVDStyler v1.7.4" />
<install cmd='"%SOFTWARE%\graphics\DVDStyler-1.7.4-win32.exe" /tasks= /VERYSILENT' />
<!-- Optional: Kikin plugin is installed with dvdstyler. The following line removes it. -->
<install cmd='"%PROGRAMFILES%\kikin\uninst.exe" /S' />
<!-- Even after uninstall, the kikin plugin leaves files in the Default User profile that may prevent new non-admin users from logging in due to incorrect permissions on some files. -->
<install cmd='%COMSPEC% /C if exist "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox\" "%WPKGROOT%\tools\rm.exe" -r -f "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox"' />
<upgrade cmd='"%SOFTWARE%\graphics\DVDStyler-1.7.4-win32.exe" /tasks= /VERYSILENT' />
<!-- Optional removal of kikin plugin -->
<upgrade cmd='"%PROGRAMFILES%\kikin\uninst.exe" /S' />
<!-- Even after uninstall, the kikin plugin leaves files in the Default User profile that may prevent new non-admin users from logging in due to incorrect permissions on some files. -->
<upgrade cmd='%COMSPEC% /C if exist "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox\" "%WPKGROOT%\tools\rm.exe" -r -f "%ALLUSERSPROFILE%\..\Default User\Application Data\Mozilla\Firefox"' />
<remove cmd='"%PROGRAMFILES%\dvdstyler\unins000.exe" /VERYSILENT' />
</package>