Difference between revisions of "Blender"
From WPKG | Open Source Software Deployment and Distribution
(New page: This is a silent installer and uninstaller for Blender, a open source 3D modeling problem. The package below works for v2.43 but will NOT work for versions 2.44-2.47 due to a [https://pro...) |
FSchoubben (Talk | contribs) |
||
Line 1: | Line 1: | ||
This is a silent installer and uninstaller for Blender, a open source 3D modeling problem. | This is a silent installer and uninstaller for Blender, a open source 3D modeling problem. | ||
− | The | + | The version 2.49b [http://www.blender.org/download/get-blender/] installs without problem : |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<source lang="xml"> | <source lang="xml"> | ||
− | <package | + | <package |
− | + | id="blender" | |
− | + | name="Blender" | |
− | + | revision="1" | |
− | + | reboot="false" | |
− | + | priority="0"> | |
− | + | ||
<check type="file" condition="exists" path="%PROGRAMFILES%\Blender Foundation\Blender\blender.exe" /> | <check type="file" condition="exists" path="%PROGRAMFILES%\Blender Foundation\Blender\blender.exe" /> | ||
− | <install cmd='"%SOFTWARE%\ | + | <install cmd='"%SOFTWARE%\divers\blender-2.49b-windows.exe" /S' /> |
− | <upgrade cmd='"%SOFTWARE%\ | + | <upgrade cmd='"%SOFTWARE%\divers\blender-2.49b-windows.exe" /S' /> |
− | <remove cmd='"%ProgramFiles%\Blender Foundation\Blender\Uninstall.exe" /S' /> | + | <remove cmd='"%ProgramFiles%\Blender Foundation\Blender\Uninstall.exe" /S' /> |
− | + | ||
</package> | </package> | ||
+ | |||
</source> | </source> | ||
+ | |||
+ | There were problems with version < 2.47 (or greater?) due to a [https://projects.blender.org/tracker/index.php?func=detail&aid=17651&group_id=9&atid=125 bug] in the install script used by Blender which causes it to prompt for user input even thought it was launched silent mode. | ||
+ | |||
+ | The uninstaller has the same problem too even for v2.43. It needed the Visual C++ 2005 Redistributable too. | ||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Latest revision as of 13:22, 18 June 2010
This is a silent installer and uninstaller for Blender, a open source 3D modeling problem.
The version 2.49b [1] installs without problem :
<package
id="blender"
name="Blender"
revision="1"
reboot="false"
priority="0">
<check type="file" condition="exists" path="%PROGRAMFILES%\Blender Foundation\Blender\blender.exe" />
<install cmd='"%SOFTWARE%\divers\blender-2.49b-windows.exe" /S' />
<upgrade cmd='"%SOFTWARE%\divers\blender-2.49b-windows.exe" /S' />
<remove cmd='"%ProgramFiles%\Blender Foundation\Blender\Uninstall.exe" /S' />
</package>
There were problems with version < 2.47 (or greater?) due to a bug in the install script used by Blender which causes it to prompt for user input even thought it was launched silent mode.
The uninstaller has the same problem too even for v2.43. It needed the Visual C++ 2005 Redistributable too.