November 12, 200520 yr New Version Picasa 2.1.0.27.66.0http://www.msfn.org/comments.php?shownews=15096
November 15, 200520 yr @totoymolaI've had a few problems with using your .msi. The main/only problem being that after installing uAXP and them calling your msi from RunOnceEx, it all installs fine. However after the first reboot my CD drive dissapered from My Computer and could not be accessed anyother way. This occured on both a VM machine and a real computer.I've gone back to using the /S switch andcmdow @ /HID@echo offTASKKILL.EXE /F /IM Picasa2.exeTASKKILL.EXE /F /IM PicasaMediaDetector.exedel %0to kill of Picasa when it tries to start itself after installing, also stopped it from opening IE, by not having IE and having no defualt browser setup during the install so it can't open the picasa webpageIf you have Windows XP Home there is no taskkill.exe I did find a free system tool alternative called "pskill.exe" which actually does a good job.http://www.sysinternals.com/Utilities/PsKill.htmlREG ADD %KEY%\061 /VE /D "Picasa (Google-Picture)" /fREG ADD %KEY%\061 /V 1 /D "%systemdrive%\install\Picasa\picasa2-current.exe /S /D=C:\Winapp\Picasa" /fREG ADD %KEY%\061 /V 2 /D "pskill.exe Picasa2.exe" /fREG ADD %KEY%\061 /V 3 /D "pskill.exe PicasaMediaDetector.exe" /f
November 15, 200520 yr I am very sorry guys.. I will make an update when I get the chance. I am still in a catch-up game with my schoolworks.. (did I say that right? i mean i am still left behind! )
May 15, 200620 yr For those that rather use original setup EXE here is an AutoIt script to install your Picasa silently$exe_file_name = "picasa2-current.exe"RunWait (@ScriptDir & "\" & $exe_file_name & " /S",@ScriptDir)Local $i = 0 ; counter for time passed (fail safe way to end script after some amount of timeLocal $epicasa = 0; will be 1 if Picasa was executed (started)Local $edetector = 0; will be 1 if Picasa was executed (started)Local $kpicasa = 0; will be 1 if Picasa was killed (stoped)Local $kdetector = 0; will be 1 if Picasa was killed (stoped); as long as bouth weren't killed and it hasn't passed 60 * 0,5 secondsWhile (Not(($kdetector) And ($kpicasa)) And ($i < 60));if Picasa2 is started mark it started and try to close it If ProcessExists("Picasa2.exe") Then $epicasa = 1 ProcessClose("Picasa2.exe") EndIf;if PicasaMediaDetector is started mark it started and try to close it If ProcessExists("PicasaMediaDetector.exe") Then $edetector = 1 ProcessClose("PicasaMediaDetector.exe") EndIf; if applications were started and don't exist anymore, mark them killed If (($epicasa) And Not(ProcessExists("Picasa2.exe"))) Then $kpicasa=1 If (($edetector) And Not(ProcessExists("PicasaMediaDetector.exe"))) Then $kdetector=1;wait 0,5 seconds then increase timer Sleep (500) $i = $i + 1WEndAt the start of this code there is a $exe_file_name variable. Change it to your setup.exe and compile the script.
September 10, 200619 yr While practicing, I thougt of repackaging this nice program for silent installation. Feel free to use my Picasa2 msi.Picasa2 MSIDOWNLOAD HERE How did you do this?Or do you already have a newer version?
December 22, 200619 yr Hi there can, someone repost the msi plz ?I would like to know if the version of picasa is in english or multilanguage?How can I repack it in french? I know that I'm asking a lot of questions but I'll be thankful for your help!
October 22, 200718 yr start /wait setup.exe /Staskkill.exe /F /IM Picasa2.exetaskkill.exe /F /IM PicasaMediaDetector.exeAbove works fine, why bother with making .MSI-s at every new release ?
Create an account or sign in to comment