SSH Shell batch edit of Session Settings

SSH Shell batch edit of Session Settings

0 vote

avatar
drew_reis
Disabled

I'd like to request a feature to batch edit SSH Shell settings like:
Scrollback Length
Font settings

Terminal Colors

Really anything under:
General -> SSH Shell

All Comments (1)

avatar

Hello,

this is already possible with the Custom Powershell command (Edit => Edit (Special Actions).. => Custom Powershell command)

Here a sample for the Scrollback Length and Font settings:


$connection.Terminal.FontMode = "Override"
$connection.Terminal.Font = "Bahnschrift"
$connection.Terminal.FontSize = "12"
$connection.Terminal.MaxScrollbackLines = "50"
$RDM.Save();


How you can get the properties?
I recommend to set up a reference Session with your preferred settings - then you can get all these properties with Copy => Clipboard

Other samples you'll find here

Regards,
Min