Difference between revisions of "Nero Burning ROM"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
This is a silent installer and uninstaller for Nero Burning ROM. | This is a silent installer and uninstaller for Nero Burning ROM. | ||
− | + | <source lang="xml"> | |
+ | <package id="nero" name="Nero Burning ROM (CD / DVD burner)" revision="1" priority="0" reboot="true"> | ||
<check type="file" condition="exists" path="%PROGRAMFILES%\Ahead\Nero\nero.exe" /> | <check type="file" condition="exists" path="%PROGRAMFILES%\Ahead\Nero\nero.exe" /> | ||
<check type="uninstall" condition="exists" path="Nero BurnRights (Ahead Software)" /> | <check type="uninstall" condition="exists" path="Nero BurnRights (Ahead Software)" /> | ||
Line 9: | Line 10: | ||
<remove cmd="%WINDIR%\UNNeroBurnRights.exe /UNINSTALL /SILENT" /> | <remove cmd="%WINDIR%\UNNeroBurnRights.exe /UNINSTALL /SILENT" /> | ||
<remove cmd="MsiExec.exe /qb /l* c:\netinst\logs\nero.txt /x{A4D7B764-4140-11D4-88EB-0050DA3579C0}" /> | <remove cmd="MsiExec.exe /qb /l* c:\netinst\logs\nero.txt /x{A4D7B764-4140-11D4-88EB-0050DA3579C0}" /> | ||
− | + | </package> | |
+ | </source> | ||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Revision as of 20:53, 20 February 2008
This is a silent installer and uninstaller for Nero Burning ROM.
<package id="nero" name="Nero Burning ROM (CD / DVD burner)" revision="1" priority="0" reboot="true">
<check type="file" condition="exists" path="%PROGRAMFILES%\Ahead\Nero\nero.exe" />
<check type="uninstall" condition="exists" path="Nero BurnRights (Ahead Software)" />
<install cmd='msiexec /qb /l* c:\netinst\logs\nero.txt /i %SOFTWARE%\nero\express\isscript.msi' />
<install cmd='msiexec /qb /l* c:\netinst\logs\nero.txt /i %SOFTWARE%\nero\express\nero.msi' />
<install cmd='%SOFTWARE%\nero\br\setup.exe /silent /Burnrights:all' />
<remove cmd="%WINDIR%\UNNeroBurnRights.exe /UNINSTALL /SILENT" />
<remove cmd="MsiExec.exe /qb /l* c:\netinst\logs\nero.txt /x{A4D7B764-4140-11D4-88EB-0050DA3579C0}" />
</package>