0 vote
Hi,
Is it possible to add the option "Automatically close session after [V]" to batch edit?
Best regards,
Kaj Graficom
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
Hi,
Thank you that works :)
Best regards,
Kaj Graficom