2024-08-07 18:30:12 +00:00
|
|
|
param (
|
|
|
|
$Action,
|
|
|
|
[hashtable] $Arguments
|
|
|
|
)
|
|
|
|
|
2024-08-07 19:05:32 +00:00
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
. "$PSScriptRoot/../../../Common/Types/InstallerAction.ps1";
|
2024-08-07 18:30:12 +00:00
|
|
|
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
|
|
-Configurator {
|
|
|
|
. "$PSScriptRoot/../../../Common/Software/PowerShell/Manage.ps1" `
|
2024-08-07 19:05:32 +00:00
|
|
|
-Action ([InstallerAction]::Configure);
|
2024-08-07 18:30:12 +00:00
|
|
|
};
|