PortValhalla/scripts/Windows/Software/TrackMania United Forever/Main.ps1

22 lines
757 B
PowerShell
Raw Normal View History

2024-09-24 16:15:06 +00:00
. "$PSScriptRoot/Manage.ps1";
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
$parameters = Get-TMForeverInstallerComponents `
-IconName "TmUnitedForever" `
-UserDirectory "$HOME/Documents/TrackMania" `
-Installer {
$file = "TmUnitedForever.exe";
$dir = New-TemporaryDirectory;
$null = Push-Location $dir;
Write-Host "Downloading TrackMania United Forever…";
Invoke-WebRequest "http://files.trackmaniaforever.com/tmunitedforever_setup.exe" -OutFile "$file";
Write-Host "Starting installation…";
Start-Process -Wait -FilePath "$file" -ArgumentList "/Silent";
$null = Pop-Location;
Remove-Item -Recurse $dir;
};
2024-09-30 03:00:20 +00:00
Start-SoftwareInstaller @args @parameters;