2024-09-23 01:33:17 +00:00
|
|
|
. "$PSScriptRoot/../../Scripts/SoftwareManagement.ps1";
|
2024-08-07 22:06:49 +00:00
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
|
|
|
|
|
2024-09-30 03:00:20 +00:00
|
|
|
Start-SoftwareInstaller @args `
|
2024-08-07 22:06:49 +00:00
|
|
|
-Installer {
|
|
|
|
Install-ChocoPackage "dotnet-6.0-desktopruntime";
|
|
|
|
} `
|
|
|
|
-UserConfigurator {
|
|
|
|
$file = "setup.exe";
|
|
|
|
$dir = New-TemporaryDirectory;
|
|
|
|
|
|
|
|
Push-Location $dir;
|
|
|
|
Invoke-WebRequest "https://files.update.oem.tobii.com/Ghost/TobiiGhost.1.14.1-Setup.exe" -OutFile $file;
|
|
|
|
Write-Host "Running Tobii Ghost installer";
|
|
|
|
Start-Process -Wait -FilePath "$PSScriptRoot/Ghost.ahk";
|
|
|
|
Pop-Location;
|
|
|
|
|
|
|
|
Remove-Item -Recurse $dir;
|
|
|
|
};
|