ContributionsMost RecentMost LikesSolutionsRe: One2Many Script Repository 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. Re: One2Many Script RepositoryAlso, I believe credit for this script is due to joelasaro, from this very thread :).Re: One2Many Script Repository 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!