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

16 lines
621 B
PowerShell
Raw Normal View History

2023-07-15 19:37:52 +00:00
#!/bin/bash
param($context)
. "$PSScriptRoot/../../Scripts/SoftwarePackage.ps1";
choco install -y -m dotnet --x86 --version=6.0.2;
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";