. "$PSScriptRoot\_common.ps1" Section 'install-telegram' { Wait-Network -timeoutSec 30 $p = Join-Path $env:TEMP 'tsetup.exe' Invoke-WebRequest -UseBasicParsing -Uri 'https://telegram.org/dl/desktop/win64' -OutFile $p $proc = Start-Process -FilePath $p -ArgumentList '/VERYSILENT','/SUPPRESSMSGBOXES','/NORESTART' -Wait -PassThru Log "Telegram installer exit code: $($proc.ExitCode)" }