19 lines
370 B
PowerShell
19 lines
370 B
PowerShell
|
param (
|
||
|
$Action,
|
||
|
[hashtable] $Arguments
|
||
|
)
|
||
|
|
||
|
. "$PSScriptRoot/../../Scripts/Software.ps1";
|
||
|
. "$PSScriptRoot/../../Types/InstallerAction.ps1";
|
||
|
|
||
|
Start-SoftwareInstaller @PSBoundParameters `
|
||
|
-Installer {
|
||
|
param(
|
||
|
[scriptblock] $Installer
|
||
|
)
|
||
|
|
||
|
& $Installer -Action ([InstallerAction]::Configure);
|
||
|
} `
|
||
|
-Configurator {
|
||
|
};
|