NonSteamLaunchers-On-Steam-.../humble-app/start-humble.cmd

12 lines
178 B
Batchfile
Raw Normal View History

@echo off
cd /d "C:\Program Files\Humble App\"
set /p Url=<"C:\.auth"
if defined Url (
start "" "Humble App.exe" "%Url%"
) else (
start "" "Humble App.exe" "%*"
)
exit