21 lines
427 B
PowerShell
21 lines
427 B
PowerShell
using namespace Microsoft.Win32;
|
|
|
|
param(
|
|
$Action,
|
|
[hashtable] $Arguments
|
|
)
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
-Installer {
|
|
param(
|
|
[scriptblock] $Installer
|
|
)
|
|
|
|
& $Installer -Action ([InstallerAction]::Configure)
|
|
} `
|
|
-Configurator {
|
|
Set-Service ssh-agent -StartupType AutomaticDelayedStart;
|
|
};
|