PortValhalla/scripts/Windows/Drivers/Tobii EyeX/Manage.ps1

31 lines
777 B
PowerShell

param(
$Action,
[hashtable] $Arguments
)
& {
param($parameters);
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
$softwarePath = "$PSScriptRoot/../../Software";
$appScripts = @(
"$softwarePath/TobiiGhost/Manage.ps1",
"$softwarePath/TobiiGameHub/Manage.ps1"
);
Start-SoftwareInstaller @parameters `
-Installer {
Install-SetupPackage -Source "https://files.update.tech.tobii.com/Tobii_Eye_Tracking_Core_v2.16.8.214_x86.exe";
foreach ($script in $appScripts) {
. $script @parameters;
}
} `
-UserConfigurator {
foreach ($script in $appScripts) {
. $script @parameters;
}
};
} $PSBoundParameters;