14 lines
368 B
PowerShell
14 lines
368 B
PowerShell
param (
|
|
$Action,
|
|
[hashtable] $Arguments
|
|
)
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
. "$PSScriptRoot/../../../Common/Types/InstallerAction.ps1";
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
-Configurator {
|
|
. "$PSScriptRoot/../../../Common/Software/PowerShell/Manage.ps1" `
|
|
-Action ([InstallerAction]::Configure);
|
|
};
|