有没有办法做到这一点?
还是我必须手动从注册表中获取每个记录?
有没有办法做到这一点?
还是我必须手动从注册表中获取每个记录?
Answers:
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.
我说Pooey!
我将以下用于导出和导入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不太熟悉。欢迎改进!
启动运行,然后在“打开”下拉窗口中键入:regedit
就像在Window的资源管理器中一样,导航到:
HKEY_CURRENT_USER \ Software \ SimonTatham
做完了
对于那些需要从脱机注册表文件导入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之后,一切就绪。简单高效。
对于那些不想弄乱注册表的人,已经创建了保存到文件中的腻子变体。它位于这里:http : //jakub.kotrla.net/putty/
如果腻子团队将其作为主发行中的选项,那就太好了。
示例:
如何将腻子配置和会话配置从一个用户帐户转移到另一个用户帐户,例如,在创建新帐户并要使用旧帐户中的腻子会话/配置时
过程:
-将注册表项从旧帐户导出到文件中
-将注册表项从文件导入到新帐户中
导出注册码:( 来自OLD帐户)
导入注册码:( 到新帐户中)
登录到新帐户,例如tom
打开普通的“命令提示符”(非管理员!)
输入“ regedit”
从菜单中选择“导入”
选择要导入的注册表文件,例如“ puttyconfig.reg”
完成了
注意:
请勿使用'admin命令提示符',因为设置位于'[HKEY_CURRENT_USER ...]'下,并且regedit将以admin身份运行,并向admin用户显示该部分,而不是供用户从/和/或转移。至。
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"
使用此方法,还可以执行大量配置更改,例如更改所有会话字体。
从此处提取:http : //www.sysadmit.com/2015/11/putty-exportar-configuracion.html
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 }
}
}
如果您像我一样安装了新的Windows,并且只有在记住腻子会话之后,如果您具有旧的Windows硬盘驱动器或至少备份了旧的“主”目录,您仍然可以导入它们C:\Users\<user_name>
。
在此目录中应该有NTUSER.DAT
文件。默认情况下它是隐藏的,因此您应该在Windows资源管理器中启用隐藏文件或使用其他文件浏览器。该文件包含HKEY_CURRENT_USER
旧Windows注册表的分支。
要使用它,您需要regedit
在新的Windows上打开并选择HKEY_USERS
密钥。
然后选择File
-> Load Hive...
并找到旧Windows安装的旧“主”目录。在此目录中应该有NTUSER.DAT
文件。默认情况下它是隐藏的,因此,如果您未启用Windows资源管理器属性中的隐藏文件显示功能,则只需File name
在“加载配置单元”对话框的输入框中手动输入文件名,然后按Enter。然后在下一个对话框窗口中输入一些键名称以将旧的注册表加载到其中。例如tmp
。
HKEY_CURRENT_USER
现在,您旧注册表的分支可以在HKEY_USERS\tmp
当前注册表的分支下访问。
现在将HKEY_USERS\tmp\Software\SimonTatham
分支导出到putty.reg
文件中,在您喜欢的文本编辑器中打开此文件,并使用查找和替换所有HKEY_USERS\tmp
字符串HKEY_CURRENT_USER
。现在保存.reg
文件。
现在,您可以通过双击将该文件导入当前的Windows注册表中。请参阅m0nhawk的答案。
最后,HKEY_USERS\tmp
在注册表编辑器中选择分支,然后选择File
-> Unload Hive...
并确认此操作。