LogMeIn support sites no longer support Microsoft's Internet Explorer (IE) browser. Please use a supported browser to ensure all features perform as they should (Chrome / FireFox / Edge).

The GoTo support site no longer supports Safari 15. Please upgrade your browser to Safari 16 (or newer) or switch to a supported browser such as Google Chrome, Mozilla Firefox, or Microsoft Edge.

Looking to add seats to your Rescue subscription or get a demo of Mobile Support or Camera Sharing? Request a quote.

We are currently experiencing an unplanned outage for this product. View Service Status
  • Support
  • Products

    Explore support by product

    GoTo Connect

    All-in-one phone, meeting and messaging software

    GoTo Meeting

    Video and audio meeting software

    GoTo Webinar

    All-in-one webinar and virtual events software

    GoTo Room

    Conference room hardware

    GoTo Training

    Online training software

    OpenVoice

    Audio conferencing software

    Grasshopper

    Lightweight virtual phone system

    join.me

    Video conferencing software

    LogMeIn Resolve

    IT management & support

    LogMeIn Resolve MDM

    Mobile device management

    LogMeIn Pro

    Remote device access

    LogMeIn Central

    Remote monitoring & management

    LogMeIn Rescue

    Remote IT support

    GoToMyPC

    Remote desktop access

    GoToAssist

    Remote support software

    Hamachi

    Hosted VPN service

    RemotelyAnywhere

    On-prem remote access solution
  • Community
  • Trainings
  • Service Status
  • Want to try a download free option?

    Try the new web console experience!

    Rescue WebTC
  • Language selector icon Language selector icon
    • English
    • Français
    • Italiano
    • Deutsch
    • Español
    • Português
    • Nederlands
  • Contact Support
  • Service Status
  • User Avatar User Avatar
    • Support
    • Contact Support
    • Browse Products
    • Service Status
    • Community
    • Trainings
    • Sign in
    • User Avatar
    • My Account
    • Personal Info
    • Sign In & Security
    • Billing Center
    • https://link.goto.com/myaccount-billing
    • My GoTo Connect
    • My Meetings
    • My Webinars
    • My Trainings
    • My Conferences
    • My Resolutions
    • My Mobile Devices
    • My Sessions
    • My Sessions
    • My Incidents
    • Sign out
  • Technician Content
  • Providing Support
  • Support Desktop Devices
  • Remote Control
  • Technician Console Remote Control Toolkit
product logo
Back button image Back
Back button image
product logo

Store recordings in the cloud

The popularity of cloud solutions among our customers and their integration partners created the demand that upload options in the Technician Console should include some type of clouds or other data store hosts.

By default, the Technician Console (TC) offers four types of target destinations where customers can upload screen recordings:

  • Remote folders referenced as \\machine\folder-path; drive:\folder-path
  • FTP hosts
  • HTTP hosts
  • HTTPS hosts
Since the upload functionality of the TC can be customized, customers can initiate upload technically to any host utilizing the following benefits:
  • Use specific authentication defined by the customer, e.g. SSO login
  • Run preliminary checks on the recordings
  • Upload to multiple targets
  • Analyze statistics

How does it work?

The Technician Console calls a script file that executes the upload, so the TC keeps control over the files, tells when and which file has to be uploaded. If the upload is successful, the file is deleted from its folder. The TC considers the upload successful when the file is gone from the folder. If the file remains in the folder after the execution of the script, the TC considers the upload failed, and retains the file for further upload attempts. The life-cycle of failed files is limited, just as in the case of the default targets (remote folder, FTP, HTTP ...).

Note: In order to use script files for the upload, they have to be set up in the Admin Center (AC).

Use cases

Uploading recordings with the script provided by Rescue, rclone provided by the customer

Note: This use is recommended through the Desktop Technician Console
  1. The customer sets the target folder in the Admin Center as "custom:CustomSRUploader.cmd".
  2. The customer downloads latest version of rclone.
  3. The customer copies rclone.exe command line tool to the same folder where LMIRTechConsole.exe is installed to e.g. C:\Program Files (x86)\LogMeIn Rescue Technician Console\LogMeInRescueTechnicianConsole_x64.
  4. The customer can pre-configure an rclone "remote" named "RescueSRUpload:".
Result : The TC moves the screen recording files to the remote RescueSRUpload:

Configuring "CustomSRUploader.cmd"

