Batch Edit - Auto close session after

Batch Edit - Auto close session after

0 vote

avatar

Hi,

Is it possible to add the option "Automatically close session after [V]" to batch edit?

Best regards,

Kaj Graficom

All Comments (2)

avatar

Hello,

This option can be checked on multiple entries at once using the Edit (Special Action) -> Custom Powershell Command feature.

In the example below, I have used an RDP entry to build my script. To run it on your entires, you need to select them -> Right-Click -> Edit -> Edit (Special Actions) and select "Custom Powershell Command"

Once the Custom Powershell Command window opens, paste the script below and adjust the "AutomaticallyCloseInterval" to suit your needs
$connection.AutomaticallyClose = "true"
$connection.AutomaticallyCloseInterval = "45"
$RDM.Save();

I recommend testing this on only a few entries at first in order to make sure that it works properly for you.

Best regards,

James Lafleur

avatar

Hi,

Thank you that works :)

Best regards,

Kaj Graficom