Add script for backing up PuTTY
This commit is contained in:
parent
69485f30ab
commit
8e47fae09c
1 changed files with 16 additions and 0 deletions
16
scripts/Windows/Software/PuTTY/Manage.ps1
Normal file
16
scripts/Windows/Software/PuTTY/Manage.ps1
Normal file
|
@ -0,0 +1,16 @@
|
|||
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
||||
$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), @());
|
||||
}
|
Loading…
Reference in a new issue