Skip to content

Replacing PuTTY with ZestSSH

PuTTY has been the default Windows SSH client for decades. ZestSSH’s desktop app (Windows, macOS, Linux) provides a modern replacement with tabbed sessions, split panes, a command palette, and cross-device sync. This guide covers how to move your PuTTY setup to ZestSSH.

PuTTY uses its own key format (.ppk files) rather than the standard OpenSSH PEM format. ZestSSH can import .ppk files directly.

  1. In ZestSSH, go to Identities > + to create a new identity.
  2. Tap Import Key.
  3. Select your .ppk file.
  4. If the key is passphrase-protected, enter the passphrase when prompted.
  5. ZestSSH converts the .ppk to OpenSSH PEM format internally and stores it securely.

ZestSSH supports PPK version 2 and version 3 files. Both RSA and Ed25519 keys in .ppk format can be imported.

Limitation: Encrypted .ppk files require the correct passphrase at import time. If you have lost the passphrase, you will need to generate a new key pair.

If you prefer to convert manually before importing:

  1. Open PuTTYgen.
  2. Load your .ppk file.
  3. Go to Conversions > Export OpenSSH key.
  4. Save the file (e.g. id_rsa).
  5. Import the exported OpenSSH file into ZestSSH.

PuTTY stores sessions in the Windows Registry under HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions. There is no built-in export, but you can extract session data.

For each PuTTY saved session:

  1. Open PuTTY, load the session.
  2. Note the Host Name, Port, Connection type, and Auto-login username (under Connection > Data).
  3. In ZestSSH, create a connection with the same details.
  4. Assign the imported identity.

For many sessions, export from the registry:

Terminal window
reg export "HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions" putty_sessions.reg

Open the .reg file in a text editor. Each session block contains HostName, PortNumber, and UserName values. Use these to create connections in ZestSSH.

If you also have an ~/.ssh/config file (from WSL, Git Bash, or Cygwin), import it directly:

  1. In ZestSSH, go to Settings > Import SSH Config.
  2. Select the config file.
  3. ZestSSH creates connections from each Host block.

PuTTY opens a separate window per connection. ZestSSH uses tabs within a single window:

  • Ctrl+T opens Quick Connect (equivalent to opening a new PuTTY window)
  • Ctrl+W closes the current tab
  • Ctrl+Tab / Ctrl+Shift+Tab cycles between tabs
  • Ctrl+1 through Ctrl+9 jumps directly to a tab
PuTTY ActionZestSSH Equivalent
Open new sessionCtrl+T (Quick Connect) or Ctrl+Shift+N (New Connection)
Duplicate sessionRight-click tab > Duplicate (or connect to same host again)
Save sessionConnections are saved automatically
Close sessionCtrl+W
ReconnectConnect to the same saved connection
PuTTY FeatureZestSSH Equivalent
Copy (select text)Select text, auto-copied (Copy on Select enabled by default)
Paste (right click)Right-click pastes (enabled by default), or Ctrl+Shift+V
Find in scrollbackCtrl+Shift+F opens search bar
Change fontSettings > Terminal Font Family (JetBrains Mono, Fira Code, etc.)
Change font sizeCtrl++ / Ctrl+- / Ctrl+0 (reset)
FullscreenF11
Scroll backMouse wheel or scrollbar
Change colorsSettings > Terminal Theme
LoggingSession Transcripts

PuTTY has no split pane support. ZestSSH offers extensive pane management:

  • Ctrl+Shift+D splits right
  • Ctrl+Shift+E splits down
  • Ctrl+\ closes the current split
  • Ctrl+Alt+1 through 8 applies layout presets (side-by-side, grid, 1+2, etc.)
  • Alt+Arrow keys navigates between panes
  • Ctrl+Shift+M maximizes/restores the focused pane

Press Ctrl+Shift+P to open the command palette --- a searchable list of every action available in ZestSSH. Type to filter: “connect”, “split”, “settings”, “broadcast”, etc. This replaces PuTTY’s menu-diving workflow.

PuTTY is often paired with WinSCP for file transfers. ZestSSH includes a built-in SFTP panel on desktop:

  • Ctrl+Shift+S opens an SFTP browser as a split pane beside your terminal.
  • Browse the remote filesystem, upload, download, rename, and delete files.
  • Drag and drop files from your desktop into the SFTP panel.

This eliminates the need for a separate WinSCP window.

PuTTY uses Pageant as an SSH agent. ZestSSH manages keys internally:

  • Keys are stored encrypted in the platform’s secure keychain.
  • There is no need for a separate agent process.
  • Agent Forwarding is a per-connection toggle in the connection editor. Enable it to let the remote server use your local keys for onward connections (e.g. git pull over SSH on a server).

If you use Pageant for non-SSH-related workflows, it can continue running independently. ZestSSH does not conflict with Pageant.

  • Serial port connections via COM port: ZestSSH supports serial-over-SSH only, not direct COM port access. If you need direct serial COM port connections, you will need to continue using PuTTY or a dedicated serial terminal.
  • Raw TCP connections: PuTTY’s “Raw” connection type is not directly available. ZestSSH supports SSH, Mosh, Telnet, and Local Shell.
  • X11 forwarding UI: ZestSSH does not have an X11 forwarding toggle. You can enable it via SSH config on the server side.
  • PuTTY’s “Change Settings” mid-session: ZestSSH’s terminal settings (font, colors) are global, not per-session. Changes apply to all terminals.

Features you gain by moving from PuTTY:

  • Mobile access: The same connections work on your Android/iOS devices with synced data.
  • Cloud Sync: End-to-end encrypted sync across all your devices.
  • Automation API: Trigger commands from Tasker, Shortcuts, or URL schemes.
  • Connection health monitoring: See which servers are reachable at a glance.
  • Broadcast mode (Ctrl+Shift+B): Type in one pane, input goes to all sessions. Useful for running the same command on multiple servers simultaneously.
  • Workspace save/restore: Save your window layout, open connections, and pane arrangement as a named workspace. Load it later to restore your exact setup.
  • System tray integration: Minimize to tray with active session count displayed.
  • Dangerous command protection: Warns before you paste destructive commands (like rm -rf /).
  1. Install ZestSSH desktop from zestssh.com
  2. Import your .ppk files as identities
  3. Re-create your most-used connections (or import from SSH config)
  4. Learn three shortcuts: Ctrl+T (connect), Ctrl+Shift+P (command palette), Ctrl+W (close)
  5. Explore split panes with Ctrl+Shift+D