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