Jump to content

rflashman

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by rflashman

  1. Hi,

    I´ve been using Luguta´s logmein unattended script with success for a while. But now I´m in a project that I need a silent install that prompts only for the user name with the rest being silent. Is that possible with orca and logmein.msi? How can I do that? Thanks.

    I'm sure you already solved this another way, but if you don't enter the USEREMAIL and ACCOUNTEMAIL in the MSI, you can prompt for them with something like AutoItScript easily:


    Dim $username = InputBox('LogMeIn Installation','Enter a LogMeIn username:')
    ShellExecuteWait('logmein.msi', '/qn USEREMAIL=' & $username & ' ACCOUNTEMAIL=' & $username, @TempDir, 'Open', @SW_HIDE)
    Exit

    You can do the same thing for password, etc.

    You can even make a fully compiled single-file installer to make sure no one messes around with your MSI:


    Dim $username = InputBox('LogMeIn Installation','Enter a LogMeIn username:')
    FileInstall('logmein.msi', @TempDir & '\logmein.msi', 1)
    ShellExecuteWait(@TempDir & '\logmein.msi', '/qn USEREMAIL=' & $username & ' ACCOUNTEMAIL=' & $username, @TempDir, 'Open', @SW_HIDE)
    FileDelete(@TempDir & '\logmein.msi')
    Exit

  2. First of all, thanks for your information. Works flawlessly. A couple questions.

    What settings can I edit in the MSI to:

    1. Disable automatic download/notification of updates.

    2. Disable asking the user what to do if there is an error.

    3. Hide LogMeIn tray icon?

    Also, maybe it is just me, but the previous MSI (the one mentioned here) when uninstall would delete the machine from logmein. The new MSI that was released this week does not. Any ideas?

    Thanks in advance,

    Rick

×
×
  • Create New...