MSFN Forum: Silent Install of LogMein.msi - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 8 Pages +
  • « First
  • 4
  • 5
  • 6
  • 7
  • 8
  • You cannot start a new topic
  • You cannot reply to this topic

Silent Install of LogMein.msi need help with auto insert user & pass with a silent install Rate Topic: -----

#101 User is offline   bigred 

  • Member
  • PipPip
  • Group: Members
  • Posts: 166
  • Joined: 09-August 03

Posted 25 January 2009 - 12:25 AM

Has anyone had any luck with the lastest version of LogMeIn (4.0.784)? I've edited the msi file so that when the installer is run manually, all of the info is already present (e-mail, password, etc.) but the user still has to click on Next, Agree, then Next about 5 more times before it finishes. I'd like for the user to be able to just click once to start the installer, and once to finish, if that's possible.

This is a great thread, but I'm wondering if some of the methods previously discussed might have been rendered ineffective if this is a newer version of the LogMeIn installer?

Any help would be appreciated. Especially by some of you who were able to get things working previously in this thread.

Thanks :)


#102 User is offline   illfame 

  • Group: Members
  • Posts: 1
  • Joined: 10-February 09

  Posted 10 February 2009 - 01:23 PM

Great job guys and great info!!

Using ORCA and the info from this board, I got the logmein msi to install without the user having to click ANY buttons from start to finish, just the double-click to start the install. Also i've been able to get all the fields to automatically populate with account information and access code without any user intervention. HOWEVER, my problem is i want the MSI to register the username instead of registering the pc name. On the logmein account page, the pc's are registering as whatever their hostname is so it's impossible to figure out whose pc it is if the pc name is generic. Any ideas on how to do that?

Any help at all would be great...!!


Big REd: i got the msi to install without any buttons by simply taking the dialog boxes out of the equation. when my users double click the msi it starts installing right away. I used a program called adminstudio. Once you open the msi with the program, you will see a folder set. There is a folder set there for the user interface and dialog boxes. click on that, then click on the welcome dialog and expand it. Here it gives you the opportunity to change properties such as width, height, add/remove buttons, etc. - what your looking for is the modal property. If you change the modal property to false and save it, no dialog boxes will appear. In order for this to work though, you need to have the msi already configured to have the account info and access code because you wont be able to put in any of this. hope that helps

This post has been edited by illfame: 10 February 2009 - 01:31 PM


#103 User is offline   bigred 

  • Member
  • PipPip
  • Group: Members
  • Posts: 166
  • Joined: 09-August 03

Posted 10 February 2009 - 06:11 PM

Thanks for the instructions illfame. I'll give that a try and let you know how it goes!

#104 User is offline   bigred 

  • Member
  • PipPip
  • Group: Members
  • Posts: 166
  • Joined: 09-August 03

Posted 11 February 2009 - 03:14 AM

Working perfectly. Thanks for the info illfame, and for sharing!

#105 User is offline   bartosz31 

  • Group: Members
  • Posts: 2
  • Joined: 16-December 08

Posted 05 March 2009 - 12:34 PM

Please indicate how you could script the whole operating

#106 User is offline   Hexenkönig_92 

  • Group: Members
  • Posts: 1
  • Joined: 14-March 09

  Posted 14 March 2009 - 01:37 PM

Hello,
Sorry for my English, I speak German.

So here's my solution with the latest LogMeIn:

1.)Steps from slimbyte, a bit changed:

1. on InstallExecuteSequence table, find GetDeployInfo action and change condition
from: UILevel=2 AND UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"
into: UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"

2. on InstallExecuteSequence table add following 3 actions:
action: GetLMIRegistrationCookie condition: NOT Installed sequence: 3710
action: LMIGetLicense condition: NOT Installed sequence: 3730
action: LMIGetLicenseForProfile condition: NOT Installed sequence: 3720

3. on Property table change following properties:
find LICENSETYPE property and change value from: IT into: free

3.i. on InstallExecuteSequence table, find CreateUserSetProperty action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

3.ii. on InstallExecuteSequence table, find CreateUser action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

2.)Creating a batch file with following source: (new empty text file-> open with editor->write in following text-> save as file.bat)

@echo off
logmein.msi /qr USERPASSWORD=pcpassword USERVERIFYPWD=pcpassword USEREMAIL=email@email.com USERWEBPASSWORD=password LicenseType=free
del logmein.msi
del setup.bat


