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