For the complete documentation index, see llms.txt. This page is also available as Markdown.

Batch actions samples

The Batch actions allow for a quick way to modify multiple sessions at once, but within Remote Desktop Manager itself.

To be able to create your PowerShell script, you would need the name of the field(s) that you would like to update. To retrieve the exact name of the field, right-click on your session and select Clipboard – Copy. You can then paste the information in a text editor to retrieve the name of the field(s) that you would like to modify via the Custom PowerShell Command.

Since they use the Powershell technology, we provides samples in this section because the fields are the same when accessed through our Batch Actions or through Powershell.

Samples

Disable Only send password in HTML Password Field option in Website sessions

$connection.Web.OnlySendPasswordInPasswordField = $false;
$RDM.Save ();

Enable View Url Embedded (Information Entries)

$connection.DataEntry.ViewUrlDisplayMode = "Default";
$RDM.Save();
ViewUrlDisplayMode: "Default" = embedded, "External" = external.

Open URL (external) for web login (Information Entries)

$connection.DataEntry.DefaultAction = "OpenUrlExternal";
$RDM.Save();

SSH Shell Batch Edit (Session Type Settings)

Here are some values that you can change for this command;

LogPath: your path between ' ' (single quotes). You can also use variables. i.e. %USERPROFILE%, $NAME$, etc. In this example $LOGPATH$ is a custom variable defined in the System settings – Custom Variables.

Here are also other options that you can modify;

Convert WebSite sessions into LogMeIn sessions

Enable the "Hide script errors in all your LogMeIn sessions."

Hide navigation bar.

Change the Web Browser Application.

Enable the Sandbox Process.

Change the URL.

Change the Portal Login field.

Change Username & Password.

Please run these two one at a time

Host;

Portal;

Change a custom field value without changing the data

Please note that you would need to change "MyField" for the value that you want to replace Custom field #3 with.

Bulk update FQDN info to sessions.

Bulk Change Recording Field for Putty sessions

Change the computer field of an RDP session

Encoding

Change the expiration date of an RDP session

The date must be specified using the ISO8601 format.

Change the expiration date of an RDP session with a relative date

Use any date time operator supported by PowerShell.

Modify Page Tab Title in UI

Clear Keywords in Session

Change History Max lines for SSH Shell (Rebex)

Convert Command Line tool to a Command Line session

Change Keyboard Hook for an RDP session

Set credential property to Prompt on connection and bind it to a folder.

Last updated

Was this helpful?