Jump to content

Recommended Posts

Posted

Hi,

 

Our new scheme of work for ICT calls for Picasa to be used.

 

Now i cant find an MSI and looks like there isnt one. I've not had much luck with Silent Installs but will give it a try if someone can help.

 

Otherwise, can someone recommend a program (free!) that is as close to Picasa as possible. I haven't read what exactly it wants to be done with the photos.

 

Thanks!

Posted

Ooh..what needs caps?

 

I can get the damn thing to run from the bat but when i get my vbs to call it during login nothing happens. Probably doing something daft but not with it today!

Posted
Ooh..what needs caps?

 

I can get the damn thing to run from the bat but when i get my vbs to call it during login nothing happens. Probably doing something daft but not with it today!

 

picasa39-setup.exe /S /L

 

^ S/L needs to be caps it seems :( Just running it cmd prompt currently, not using vbs. Still not working for you?

 

Steve

Posted

then why not run it as a batch file?

 

something like

 

@echo off

rem check if exists in program files

if exist c:\program files\google\picasa\picasa.exe goto _end

rem check if exists in program files x86

if exist c:\program files (x86)\google\picasa\picasa.exe goto _end

rem installer

picasa39-setup.exe /S /L

 

:_end

  • Thanks 1
Posted
That will be why then..

 

now im stumped lol!

 

have you put the full patch infront of 'picasa39-setup.exe' so something like (and "" possibly needed due to filename length or at least wont harm) "\\server\packages$\google\picassa\29\picasa39-setup.exe"

Posted

Combing @sted suggestions would give ...

 

@echo off
rem check if exists in program files
if exist c:\program files\google\picasa\picasa.exe goto _end
rem check if exists in program files x86
if exist c:\program files (x86)\google\picasa\picasa.exe goto _end
rem installer
"\\server\path$\picasa39-setup.exe /S /L"

:_end

 

which when run as a batch file in the startup script, shouldn't need any admin rights ..

 

I essentially use the same command here, just run via WPKG instead ..

  • Thanks 1
Posted
Ah, ok...now it asks me for admin password. How does one bypass this...

 

if you run it as a login script it runs with that usrs credentials startup scrips run as admin

  • Thanks 1
  • 3 years later...
Posted

I know this is an old discussion, but I've found an easy way to create an MSI from Picasa 3.9.

 

Download Picasa 3.9 here

 

Download Exe to MSI Converter Free here

 

Specify the switches: /S /L

 

Deploy with Group Policy, works perfectly :)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...