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

16 lines
629 B
PowerShell
Raw Normal View History

2023-07-15 19:37:52 +00:00
#!/bin/bash
param($context)
. "$PSScriptRoot/../../Scripts/SoftwarePackage.ps1";
2023-07-16 23:40:50 +00:00
choco install -y "dotnet-6.0-desktopruntime" vcredist140;
2023-07-16 21:23:27 +00:00
Write-Host "Installing Tobii Eye Tracking";
Write-Host "Installing Tobii EyeX";
2023-07-15 19:37:52 +00:00
Install-SoftwarePackage $context "https://files.update.tech.tobii.com/Tobii_Eye_Tracking_Core_v2.16.8.214_x86.exe";
2023-07-16 21:23:27 +00:00
Write-Host "Installing Tobii Ghost";
2023-07-16 21:21:47 +00:00
Install-SoftwarePackage $context "https://files.update.oem.tobii.com/Ghost/TobiiGhost.1.14.1-Setup.exe";
2023-07-16 21:23:27 +00:00
Write-Host "Installing Tobii Game Hub";
2023-07-16 21:21:47 +00:00
Install-SoftwarePackage $context "https://files.update.oem.tobii.com/GameHub/TobiiGameHub.3.0.1-Setup.exe";