Information:
@echo off: This hides the code during installation so that the installer can't see the passwords etc.
del logmein.msi/setup.bat: This deletes those two files so that the user can't find the inforations about the adresses etc.

3.)Puting all that into Inno Setup:

; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "LogMeIn"
#define MyAppVerName "LogMeIn"
#define MyAppPublisher "LogMeIn"
#define MyAppURL "http://www.LogMeIn.com/"
#define MyAppExeName "LogMeIn.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{CDA00B15-ADF5-4240-A14B-D436CF489D61}
AppName={#MyAppName}
AppVerName={#MyAppVerName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\Z-Tuning
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
OutputDir=C:\output\
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes

[Languages]
Name: english; MessagesFile: compiler:Default.isl
Name: german; MessagesFile: compiler:Languages\German.isl

[Files]
Source: C:\Dokumente und Einstellungen\EBI\Desktop\versuche\file.bat; DestDir: {app}; Flags: ignoreversion
Source: C:\Dokumente und Einstellungen\EBI\Desktop\versuche\LogMeIn.msi; DestDir: {app}; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: {group}\{#MyAppName}; Filename: {app}\{#MyAppExeName}

[Run]
Filename: {app}\{#MyAppExeName}; Description: {cm:LaunchProgram,{#MyAppName}}


information:
innosetup copy's the files file.bat and LogMeIn.msi into a folder, and after installation, file.bat starts automaticly and installs the LogMeIn.msi

One little disadvantage is an error screen durning installation of LogMeIn.msi. But if you just klick on the ok button, Installation continues and it works perfect.

So Thank's to all,
Greetings from Switzerland:
Andreas

This post has been edited by Hexenkönig_92: 15 March 2009 - 05:51 AM


#107 User is offline   gonhvvjvo 

  • Group: Members
  • Posts: 1
  • Joined: 04-December 08

Posted 15 March 2009 - 09:19 PM

View PostHexenkönig_92, on Mar 15 2009, 02:37 AM, said:

Hello,
Sorry for my English, I speak German.

So here's my solution with the latest LogMeIn:

1.)Steps from slimbyte, a bit changed:

1. on InstallExecuteSequence table, find GetDeployInfo action and change condition
from: UILevel=2 AND UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"
into: UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"

2. on InstallExecuteSequence table add following 3 actions:
action: GetLMIRegistrationCookie condition: NOT Installed sequence: 3710
action: LMIGetLicense condition: NOT Installed sequence: 3730
action: LMIGetLicenseForProfile condition: NOT Installed sequence: 3720

3. on Property table change following properties:
find LICENSETYPE property and change value from: IT into: free

3.i. on InstallExecuteSequence table, find CreateUserSetProperty action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

3.ii. on InstallExecuteSequence table, find CreateUser action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

2.)Creating a batch file with following source: (new empty text file-> open with editor->write in following text-> save as file.bat)

@echo off
logmein.msi /qr USERPASSWORD=pcpassword USERVERIFYPWD=pcpassword USEREMAIL=email@email.com USERWEBPASSWORD=password LicenseType=free
del logmein.msi
del setup.bat


Information:
@echo off: This hides the code during installation so that the installer can't see the passwords etc.
del logmein.msi/setup.bat: This deletes those two files so that the user can't find the inforations about the adresses etc.

3.)Puting all that into Inno Setup:

; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "LogMeIn"
#define MyAppVerName "LogMeIn"
#define MyAppPublisher "LogMeIn"
#define MyAppURL "http://www.LogMeIn.com/"
#define MyAppExeName "LogMeIn.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{CDA00B15-ADF5-4240-A14B-D436CF489D61}
AppName={#MyAppName}
AppVerName={#MyAppVerName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\Z-Tuning
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
OutputDir=C:\output\
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes

[Languages]
Name: english; MessagesFile: compiler:Default.isl
Name: german; MessagesFile: compiler:Languages\German.isl

[Files]
Source: C:\Dokumente und Einstellungen\EBI\Desktop\versuche\file.bat; DestDir: {app}; Flags: ignoreversion
Source: C:\Dokumente und Einstellungen\EBI\Desktop\versuche\LogMeIn.msi; DestDir: {app}; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: {group}\{#MyAppName}; Filename: {app}\{#MyAppExeName}

[Run]
Filename: {app}\{#MyAppExeName}; Description: {cm:LaunchProgram,{#MyAppName}}


information:
innosetup copy's the files file.bat and LogMeIn.msi into a folder, and after installation, file.bat starts automaticly and installs the LogMeIn.msi

One little disadvantage is an error screen durning installation of LogMeIn.msi. But if you just klick on the ok button, Installation continues and it works perfect.

So Thank's to all,
Greetings from Switzerland:
Andreas



Sorry for my English, I speak Thai.

Thank you for Hexenkönig_92. It work great!.

#108 User is offline   itkamaraj 

  • Group: Members
  • Posts: 2
  • Joined: 18-March 09

Posted 18 March 2009 - 11:29 PM

View Postgonhvvjvo, on Mar 15 2009, 10:19 PM, said:

View PostHexenkönig_92, on Mar 15 2009, 02:37 AM, said:

Hello,
Sorry for my English, I speak German.

So here's my solution with the latest LogMeIn:

1.)Steps from slimbyte, a bit changed:

1. on InstallExecuteSequence table, find GetDeployInfo action and change condition
from: UILevel=2 AND UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"
into: UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"

2. on InstallExecuteSequence table add following 3 actions:
action: GetLMIRegistrationCookie condition: NOT Installed sequence: 3710
action: LMIGetLicense condition: NOT Installed sequence: 3730
action: LMIGetLicenseForProfile condition: NOT Installed sequence: 3720

3. on Property table change following properties:
find LICENSETYPE property and change value from: IT into: free

3.i. on InstallExecuteSequence table, find CreateUserSetProperty action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

3.ii. on InstallExecuteSequence table, find CreateUser action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

2.)Creating a batch file with following source: (new empty text file-> open with editor->write in following text-> save as file.bat)

@echo off
logmein.msi /qr USERPASSWORD=pcpassword USERVERIFYPWD=pcpassword USEREMAIL=email@email.com USERWEBPASSWORD=password LicenseType=free
del logmein.msi
del setup.bat


Information:
@echo off: This hides the code during installation so that the installer can't see the passwords etc.
del logmein.msi/setup.bat: This deletes those two files so that the user can't find the inforations about the adresses etc.

3.)Puting all that into Inno Setup:

; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "LogMeIn"
#define MyAppVerName "LogMeIn"
#define MyAppPublisher "LogMeIn"
#define MyAppURL "http://www.LogMeIn.com/"
#define MyAppExeName "LogMeIn.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{CDA00B15-ADF5-4240-A14B-D436CF489D61}
AppName={#MyAppName}
AppVerName={#MyAppVerName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\Z-Tuning
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
OutputDir=C:\output\
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes

[Languages]
Name: english; MessagesFile: compiler:Default.isl
Name: german; MessagesFile: compiler:Languages\German.isl

[Files]
Source: C:\Dokumente und Einstellungen\EBI\Desktop\versuche\file.bat; DestDir: {app}; Flags: ignoreversion
Source: C:\Dokumente und Einstellungen\EBI\Desktop\versuche\LogMeIn.msi; DestDir: {app}; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: {group}\{#MyAppName}; Filename: {app}\{#MyAppExeName}

[Run]
Filename: {app}\{#MyAppExeName}; Description: {cm:LaunchProgram,{#MyAppName}}


information:
innosetup copy's the files file.bat and LogMeIn.msi into a folder, and after installation, file.bat starts automaticly and installs the LogMeIn.msi

One little disadvantage is an error screen durning installation of LogMeIn.msi. But if you just klick on the ok button, Installation continues and it works perfect.

So Thank's to all,
Greetings from Switzerland:
Andreas



Sorry for my English, I speak Thai.

Thank you for Hexenkönig_92. It work great!.



Thanks a lot for your explanantion.

Right now, i dont want silent installation. But i need to pre-poulate the values.

Right now, i did the following things
1. In Orca, highlight the Property table
2. Press CTRL-R on your keyboard (or Tables -> Add Row in the menu bar)
3. In the Property field put USEREMAIL and in the Value field put your account's email address
4. Repeat steps 2-3 for USERWEBPASSWORD, USERPASSWORD, and USERVERIFYPWD

Above are working perfectly

I need to still customize the installer by following actions :

1) "Software Options" screen - Just need to gray it out
2) "Description" - can i have a message saying, "Please enter your
subscription email address"
3) "Computer Access Code" - can i have it non-editable for
the user? ( pre-filled by using orca)
4) Can i eliminate the choice of LogMeIn products (Free should be default)
5) Can i eliminate the "Create New" account feature?

please answer for my above questions. i know it needs a small tweak in my msi.

thanks
kamaraj.s

#109 User is offline   kakkola 

  • Group: Members
  • Posts: 3
  • Joined: 19-March 09

Posted 19 March 2009 - 04:17 AM

i followed the entire guid, but logmein doesnt get installed.

i tried to do the command LogMeIn.msi /quite from prompt after values change, but nothing happen..can't see anywhere LMI installed.


any clue?

#110 User is offline   Camelot_One 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 20-November 07

Posted 19 March 2009 - 07:50 AM

View Postkakkola, on Mar 19 2009, 04:17 AM, said:

i followed the entire guid, but logmein doesnt get installed.

i tried to do the command LogMeIn.msi /quite from prompt after values change, but nothing happen..can't see anywhere LMI installed.


any clue?

I haven't taken the time to look at it lately, but I do know that they have made slight changes to the MSI since the original proceedure was posted. Some of the heading names have changed. There is also a unique appID now from what I remember (though that may not be the exact heading name). It is different between the different versions of the MSI. Thus, using the previously posted feature (with changes for the heading titles) on a downloaded IT copy of the MSI works, but not on the "Free" version download. I believe its just a matter of a key change within the MSI itself.

But like I said, I haven't taken the time to look into it lately. I will TRY to find time to do so over the weekend, but no promises.

#111 User is offline   kakkola 

  • Group: Members
  • Posts: 3
  • Joined: 19-March 09

Posted 19 March 2009 - 08:47 AM

View PostCamelot_One, on Mar 19 2009, 02:50 PM, said:

View Postkakkola, on Mar 19 2009, 04:17 AM, said:

i followed the entire guid, but logmein doesnt get installed.

i tried to do the command LogMeIn.msi /quite from prompt after values change, but nothing happen..can't see anywhere LMI installed.


any clue?

I haven't taken the time to look at it lately, but I do know that they have made slight changes to the MSI since the original proceedure was posted. Some of the heading names have changed. There is also a unique appID now from what I remember (though that may not be the exact heading name). It is different between the different versions of the MSI. Thus, using the previously posted feature (with changes for the heading titles) on a downloaded IT copy of the MSI works, but not on the "Free" version download. I believe its just a matter of a key change within the MSI itself.

But like I said, I haven't taken the time to look into it lately. I will TRY to find time to do so over the weekend, but no promises.


thank you so much,

anyway so this wont work on free version actually?

thanks again for your answers =)

