有办法做到这一点吗?

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


当前回答

改进了bumerang的解决方案,可以将数据导入到可移植的PuTTY。

简单地移动导出腻子。reg(与m0nhawk解决方案)到PuTTYPortable\Data\settings\不工作。PuTTY便携式备份文件并创建新的空文件。

要解决这个问题,合并两个putty。Reg手动复制要从导出的putty迁移的配置。reg到新创建的PuTTYPortable\Data\settings\putty。在下面的线条下标记。

REGEDIT4

[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
"RandSeedFile"="D:\\Programme\\PuTTYPortable\\Data\\settings\\PUTTY.RND"

其他回答

使用此方法还可以执行大量配置更改,例如更改所有会话字体。

导出到。reg 在.reg上执行搜索并替换 删除所有会话 导入新的。reg

从这里提取:http://www.sysadmit.com/2015/11/putty-exportar-configuracion.html

启动运行, 然后在打开下拉窗口中输入:regedit 导航到,就像在windows的资源管理器: HKEY_CURRENT_USER \ \ SimonTatham软件 右键单击“SimonTatham”键(目录图标),选择导出 给这个文件起个名字(比如putty)。注册并保存到您的位置 以后使用。 关闭注册表编辑器。

完成了。

改进了bumerang的解决方案,可以将数据导入到可移植的PuTTY。

简单地移动导出腻子。reg(与m0nhawk解决方案)到PuTTYPortable\Data\settings\不工作。PuTTY便携式备份文件并创建新的空文件。

要解决这个问题,合并两个putty。Reg手动复制要从导出的putty迁移的配置。reg到新创建的PuTTYPortable\Data\settings\putty。在下面的线条下标记。

REGEDIT4

[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
"RandSeedFile"="D:\\Programme\\PuTTYPortable\\Data\\settings\\PUTTY.RND"

对于那些需要从离线注册表文件中导入Putty的人,例如,当你从崩溃的系统中恢复或简单地移动到新机器并从旧驱动器中抓取数据时,还有一个解决方案值得一提:

http://www.nirsoft.net/utils/registry_file_offline_export.html

这个伟大而免费的控制台应用程序将导出整个注册表或仅导出特定的注册表项。在我的情况下,我只是将注册表文件从旧驱动器复制到与导出工具相同的目录,然后我使用以下命令和语法在CMD窗口以管理员身份运行:

RegFileExport.exe NTUSER.DAT putty。reg”HKEY_CURRENT_USER \ Software \ SimonTatham”

在导入.reg文件并启动Putty之后,一切都就绪了。简单高效。

有一个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 }
    }

}