如何导出/导入PuTTy会话列表?

时间:2012-10-23 05:10:05

标签: windows registry putty

有办法做到这一点吗?

或者我必须手动从Registry注册每个记录?

15 个答案:

答案 0 :(得分:1079)

导出

cmd.exe要求提升提示:

仅限会议:

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

所有设置:

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

Powershell的:

仅限会议:

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

所有设置:

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

导入

双击*.reg文件并接受导入。

替代方式:

cmd.exe要求提升命令提示符:

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

的PowerShell:

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

注意请勿使用您的用户名替换 SimonTatham

注意:它会在当前用户的桌面上创建一个reg文件。

注意导出相关的SSH密钥。

答案 1 :(得分:39)

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

Registry editing has been disabled by your administrator.

Phooey,我说!

我将以下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不是很熟悉。欢迎改进!

答案 2 :(得分:35)

  1. 启动运行, 然后输入Open下拉窗口:regedit

  2. 导航到,就像在Window的资源管理器中一样:
    HKEY_CURRENT_USER \ Software \ SimonTatham

  3. 右键单击“SimonTatham”键(目录图标),选择“导出” 给文件命名(比方说)putty.reg并将其保存到您的位置 以后用。
  4. 关闭注册表编辑器。
  5. 完成。

答案 3 :(得分:34)

如果您要导入PuTTY Portable上的设置,可以使用putty.reg文件。

只需将其放入此路径[path_to_Your_portable_apps]PuTTYPortable\Data\settings\putty.reg即可。程序将导入它

答案 4 :(得分:19)

对于那些需要从离线注册表文件导入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后,一切都在那里。简单而有效。

答案 5 :(得分:12)

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

如果腻子团队将此作为主要发行版的选项,那将是件好事。

答案 6 :(得分:11)

导入注册表导出要比上面说的容易得多。 + 简单地:

  1. 右键单击文件
  2. 选择“合并”
  3. 在Win 7 Pro上像冠军一样工作。

答案 7 :(得分:9)

改进bumerang的解决方案,将数据导入PuTTY portable

简单地将导出的putty.reg(使用m0nhawk解决方案)移动到PuTTYPortable\Data\settings\不起作用。 PuTTY Portable备份文件并创建一个新的空文件。

要解决此问题,请同时合并putty.reg将您要迁移的配置从导出的putty.reg复制到以下行下方新创建的PuTTYPortable\Data\settings\putty.reg

REGEDIT4

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

答案 8 :(得分:9)

示例:
如何将putty配置和会话配置从一个用户帐户转移到另一个用户帐户,例如创建新帐户并希望使用旧帐户中的putty会话/配置时

<强>过程:
  - 将旧帐户的注册表项导出到文件中   - 将注册表项从文件导入新帐户

导出注册码: (来自OLD帐户)

  1. 登录OLD帐户,例如tomold
  2. 打开普通&#39;命令提示符&#39; (不是管理员!)
  3. 输入&#39; regedit&#39;
  4. 导航到存储配置的注册表部分,例如[HKEY_CURRENT_USER \ SOFTWARE \ SimonTatham]并点击它
  5. 选择&#39;导出&#39;从文件菜单或鼠标右键单击(无线电控制&#39;选择分支&#39;)
  6. 保存到文件中并为其命名,例如&#39; puttyconfig.reg&#39;
  7. 再次退出
  8. 导入注册码: (进入新帐户)

    1. 登入新帐户,例如汤姆

    2. 打开普通&#39;命令提示符&#39; (不是管理员!)

    3. 键入&#39; regedit&#39;

    4. 选择&#39;导入&#39;从菜单

    5. 选择要导入的注册表文件,例如&#39; puttyconfig.reg&#39;

    6. 完成

    7. 注意:
      不要使用&#39; admin命令提示符&#39;因为设置位于&#39; [HKEY_CURRENT_USER ...]&#39;并且regedit将以管理员身份运行,并显示该部分供管理员用户使用,而不是供用户转移和/或转移。

答案 9 :(得分:7)

@ 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

答案 10 :(得分:7)

在Windows 10上,m0nhawk的回答并不适用于我 - 它需要提升命令提示符并拒绝发出文件。

这有效并且不需要提升:

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

答案 11 :(得分:6)

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

  1. 导出到.reg
  2. 执行搜索并替换.reg
  3. 删除所有会话
  4. 导入新的.reg
  5. 从这里提取:http://www.sysadmit.com/2015/11/putty-exportar-configuracion.html

答案 12 :(得分:3)

我使用putty connection manager创建会话数据库。将该数据库复制并导入其他计算机很容易。

请参阅此handy guide

答案 13 :(得分:3)

ratil.life/first-useful-powershell-script-putty-to-ssh-config处有一个PowerShell脚本,可以将会话转换为可以在.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 }
    }

}

答案 14 :(得分:1)

如果您像我一样安装了新的Windows,并且仅在之后之后才记得有关腻子会话的信息,但是如果您使用的是旧的Windows硬盘驱动器或至少是旧的“主”目录,则仍然可以导入它们备份({{1)}。

在此目录中应该有C:\Users\<user_name>文件。默认情况下它是隐藏的,因此您应该在Windows资源管理器中启用隐藏的文件或使用其他文件浏览器。该文件包含旧Windows注册表的NTUSER.DAT分支。

要使用它,您需要在新Windows上打开HKEY_CURRENT_USER,然后选择regedit键。

然后选择HKEY_USERS-> File并找到旧Windows安装的旧“主”目录。在此目录中应该有Load Hive...文件。默认情况下它是隐藏的,因此,如果您未启用在Windows资源管理器属性中显示隐藏文件的功能,则只需在“加载配置单元”对话框的NTUSER.DAT输入框中手动输入文件名,然后按输入。然后在下一个对话框窗口中输入一些键名称以将旧的注册表加载到其中。例如File name

您现在可以在当前注册表的tmp分支下访问旧注册表的HKEY_CURRENT_USER分支。

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

您现在可以通过双击将该文件导入当前的Windows注册表中。请参阅m0nhawk's answer的操作方法。

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