#112 User is offline   Camelot_One 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 20-November 07

Posted 19 March 2009 - 09:35 AM

Its not that it won't work on the free version, its just that there is an additional property value that has to be changed IN the free version to match the IT version. I'll see if I can find it.

#113 User is offline   kakkola 

  • Group: Members
  • Posts: 3
  • Joined: 19-March 09

Posted 19 March 2009 - 09:37 AM

View PostCamelot_One, on Mar 19 2009, 04:35 PM, said:

Its not that it won't work on the free version, its just that there is an additional property value that has to be changed IN the free version to match the IT version. I'll see if I can find it.



shouldnt be it changed from "IT" to "free"? I read something about it

#114 User is offline   itkamaraj 

  • Group: Members
  • Posts: 2
  • Joined: 18-March 09

Posted 19 March 2009 - 10:39 PM

Anybody answer for my questions

thanks
kamaraj.s

#115 User is offline   Camelot_One 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 20-November 07

Posted 19 March 2009 - 11:43 PM

View Postkakkola, on Mar 19 2009, 09:37 AM, said:

View PostCamelot_One, on Mar 19 2009, 04:35 PM, said:

Its not that it won't work on the free version, its just that there is an additional property value that has to be changed IN the free version to match the IT version. I'll see if I can find it.



shouldnt be it changed from "IT" to "free"? I read something about it

