Consegui que a sessão de terminal SSH putty mudasse seu título seguindo alguns passos, como eu encontrei na Defina o título da janela do PuTTY para o nome da sessão carregada no Server Fault .
Change Window Title of Putty Terminal Session
From the PuTTY app go to Session and then define the Host Name, Port, and SSH connection type.
From Terminal -> Features, then checked the Disable remote-controlled window title changing option.
Go back to Session and then in Saved Sessions type in the hostname or session name you want that host to be defined as and press Save. You should not see that session in the list.
Now you can load the SSH session with PuTTY via the command line from that same PC but append the
-loghost "My Title"
for the title of the terminal window to have that value in it instead.Command
C:\Programs\putty.exe -load "Hostname" -ssh -l root -pw Password Hostname -loghost "My Title"
Maisrecursos
Defina o título da janela do PuTTY para o nome da sessão carregada ?