2024-08-07 20:55:25 +00:00
|
|
|
param (
|
|
|
|
$Action,
|
|
|
|
[hashtable] $Arguments
|
|
|
|
)
|
|
|
|
|
|
|
|
. "$PSScriptRoot/../PowerShell/Module.ps1";
|
|
|
|
. "$PSScriptRoot/../../Scripts/Software.ps1";
|
|
|
|
|
|
|
|
$parameters = Get-ModuleInstallerComponents "Terminal-Icons";
|
|
|
|
|
|
|
|
foreach ($key in $PSBoundParameters.Keys) {
|
2024-08-08 03:03:24 +00:00
|
|
|
$parameters.Add($key, $PSBoundParameters[$key]);
|
2024-08-07 20:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Start-SoftwareInstaller @parameters;
|