19 lines
667 B
PowerShell
19 lines
667 B
PowerShell
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
$null = New-Module {
|
|
$softwareName = "PuTTY";
|
|
$configFile = "$($softwareName).reg";
|
|
|
|
function New-TempDirectory() {
|
|
$tempDir = Join-Path $([System.IO.Path]::GetTempPath()) $([System.IO.Path]::GetRandomFileName());
|
|
$null = New-Item -ItemType Directory $tempDir;
|
|
return $tempDir;
|
|
}
|
|
|
|
function Invoke-BackupPuTTY([Context] $context) {
|
|
$tempDir = New-TempDirectory;
|
|
$fileName = Join-Path "$tempDir" $configFile;
|
|
& reg export "HKCU\Software\SimonTatham" "$fileName" /y;
|
|
$context.Backup($tempDir, $context.SoftwareArchive($softwareName), @());
|
|
}
|
|
}
|