有办法做到这一点吗?

还是我必须手动从登记处取每一条记录?


当前回答

m0nhawk的答案在Windows 10上对我不起作用——它需要更高的命令提示符,并且拒绝发出文件。

这是可行的,而且不需要抬高:

reg export HKEY_CURRENT_USER\Software\SimonTatham\PuTTY putty.reg

其他回答

对于那些不想打乱注册表的人,已经创建了一个保存到文件的putty变体。网址:http://jakub.kotrla.net/putty/

如果putty团队能够将此作为主要发行版的一个选项,那就太好了。

@m0nhawk发布的答案似乎在我在Windows 7机器上测试时不起作用。 相反,使用以下脚本将导出/导入putty的设置:

::export
@echo off
set regfile=putty.reg
pushd %~dp0

reg export HKCU\Software\SimonTatham %regfile% /y

popd

--

::import
@echo off
pushd %~dp0
set regfile=putty.reg

if exist %regfile% reg import %regfile%

popd

有一个PowerShell脚本在ratil。Life /first-useful-powershell-script-putty-to-ssh-config可以将会话转换为可以在.ssh/config中使用的格式。它也可以在GitHub上找到。

这段摘录包含了代码的主要内容,并将结果配置直接打印到stdout:

# Registry path to PuTTY configured profiles
$regPath = 'HKCU:\SOFTWARE\SimonTatham\PuTTY\Sessions'

# Iterate over each PuTTY profile
Get-ChildItem $regPath -Name | ForEach-Object {

    # Check if SSH config
    if (((Get-ItemProperty -Path "$regPath\$_").Protocol) -eq 'ssh') {
        # Write the Host for easy SSH use
        $host_nospace = $_.replace('%20', $SpaceChar)
        $hostLine =  "Host $host_nospace"

        # Parse Hostname for special use cases (Bastion) to create SSH hostname
        $puttyHostname = (Get-ItemProperty -Path "$regPath\$_").HostName
        if ($puttyHostname -like '*@*') {
            $sshHostname = $puttyHostname.split("@")[-1]
            }
        else { $sshHostname = $puttyHostname }
        $hostnameLine = "`tHostName $sshHostname"   

        # Parse Hostname for special cases (Bastion) to create User
        if ($puttyHostname -like '*@*') {
            $sshUser = $puttyHostname.split("@")[0..($puttyHostname.split('@').length - 2)] -join '@'
            }
        else { $sshHostname = $puttyHostname }
        $userLine = "`tUser $sshUser"   

        # Parse for Identity File
        $puttyKeyfile = (Get-ItemProperty -Path "$regPath\$_").PublicKeyFile
        if ($puttyKeyfile) { 
            $sshKeyfile = $puttyKeyfile.replace('\', '/')
            if ($prefix) { $sshKeyfile = $sshKeyfile.replace('C:', $prefix) }
            $identityLine = "`tIdentityFile $sshKeyfile"
            }

        # Parse Configured Tunnels
        $puttyTunnels = (Get-ItemProperty -Path "$regPath\$_").PortForwardings
        if ($puttyTunnels) {
            $puttyTunnels.split() | ForEach-Object {

                # First character denotes tunnel type
                $tunnelType = $_.Substring(0,1)
                # Digits follow tunnel type is local port
                $tunnelPort = $_ -match '\d*\d(?==)' | Foreach {$Matches[0]}
                # Text after '=' is the tunnel destination
                $tunnelDest = $_.split('=')[1]

                if ($tunnelType -eq 'D') {
                    $tunnelLine = "`tDynamicForward $tunnelPort $tunnelDest"
                }

                ElseIf ($tunnelType -eq 'R') {
                    $tunnelLine = "`tRemoteForward $tunnelPort $tunnelDest"
                }

                ElseIf ($tunnelType -eq 'L') {
                    $tunnelLine = "`tLocalForward $tunnelPort $tunnelDest"
                }

            }

        # Parse if Forward Agent is required
        $puttyAgent = (Get-ItemProperty -Path "$regPath\$_").AgentFwd
        if ($puttyAgent -eq 1) { $agentLine = "`tForwardAgent yes" }

        # Parse if non-default port
        $puttyPort = (Get-ItemProperty -Path "$regPath\$_").PortNumber
        if (-Not $puttyPort -eq 22) { $PortLine = "`tPort $puttyPort" }

        }

        # Build output string
        $output = "$hostLine`n$hostnameLine`n$userLine`n$identityLine`n$tunnelLine`n$agentLine`n"

        # Output to file if set, otherwise STDOUT
        if ($outfile) { $output | Out-File $outfile -Append}
        else { Write-Host $output }
    }

}

我使用putty连接管理器,您可以在其中创建会话数据库。复制并导入该数据库到其他计算机很容易。

请看这个便利指南

例子: 如何将putty配置和会话配置从一个用户帐户转移到另一个,例如,当创建一个新帐户时,想从旧帐户使用putty会话/配置

过程: -从旧帐户导出注册表项到一个文件 -从文件导入注册表项到新帐户

导出登记键:(从旧帐户)

登录旧帐号,例如tomold 打开普通的“命令提示符”(不是admin !) “注册表编辑器”型 导航到存储配置的注册表部分,例如[HKEY_CURRENT_USER\SOFTWARE\SimonTatham]并单击它 从文件菜单中选择“导出”或用鼠标右键单击(radio ctrl 'selected branch') 保存到文件,并命名为例如。“puttyconfig.reg” 注销了

导入reg key:(进入NEW账户)

登录新帐户,例如tom 打开普通的“命令提示符”(不是admin !) “注册表编辑器”型 从菜单中选择“Import” 选择要导入的注册表文件。“puttyconfig.reg” 完成

注意: 不要使用“管理命令提示符”,因为设置位于“[HKEY_CURRENT_USER…”regedit将以admin的身份运行,并为admin-user显示该section,而不是让用户从/或到该section进行传输。