Putty에 등록된 세션 리스트 정보를 백업하여 다른 곳에 그대로 사용할 경우 아래과 같이 Registry에 등록 된 값을 이용할 수 있다.
1. Putty Session Export
1) cmd.exe
Session 만 내보내기 ( Only Sessions )
regedit /e "%USERPROFILE%\Desktop\putty-sessions.reg" HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions
모든 세팅 정보 내보내기 ( All Settings)
regedit /e "%USERPROFILE%\Desktop\putty.reg" HKEY_CURRENT_USER\Software\SimonTatham
2) powershell.exe
Session 만 내보내기( Only Sessions )
reg export HKCU\Software\SimonTatham\PuTTY\Sessions ([Environment]::GetFolderPath("Desktop") + "\putty-sessions.reg")
모든 세팅 정보 내보내기( All Settings)
reg export HKCU\Software\SimonTatham ([Environment]::GetFolderPath("Desktop") + "\putty.reg")
2. Putty Session Import
1) cmd.exe
## Only Sessions List
regedit /i putty-sessions.reg
## All Setting Info
regedit /i putty.reg
2) Powershell.exe
## Only Sessions List
reg import putty-sessions.reg
## All Setting Info
reg import putty.reg