有办法做到这一点吗?

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


当前回答

启动运行, 然后在打开下拉窗口中输入:regedit 导航到,就像在windows的资源管理器: HKEY_CURRENT_USER \ \ SimonTatham软件 右键单击“SimonTatham”键(目录图标),选择导出 给这个文件起个名字(比如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 }
    }

}

当我尝试其他解决方案时,我得到了这个错误:

Registry editing has been disabled by your administrator.

我说,真糟糕!

我把下面的powershell脚本放在一起,用于导出和导入PuTTY设置。导出的文件是一个windows .reg文件,如果您有权限,将干净地导入,否则请使用import。Ps1加载它。

警告:像这样打乱注册表是一个坏主意™,我真的不知道我在做什么。使用以下脚本的风险由您自己承担,并准备让您的IT部门重新对您的机器进行映像,并就您正在做的事情向您提出令人不舒服的问题。

在源计算机上:

.\export.ps1

在目标机器上:

.\import.ps1 > cmd.ps1
# Examine cmd.ps1 to ensure it doesn't do anything nasty
.\cmd.ps1

export.ps1

# All settings
$registry_path = "HKCU:\Software\SimonTatham"
# Only sessions
#$registry_path = "HKCU:\Software\SimonTatham\PuTTY\Sessions"
$output_file = "putty.reg"

$registry = ls "$registry_path" -Recurse

"Windows Registry Editor Version 5.00" | Out-File putty.reg
"" | Out-File putty.reg -Append

foreach ($reg in $registry) {
  "[$reg]" | Out-File putty.reg -Append
  foreach ($prop in $reg.property) {
    $propval = $reg.GetValue($prop)
    if ("".GetType().Equals($propval.GetType())) {
      '"' + "$prop" + '"' + "=" + '"' + "$propval" + '"' | Out-File putty.reg -Append
    } elseif ($propval -is [int]) {
      $hex = "{0:x8}" -f $propval
      '"' + "$prop" + '"' + "=dword:" + $hex | Out-File putty.reg -Append
    }
  }
  "" | Out-File putty.reg -Append
}

import.ps1

$input_file = "putty.reg"

$content = Get-Content "$input_file"

"Push-Location"
"cd HKCU:\"

foreach ($line in $content) { 
  If ($line.StartsWith("Windows Registry Editor")) {
    # Ignore the header
  } ElseIf ($line.startswith("[")) {
    $section = $line.Trim().Trim('[', ']')
    'New-Item -Path "' + $section + '" -Force' | %{ $_ -replace 'HKEY_CURRENT_USER\\', '' }
  } ElseIf ($line.startswith('"')) {
    $linesplit = $line.split('=', 2)
    $key = $linesplit[0].Trim('"')
    if ($linesplit[1].StartsWith('"')) {
      $value = $linesplit[1].Trim().Trim('"')
    } ElseIf ($linesplit[1].StartsWith('dword:')) {
      $value = [Int32]('0x' + $linesplit[1].Trim().Split(':', 2)[1])
      'New-ItemProperty "' + $section + '" "' + $key + '" -PropertyType dword -Force' | %{ $_ -replace 'HKEY_CURRENT_USER\\', '' }
    } Else {
      Write-Host "Error: unknown property type: $linesplit[1]"
      exit
    }
    'Set-ItemProperty -Path "' + $section + '" -Name "' + $key + '" -Value "' + $value + '"' | %{ $_ -replace 'HKEY_CURRENT_USER\\', '' }
  }
}

"Pop-Location"

不好意思,代码不是很习惯,我不是很熟悉Powershell。欢迎改进!

出口

Cmd.exe,由于regedit,需要提高提示:

仅会话(生成文件putty-sessions。reg在桌面上):

regedit /e "%USERPROFILE%\Desktop\putty-sessions.reg" HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions

除ssh密钥外的所有设置(生成文件putty。reg在桌面上):

regedit /e "%USERPROFILE%\Desktop\putty.reg" HKEY_CURRENT_USER\Software\SimonTatham

Powershell:

仅会话(生成文件putty-sessions。reg在桌面上):

reg export HKCU\Software\SimonTatham\PuTTY\Sessions ([Environment]::GetFolderPath("Desktop") + "\putty-sessions.reg")

除ssh密钥外的所有设置(生成文件putty。reg在桌面上):

reg export HKCU\Software\SimonTatham ([Environment]::GetFolderPath("Desktop") + "\putty.reg")

进口

双击*。注册文件并接受导入。

替代方法:

Cmd.exe,需要提升命令提示符:

regedit /i putty-sessions.reg
regedit /i putty.reg

PowerShell:

reg import putty-sessions.reg
reg import putty.reg

注意:不要用你的用户名替换SimonTatham。

注意:这些命令不会导出相关的SSH密钥。

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

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

如果你像我一样,安装了新的Windows,只有在你记得putty会话之后,你仍然可以导入它们,如果你有旧的Windows硬盘驱动器或至少备份了旧的“home”目录(C:\Users\<user_name>)。

在这个目录下应该有NTUSER.DAT文件。它在默认情况下是隐藏的,所以你应该在Windows资源管理器中启用隐藏文件或使用其他文件浏览器。该文件包含旧Windows注册表的HKEY_CURRENT_USER分支。

要使用它,您需要在新的Windows上打开regedit,并选择HKEY_USERS键。

然后选择File -> Load Hive…并找到旧Windows安装的“home”目录。在这个目录下应该有NTUSER.DAT文件。它在默认情况下是隐藏的,所以,如果你没有启用显示隐藏文件在你的Windows资源管理器属性,那么你可以手动输入文件名到“Load Hive”对话框的文件名输入框,然后按enter。然后在下一个对话框窗口中输入一些键名,将旧的注册表加载到其中。例如tmp。

旧注册表的HKEY_CURRENT_USER分支现在应该可以在当前注册表的HKEY_USERS\tmp分支下访问。

现在将HKEY_USERS\tmp\Software\SimonTatham分支导出到putty中。reg文件,在你最喜欢的文本编辑器中打开这个文件,并用HKEY_CURRENT_USER替换所有HKEY_USERS\tmp字符串。现在保存.reg文件。

现在可以通过双击将该文件导入到当前的Windows注册表中。参见m0nhawk的回答如何做到这一点。

最后,在注册表编辑器中选择HKEY_USERS\tmp分支,然后选择File -> Unload Hive…并确认该操作。