Star Wars: Galactic Battlegrounds

From LANCommander
Revision as of 00:50, 22 February 2024 by DoctorDalek (talk | contribs) (Created new page for Star Wars: Galactic Battlegrounds)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Developers
Westlake InteractiveLucasArts
Publishers
LucasArtsAspyr MediaSquare Electronic Arts
Release Date
Windows: January 17, 2001
Genres
SimulatorReal Time Strategy (RTS)Strategy
View at PCGamingWiki

Actions

Name Path Arguments Working Directory Primary
Run Widescreen Patch swgbwide_x1.exe {InstallDir} False
Play wide_battlegrounds_x1.exe {InstallDir} True

Install Script

Runs the widescreen patcher and then kills the process when complete.

$PatcherProcessInfo = New-Object System.Diagnostics.ProcessStartInfo
$PatcherProcessInfo.FileName = "$InstallDirectory\swgbwide_x1.exe"
$PatcherProcessInfo.RedirectStandardOutput = $true
$PatcherProcessInfo.UseShellExecute = $false
$PatcherProcessInfo.WorkingDirectory = $InstallDirectory

$PatcherProcess = New-Object System.Diagnostics.Process
$PatcherProcess.StartInfo = $PatcherProcessInfo
$PatcherProcess.Start()