There is a property that has to be changed to allow silent install of the Free, (default is IT and above only)
But the one I'm thinking of was a numeric code. It isn't present in the older version I still use for my installs, I ran into it when I was trying out the latest version.

#116 User is offline   Geeks123 

  • Group: Members
  • Posts: 6
  • Joined: 24-March 09

Posted 24 March 2009 - 10:59 AM

I've downloaded the latest version, made the necessary changes and have had no luck with a silent install. As an echo to others on this thread, would it be possible for someone to provide me with an updates MSI file that is known to work?

#117 User is offline   Camelot_One 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 20-November 07

Posted 28 March 2009 - 02:07 PM

I downloaded the latest version today, and found 2 lines in the msi that cause no problems for normal install, but break the silent. Below are the updated instructions, tested and confirmed working on the version available today:
--credit to slimbyte for finding a lot of this--

1. on InstallExecuteSequence table, find GetDeployInfo action and change condition
from: UILevel=2 AND UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"
into: UPGRADEPRODUCT<>1 AND InstallMode<>"Remove"

2. on InstallExecuteSequence - right click on the right panel, select "Add Row" to add following 3 actions:
action: GetLMIRegistrationCookie condition: NOT Installed sequence: 3710
action: LMIGetLicense condition: NOT Installed sequence: 3730
action: LMIGetLicenseForProfile condition: NOT Installed sequence: 3720

