Advertisement
Guest User

Untitled

a guest
Mar 10th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | Gaming | 0 0
  1. @echo off
  2. REM ================================================================
  3. REM LAUNCH AOW.EXE AND LOSSLESS SCALING (MINIMIZED) WITH POWERHOUSE WAIT
  4. REM ================================================================
  5.  
  6. :: Set the full path to your Age of Wonders executable
  7. set "AOW_EXE=D:\Age of Wonders\AoW.exe"
  8. :: Set the full path to your Lossless Scaling executable
  9. set "LOSSLESS_SCALING_EXE=D:\Steam\steamapps\common\Lossless Scaling\LosslessScaling.exe"
  10.  
  11. echo Launching Age of Wonders...
  12. for /f "delims=" %%i in ('powershell -command "$p = Start-Process -FilePath '%AOW_EXE%' -PassThru; Write-Output $p.Id"') do set AOW_PID=%%i
  13.  
  14. echo Launching Lossless Scaling minimized...
  15. start /min "" "%LOSSLESS_SCALING_EXE%"
  16.  
Tags: Aow
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement