PortValhalla/scripts/Windows/Software/openssh/Main.ps1

9 lines
216 B
PowerShell
Raw Normal View History

using namespace Microsoft.Win32;
2024-08-07 19:05:32 +00:00
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
2024-09-30 03:00:20 +00:00
Start-SoftwareInstaller @args `
-Configurator {
Set-Service ssh-agent -StartupType AutomaticDelayedStart;
};