有办法做到这一点吗?

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


当前回答

我使用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

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

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。欢迎改进!

如果需要在“PuTTY Portable”中导入配置,可以使用PuTTY工具。注册文件。

把它放到这个路径[path_to_Your_portable_apps]PuTTYPortable\Data\settings\putty.reg。程序会导入它

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

如果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"