8 lines
205 B
PowerShell
8 lines
205 B
PowerShell
using namespace Microsoft.Win32;
|
|
|
|
. "$PSScriptRoot/../../../lib/Software.ps1";
|
|
|
|
Start-SoftwareInstaller @args `
|
|
-Configurator {
|
|
Set-Service ssh-agent -StartupType AutomaticDelayedStart;
|
|
};
|