22 lines
757 B
PowerShell
22 lines
757 B
PowerShell
. "$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;
|
|
};
|
|
|
|
Start-SoftwareInstaller @args @parameters;
|