3. on InstallExecuteSequence table, find CreateUser action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

4. on InstallExecuteSequence table, find CreateUserSetProperty action and change condition
from: CANCREATEUSER AND PASSWORDSOK="true" AND VersionNT AND REMOVE<>"ALL"
into: VersionNT AND REMOVE<>"ALL"

5. on InstallExecuteSequence table -
Right click "SetX64Path" and select "Drop Row". Repeat for "SetX86Path"

6. on Property table find LICENSETYPE and change condition
from: IT
into: free

7. on Property table -
Right click "DEPLOYID" and select "Drop Row"

8. Click "File - Save" (do not save as a new file) Execute using:
logmein.msi /quiet USERPASSWORD=pcpassword USERVERIFYPWD=pcpassword USEREMAIL=email@email.com USERWEBPASSWORD=password LicenseType=free

If this doesn't work, try running it from a batch file to catch the errorlevel
Save in the same directory as LogMeIn.msi , save as "whateveryouwant.cmd"
@Echo Off
Title LogMeIn Installer
Echo Running LogMeIn.msi & start /wait logmein.msi /quiet USERPASSWORD=pcpassword USERVERIFYPWD=pcpassword USEREMAIL=email@email.com USERWEBPASSWORD=password LicenseType=free
Echo. & Echo. & Echo. & Echo. & Echo.
If %errorlevel% == 0 (GOTO SUCCESS) Else Echo INSTALLATION FAILED! Errorlevel: %errorlevel% & Echo. & Echo. & Echo. & Echo. & Echo.
pause
:SUCCESS
exit


If the command window closes on its own, LMI should be installed correctly. If not, post your errorcode and I'll look into it.

#118 User is offline   Frank1970 

  • Group: Members
  • Posts: 2
  • Joined: 31-March 09

Posted 31 March 2009 - 05:06 AM

Hi.

First of all: Great work. :thumbup But:

I did it like Camelot_One but there will be an error:

Posted Image

Any ideas?

Is it possible to check with a litte script before installing Logmein, wether the user has admin rights?

Thanks in advance.

#119 User is offline   Camelot_One 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 20-November 07

Posted 31 March 2009 - 07:27 AM

If you will translate that error message for me, I'll see if I can reproduce it.

Also, when you download the logmein.msi, is it the same (english) version I would? Or is there a separate file for the alternate language?

Edit - if you followed my proceedure correctly, you wouldn't see that screen at all. Or any logmein screens. Not that it would fix your problem, but it makes me wonder if you are running the command line wrong.

This post has been edited by Camelot_One: 31 March 2009 - 07:31 AM


#120 User is offline   Frank1970 

  • Group: Members
  • Posts: 2
  • Joined: 31-March 09

Posted 31 March 2009 - 07:35 AM

Seems to be the same Version - you can choose between german and english.

Translation:

Unable to execute file: ...

CreateProcess failed; code 193;
%1 is no allowance Win32-Application.

:blink:

Edit: My command line:

@echo off
logmein.msi /quiet USERPASSWORD=pcpassword USERVERIFYPWD=pcpassword USEREMAIL=*** USERWEBPASSWORD=*** LicenseType=free
del logmein.msi
del setup.bat

This post has been edited by Frank1970: 31 March 2009 - 07:40 AM


Share this topic:


  • 8 Pages +
  • « First
  • 4
  • 5
  • 6
  • 7
  • 8
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy