これを行う方法はありますか?
それとも私は手動でレジストリからすべてのレコードを取る必要がありますか?
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キーをnotエクスポートします。
他の解決策を試したとき、私はこのエラーを得ました:
Registry editing has been disabled by your administrator.
それに愚かな、私は言う!
PuTTY設定をエクスポートおよびインポートするための以下のPowerShellスクリプトをまとめました。エクスポートされたファイルは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にはあまり馴染みがありません。改善は大歓迎です!
「実行」を起動してから、「開く」ドロップダウンウィンドウに「regedit」と入力します。
Windowのエクスプローラと同じように移動します。
HKEY_CURRENT_USER\Software\SimonTatham
完了しました。
PuTTY Portable
の設定をインポートする場合はPuTTY.reg
ファイルを使用できます。
このパス[path_to_Your_portable_apps]PuTTYPortable\Data\settings\PuTTY.reg
に置くだけです。プログラムはそれをインポートします
オフラインレジストリファイルからPuTTYをインポートする必要があるあなたのために。クラッシュしたシステムから回復しているとき、または単に新しいマシンに移動してその古いドライブからデータを取得しているときには、もう1つ解決策があります。
http://www.nirsoft.net/utils/registry_file_offline_export.html
この素晴らしい無料のコンソールアプリケーションは、レジストリ全体または特定のレジストリキーのみをエクスポートします。私の場合、私は単に古いドライブからエクスポータツールと同じディレクトリにレジストリファイルをコピーしてから、CMDウィンドウで次のコマンドと構文を管理者として実行しました。
RegFileExport.exe NTUSER.DAT PuTTY.reg "HKEY_CURRENT_USER\Software\SimonTatham"
.regファイルをインポートしてPuTTYを起動した後は、すべて問題ありませんでした。シンプルで効率的.
レジストリを台無しにしたくない人のために、ファイルに保存するPuTTYのバリエーションが作成されています。それはここにあります: http://jakub.kotrla.net/PuTTY/
PuTTYチームがこれをメインディストリビューションのオプションとして取り入れればいいでしょう。
これはレジストリのエクスポートをインポートするのが上で述べたよりもずっと簡単でした。 +単純に:
勝利7 Proのチャンピオンのように働いた。
例:
あるユーザーアカウントから別のユーザーアカウントにPuTTY設定とセッション設定を転送する方法。新しいアカウントを作成し、古いアカウントからPuTTYセッション/設定を使用したい場合
プロセス:
- レジストリキーを古いアカウントからファイルにエクスポートします
- ファイルから新しいアカウントへのレジストリキーのインポート
エクスポート登録キー: (旧アカウントから)
インポート登録キー: (新規アカウントへ)
新しいアカウントにログイントム
通常の「コマンドプロンプト」を開きます(管理者ではありません!)
「regedit」と入力します
メニューから[インポート]を選択します
インポートするレジストリファイルを選択します。 'puttyconfig.reg'
完了
注意:
設定は[[HKEY_CURRENT_USER ...]]の下にあり、regeditはadminとして実行され、ユーザーからの転送ではなく管理ユーザーに対してそのセクションを表示するため、[adminコマンドプロンプト]を使用しないおよび/またはに。
データをPuTTY portable
にインポートするためのbumerangの解決策の改善。
(m0nhawkソリューションを使って)エクスポートされたPuTTY.reg
を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"
@ 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
m0nhawkの答えは、Windows 10上では私にはうまくいきませんでした - それは昇格されたコマンドプロンプトを必要とし、ファイルを発行することを拒否しました。
これはうまくいき、昇格を必要としませんでした。
reg export HKEY_CURRENT_USER\Software\SimonTatham\PuTTY putty.reg
この方法を使用すると、all sessionsフォントを変更するなど、一括設定変更を実行することもできます。
ここから抽出したもの: http://www.sysadmit.com/2015/11/PuTTY-exportar-configuracion.html
ratil.life/first-useful-power-script-PuTTY-to-ssh -config にPowerShellスクリプトがあり、セッションを.ssh/config
で使用できる形式に変換できます。 GitHub にもあります。
この抜粋にはコードの主な内容が含まれており、結果として得られる設定を直接標準出力に出力します。
# 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接続マネージャを使用します あなたはセッションのデータベースを作成します。そのデータベースを他のコンピュータにコピーしてインポートするのは簡単です。
これを参照してください 便利なガイド