7 lines
242 B
PowerShell
7 lines
242 B
PowerShell
#!/bin/bash
|
|
param($context)
|
|
. "$PSScriptRoot/../../Scripts/SoftwarePackage.ps1";
|
|
|
|
Write-Host "Installing Tobii Eye Tracking";
|
|
Install-SoftwarePackage $context "https://files.update.tech.tobii.com/Tobii_Eye_Tracking_Core_v2.16.8.214_x86.exe";
|