Note: Recommended through the Technician Console in a supported browser
  1. The customer sets the target folder in the Admin Center as "custom:CustomSRUploader.cmd"
  2. The customer downloads the latest version of rclone, and saves it to a secure folder.
  3. The customer creates their own script.
  4. The customer sets the environment variables.
    Variable Description
    RESCUE_SR_UPLOADER
    the absolute path of the customer's script or binary
    RESCUE_SR_COMMAND_BEG
    parameters on the script command line preceding the name of the upload file
    RESCUE_SR_COMMAND_END

    parameters on the script command line after the name of upload file

    If RESCUE_SR_UPLOADER is not defined, the script will set the parameters automatically as below:

    SET "RESCUE_SR_UPLOADER=%SCRIPT_FOLDER%rclone.exe"
    SET RESCUE_SR_COMMAND_BEG=move
    SET RESCUE_SR_COMMAND_END=RescueSRUpload: -v -v -v

The customer has their own script, eg. "MyUploadScript.cmd"

Recommended when the customer has their own solutions, and no change is allowed in environment variables, or TC install folder. In this case default CustomSRUploader.cmd script is completely ignored.

  1. The customer sets the target folder in the Admin Center as custom:c:\MyScripts\MyUploadScript.cmd
  2. The TC calls the customer’s script every time a screen recording needs to be uploaded.
  3. The TC calls the script with one command line parameter, the absolute path of the file to be uploaded.
  4. The customer's script does the upload on its own. If the upload is successful the local file is deleted.
  5. The TC waits for the upload process to end, and after that it checks if the local file was deleted.

Result: If the file still exists, the upload failed, and reported at the TC console log. At the moment the return code of the customer's script is not used by the TC.

Creating and debugging a script

The Technician Console executes the script in a Windows command shell, but hidden, without UI. Since by default the programmer cannot see the standard output, or the errors of the script, the powerful features offered by the TC come to the rescue when debugging is needed.

Switching on UI for a Rescue terminal session

  1. Copy the GUID in parentheses onto the Clipboard - {f9d5d4ce-6dc7-44f2-875a-90426e75f4d6}.
  2. Start the Technician Console, that will check clipboard for the GUID at startup.
  3. While the TC runs, it will show command shell GUI for the script upload.
Now a PAUSE command can be inserted into the script for testing purposes, to see the script messages in the GUI.
Note: PAUSE is not allowed in the production codes because it will block the actual TC and freeze the TC thread.

If the programmer/engineer logs in to a folder with editing permissions, the script will log into the screen recording local folder of the TC by default.

Eg: C:\Users\rescueuser\AppData\Local\Temp\LMIRescueScreenRecording_1746009\CustomSRUploader.log

The script receives the full path of the screen recording file, quoted by "...", as a command line parameter 1.

Script sample installed by the TC

SET SCRIPT_FOLDER=%~dp0
SET SCRIPT_LOGNAME=CustomSRUploader.log
SET SCREEN_RECORDING_FOLDER=%~dp1
SET SCREEN_RECORDING_NAME=%~n1
 
SET LOG_PATH="%SCREEN_RECORDING_FOLDER%%SCRIPT_LOGNAME%"
SET "LOG=ECHO >>%LOG_PATH% "
 
TITLE Upload: %SCREEN_RECORDING_NAME%
 
%LOG% [%DATE% %TIME%]: "-----------------------------------------------" 
%LOG% [%DATE% %TIME%]: "Custom Script started"
 
%LOG% [%DATE% %TIME%]: "%RESCUE_SR_UPLOADER%" %RESCUE_SR_COMMAND_BEG% %1 %RESCUE_SR_COMMAND_END%
 
IF NOT DEFINED RESCUE_SR_UPLOADER (
 SET "RESCUE_SR_UPLOADER=%SCRIPT_FOLDER%rclone.exe"
 SET RESCUE_SR_COMMAND_BEG=move
 SET RESCUE_SR_COMMAND_END=RescueSRUpload: -v -v -v
)
Article last updated: 3 January, 2025

Need more help?

Contact icon Contact support
Community icon Ask the Community
Training icon Attend trainings
Video icon Watch videos
  • Language selector icon Language selector icon
    • English
    • Français
    • Italiano
    • Deutsch
    • Español
    • Português
    • Nederlands
  • About Us
  • Terms of Service
  • Privacy Policy
  • Trademark
  • Do Not Sell or Share My Personal Info
  • Browse Products
  • Copyright © 2025 GoTo Group, Inc. All rights reserved

Collaboration Products

GoTo Connect

GoTo Meeting

GoTo Webinar

GoTo Training

join.me

Grasshopper

OpenVoice

Remote Solutions Products

GoTo Resolve

Rescue

GoToAssist

Access Products

Pro

Central

GoToMyPC