I spent hours looking for a solution for this and never really found an answer. I was looking for a way to automatically and SILENTLY install LMI to my Pro account with a pre-set Access Code. LogMeIn Central provides this option under their Deploy tab, but it does NOT enter an Access Code. Since we are currently not using Active Directory or Windows passwords (Don't ask!) I required an Access Code that was the same for every PC. Here is how I did it:
I used Orca to automate our install: http://www.msfn.org/board/topic/101432-silent-install-of-logmeinmsi/page__st__140 Post #148. The thread discusses using the automatic FREE install, but you can use it for the Pro install as well. Just don't edit the LICENSETYPE property.
LogMeIn provides a silent automatic install option via a Deploy .msi script. You can find it in LogMeIn Central under Deployment (If you have it).I had to edit the .msi file because doing a SILENT install of LMI does NOT allow you to input an Access Code for every PC.
I followed the guidlines from the above post and edited a few options with ORCA within the LogMeIn.msi. Under the Property Table I added a few options such as USERPASSWORD with the value of whatever I wanted the access code to be. I then used a .bat script to push it out to our workstations using Novell Zenworks.
Here is my .bat script:
@echo off
LogMeIn.msi /q ACCOUNTEMAIL=subscriptionemail USERPASSWORD=accesscode USERVERIFYPWD=verifyaccesscode USEREMAIL=subscriptionemail USERWEBPASSWORD=subscriptionpassword
Hope this helps someone out there!