PortValhalla/scripts/Windows/Software/OpenSSH/Manage.ps1

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;
};