The GoTo Community is currently experiencing some technical issues affecting new posts and comments. We are actively working with our service provider and apologize for the frustration.
Forum Discussion
KevinA
16 years agoRetired GoTo Contributor
One2Many Script Repository
Welcome to the LogMeIn Central Script Repository!
What is it? A library of scripts to help you execute automated tasks and manage LogMeIn Pro² computers without having to access them manually. ...
- 8 years ago
https://github.com/knix15/LogMeIn-One2Many-Community-Scripts/
Scripts can be found here as well for better future organization.
atilley
11 years agoNew Contributor
Hi all, I've been using the following script to update the Logmein client via One2Many.
@echo off
cd %TEMP%
if %PROCESSOR_ARCHITECTURE% equ AMD64 goto amd64
echo cd "%ProgramFiles%\logmein\x86\update" > lmiupdate.cmd
goto x86done
:amd64
echo cd "%ProgramFiles(x86)%\logmein\x64\update" > lmiupdate.cmd
:x86done
echo raupdate.exe /s >> lmiupdate.cmd
echo exit >> lmiupdate.cmd
start lmiupdate.cmd
This was updating in Logmein client using a version prior to 5208 up to version 5208. Now version 5220 is available, but the script is not updating clients using 5208 to 5220. However, client's using a version before 5208 are being updated to 5220 using the script above. All that being said, any ideas why this might be occuring? Any input would be GREATLY appreciated!
- atilley11 years agoNew ContributorAlso, I believe credit for this script is due to joelasaro, from this very thread :).
- joelasaro11 years agoActive Contributor
Thanks, but to be fair I just reposted what I had scrapped from other places like spiceworks and this random LMI page: /html/assets/UpdateLogMeIn.txt
Now to your question, this process of updating from the command line (what the batch file is doing) has always been a bit inconsistent for me. It definitely doesn't seem to work as consistently as doing the update form the GUI of the LMI client. That said, I just ran the script (I haven't run it in a while as I haven't had a real need) and it is definitely updating at least some LMI endpoints to the latest 5220. I think you may have to just be patient with it. I vaguely recall a support ticket I opened once about this where I was told something to the effect that LMI pushes the latest updates out incrementally and not to all instances at once.
Hope that helps. Sure which LMI would just build what I feel is very basic functionality for an RMM tool into the package and we could skip this stuff.
- atilley11 years agoNew Contributor
Thanks, I appreciate your input! This is kind of what I expected, I've noticed something like this in the past when updating the Logmein client.