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