GoToConnect Toolkit for LogMeIn Central
The goal of this article is to present scripts and setup options for LogMeIn Central to manage GoToConnect (GTC) host applications and receive alerts when they malfunction. It also describes how the software can be used “as of today” to enable LogMeIn Central as the tool that manages GTC host activity remotely.
LogMeIn Central's One2Many feature is the right tool to create a plan and perform it on multiple computers.
- On the One2Many page, select Create Task.
- Select Create Plan to execute the task.
- Choose an option to run tasks:
- Install and update software (on Windows and Mac hosts)
- The prerequisite of this option is that the IT professional is informed on the most up-to-date version of the software to be able to upload and distribute it.
- Execute a remote command script (on Windows hosts only)
- This option enables the IT professional to always use the most recent version of the software.
Use the following script for the Command to execute option:
powershell –c “(new-object System.Net.WebClient).DownloadFile(’https://link.gotoconnect.com/windows’,’jive.exe’)” Start-Process -Wait -FilePath jive.exe -Argument "/silent" -PassThru rm jive.exe $InstalledApps = Get-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\* | Select DisplayName $FilteredInstalledApps = $InstalledApps | Where-Object {$_ -match "GoTo "} if(@($FilteredInstalledApps).Length -eq 1) { exit 0; } else { exit -1; }
- This option enables the IT professional to always use the most recent version of the software.
- Custom Mac (on Mac hosts only)
- This option enables the IT professional to always use the most recent version of the software.
Use the following script for the Command to execute option:
curl https://goto-install-scripts.s3.amazonaws.com/installgotoconnect.sh | bash
- This option enables the IT professional to always use the most recent version of the software.
- Install and update software (on Windows and Mac hosts)
- Select Save and Continue.
- Select the hosts where you want to run the task and select Save and Continue.
- Type your admin credentials for the hosts and select Run now.