PortValhalla/scripts/Windows/Software/PowerShell/Manage.ps1

21 lines
517 B
PowerShell
Raw Normal View History

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 `
-Installer {
param(
[scriptblock] $Installer
)
& $Installer -Action ([InstallerAction]::Configure);
} `
-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
};