Doom II: Hell on Earth

From LANCommander
Developers
id Software
Publishers
Virgin Interactive Entertainment (Europe) Ltd.Imagineerid SoftwareTapwaveGT Interactive SoftwareBethesda Softworks
Release Date
Windows: September 30, 1994
Genres
PuzzleShooter
View at PCGamingWiki

Actions

Name Path Arguments Working Directory Primary
Play Doom II: Hell on Earth {InstallDir}\zandronum.exe -iwad "{InstallDir}/doom2.wad" -config zandronum.ini -savedir saves True

Install Script

# Updates Screen Resolution to match desktop resolution
#######################################################################
$Config = "$InstallDirectory\zandronum.ini"

$Display = Get-PrimaryDisplay

# Use regex to replace text within a file. Quotes are escaped by double quoting ("")
Write-ReplaceContentInFile -Pattern '^con_virtualheight=(.+)' -Substitution "con_virtualheight=$($Display.Bounds.Height)" -FilePath "$Config"
Write-ReplaceContentInFile -Pattern '^con_virtualwidth=(.+)' -Substitution "con_virtualwidth=$($Display.Bounds.Width)" -FilePath "$Config"
Write-ReplaceContentInFile -Pattern '^vid_defheight=(.+)' -Substitution "vid_defheight=$($Display.Bounds.Height)" -FilePath "$Config"
Write-ReplaceContentInFile -Pattern '^vid_defwidth=(.+)' -Substitution "vid_defwidth=$($Display.Bounds.Width)" -FilePath "$Config"
#######################################################################

Name Change Script

Write-ReplaceContentInFile -Pattern '^name=(.+)' -Substitution "name=$NewPlayerAlias" -FilePath "$InstallDirectory\zandronum.ini"