$InstallDir = $PSScriptRoot
# Accessible via $Display.Width and $Display.Height
Add-Type -AssemblyName System.Windows.Forms
$Display = ([System.Windows.Forms.Screen]::AllScreens | Where-Object Primary).Bounds
function Write-ReplaceContentInFile([string]$Regex, [string]$Replacement, [string]$FilePath)
{
$content = (Get-Content $FilePath) -replace $Regex, $Replacement
[IO.File]::WriteAllLines($FilePath, $content)
}
# Use regex to replace text within a file. Quotes are escaped by double quoting ("")
Write-ReplaceContentInFile -Regex '^"screenwidth" "(.+)"' -Replacement """screenwidth"" ""$($Display.Width)""" -FilePath "$InstallDir\autoexec.cfg"
Write-ReplaceContentInFile -Regex '^"screenheight" "(.+)"' -Replacement """screenheight"" ""$($Display.Height)""" -FilePath "$InstallDir\autoexec.cfg"
$InstallDir = $PSScriptRoot
$NewName = $args[0]
function Write-ReplaceContentInFile([string]$Regex, [string]$Replacement, [string]$FilePath)
{
$content = (Get-Content $FilePath) -replace $Regex, $Replacement
[IO.File]::WriteAllLines($FilePath, $content)
}
# Use regex to replace text within a file. Quotes are escaped by double quoting ("")
Write-ReplaceContentInFile -Regex '^"NetPlayerName" "(.+)"' -Replacement """NetPlayerName"" ""$NewName""" -FilePath "$InstallDir\autoexec.cfg"