How to run GD Console Unlocker automatically in Steam
- put GDConsoleUnlocker.exe and an additional batch file console_unlock.bat in the game’s main Steam directory (the one you get after clicking to browse local files in Steam)
console_unlock.bat console_unlock.zip (257 Bytes):
@echo off
start "" "x64\Grim Dawn.exe"
timeout 5 >nul
start /B "" GDConsoleUnlocker.exe
- type the following in Grim Dawn’s Steam Launch Options:
console_unlock.bat %COMMAND%
- now the program will be launched 5 seconds (can be lowered) after Steam’s Game Start automatically
PS If you’re a non-Steam user, just modify and use console_unlock.bat
to launch GD and unlocker together.
If you want to have console_unlock.bat wherever, not necessary in GD’s directory, you can use full directories.
console_unlock.bat console_unlock.zip (353 Bytes):
@echo off
start "" "D:\SteamLibrary\steamapps\common\Grim Dawn\x64\Grim Dawn.exe" "/x64"
timeout 10 >nul
start /B "" "D:\SteamLibrary\steamapps\common\Grim Dawn\GDConsoleUnlocker.exe"
This worked for me with Steam, might be slightly different for GoG (maybe you’d run Grim Dawn.exe
instead of x64\Grim Dawn.exe
for example.
I put 10s timeout because Steam asked me additionaly if I want to run GD with x64 custom option before running the game which took more time. Can be 5s or so for GoG.