有办法做到这一点吗?
还是我必须手动从登记处取每一条记录?
有办法做到这一点吗?
还是我必须手动从登记处取每一条记录?
当前回答
改进了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"
其他回答
有一个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 }
}
}
对于那些不想打乱注册表的人,已经创建了一个保存到文件的putty变体。网址:http://jakub.kotrla.net/putty/
如果putty团队能够将此作为主要发行版的一个选项,那就太好了。
这比上面所述的导入注册表导出要容易得多。 + 简单:
右键单击文件,然后 选择“合并”
在win7 Pro上工作得很出色。
出口
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连接管理器,您可以在其中创建会话数据库。复制并导入该数据库到其他计算机很容易。
请看这个便利指南