协慌网

登录 贡献 社区

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

有没有办法做到这一点?

还是我必须手动从注册表中获取每条记录?

答案

出口

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

电源外壳:

仅会话:

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

电源外壳:

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

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

注意:它将在当前用户的桌面上reg

注意:它不会导出相关的 SSH 密钥。

当我尝试其他解决方案时,出现此错误:

Registry editing has been disabled by your administrator.

我说,Phooey!

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

警告:像这样弄乱注册表是 Bad Idea™,我真的不知道自己在做什么。使用以下脚本需要您自担风险,并准备让 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 不太熟悉。欢迎改进!

  1. 启动运行,然后在 “打开” 下拉窗口中键入:regedit

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

  3. 右键单击 “SimonTatham” 键(目录图标),然后选择 “导出”
    给文件起一个名字(例如)putty.reg 并将其保存到您的位置
    以后使用。
  4. 关闭注册表编辑器。

完毕。