*********************************************************************************
* Description: Putty setting and session info export/import via Windows registry
* Date: 06:43 PM EST, 03/14/2018
*********************************************************************************
<1> Exporting session info from Putty:
|
|__ CMD> regedit /e "C:\path\putty-sessions.reg" HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions
|
|__ o. Then, a file named "putty-sessions.reg" will be created in the sepcific path.
<2> Exporting all settings from Putty:
|
|__ CMD> regedit /e "C:\path\putty.reg" HKEY_CURRENT_USER\Software\SimonTatham
<3> Importing *.reg files into registry on a new server:
|
|__ CMD> regedit /i C:\path\putty-sessions.reg
|
|__ CMD> regedit /i C:\path\putty.reg
<4> Reference:
|
|__ o. https://stackoverflow.com/questions/13023920/how-to-export-putty-sessions-list
Your Comments