577
edits
Changes
Picasa
,Various improvements
Silently installing Picasa 3 when Picasa 2 is installed will automatically remove Picasa 2.
Picasa Media Detector 3 doesn't come with include the Picasa 3Media Detector included with earlier versions.
Note that Picasa uninstall will open a web browser to ask for feedback.
<source lang="xml">
<package id='Picasa' name='Picasa' revision='2' priority='3' reboot='false' >
<check type='uninstall' condition='exists' path='Picasa 3' />
<install cmd='"%SOFTWARE%\Picasa\picasa3-setup.exe" /S /L' >
<exit code='1' />
<exit code='128' />
</install>
<upgrade cmd='"%SOFTWARE%\Picasa\picasa3-setup.exe" /S /L' >
<exit code='1' />
<exit code='128' />
</upgrade>
<remove cmd="%PROGRAMFILES%\Google\Picasa3\Uninstall.exe /S"/>
</package>
=== Auto Update ===
For Limited user accounts, this setting causes it to prompt the user, asking if they want to update.
The automatic update feature can be turned off using Tools → Options → General → Automatic Updates → Don't check for updatesor you can add the following lines after the setup-tagin various ways:<source lang="xml"> <install cmd='cmd /c %windir%\regedit.exe /s %YourPicasaPath%\PicasaAutoUpdateOff.reg'/> <upgrade cmd='cmd /c %windir%\regedit.exe /s %YourPicasaPath%\PicasaAutoUpdateOff.reg'/></source>
== Picasa 2 ==
<package id='Picasa' name='Picasa' revision='2' priority='3' reboot='false' >
<check type='uninstall' condition='exists' path='Picasa 2' />
<install cmd='"%SOFTWARE%\Picasa\picasa2-setup.exe" /S' >
<install cmd='cmd /C taskkill /F /IM Picasa2.exe' >
<exit code='1' />
<exit code='128' />
</install>
<install cmd='cmd /C taskkill /F /IM PicasaMediaDetector.exe' >
<exit code='1' />
<exit code='128' />
</install>
<upgrade cmd='"%SOFTWARE%\Picasa\picasa2-setup.exe" /S' />
<upgrade cmd='cmd /C taskkill /F /IM Picasa2.exe' >
<exit code='1' />
<exit code='128' />
</upgrade>
<upgrade cmd='cmd /C taskkill /F /IM PicasaMediaDetector.exe' >
<exit code='1' />
<exit code='128' />
</upgrade>
<remove cmd="%PROGRAMFILES%\picasa2\Uninstall.exe /S"/>
</package>