codeblue Posted November 12, 2005 Share Posted November 12, 2005 New Version Picasa 2.1.0.27.66.0http://www.msfn.org/comments.php?shownews=15096 Link to comment Share on other sites More sharing options...
ayhopkins Posted November 15, 2005 Share Posted November 15, 2005 @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 Link to comment Share on other sites More sharing options...
totoymola Posted November 15, 2005 Share Posted November 15, 2005 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! ) Link to comment Share on other sites More sharing options...
hexbin Posted May 15, 2006 Share Posted May 15, 2006 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. Link to comment Share on other sites More sharing options...
codeblue Posted June 2, 2006 Share Posted June 2, 2006 Thankyou hexbin :-) Link to comment Share on other sites More sharing options...
muiz Posted September 10, 2006 Share Posted September 10, 2006 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? Link to comment Share on other sites More sharing options...
cyberloner Posted September 10, 2006 Share Posted September 10, 2006 can this software replace acdsee? Link to comment Share on other sites More sharing options...
big_cheesius Posted December 22, 2006 Share Posted December 22, 2006 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! Link to comment Share on other sites More sharing options...
smilodon Posted October 22, 2007 Share Posted October 22, 2007 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 ? Link to comment Share on other sites More sharing options...
Snake7 Posted July 23, 2010 Share Posted July 23, 2010 http://www.google.pl/support/forum/p/Picasa/thread?tid=2ada6a5fabedaf37&hl=en Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now