If it's useful to anyone else, a small `bat` file that I wrote to help update all my instances of Game Loader when a new release is available.
The process to use is:
Download an updated Game Loader and place it in a directory of your choosing
Copy the below and place it in a file with a name like `updater.bat` in that same directory
Run the `updater.bat` file
To explain what the script does:
It iterates through all drive letters
And finds copies of `Game Loader All RH.exe`, `Game Loader Config.exe`, and `Game Loader Installer.exe` (other than those in the directory you're updating from)
And for each, it asks if you want to replace those older version(s) with this new version
@echo off
FOR %%d IN (A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z) DO (
IF exist %%d:\ (
echo Starting drive %%d
cd /D %%d:\
FOR %%c IN ("Game Loader All RH.exe", "Game Loader Config.exe", "Game Loader Installer.exe") DO (
FOR /F "delims=" %%f IN ('dir /b /s %%c') DO (
IF NOT "%%~dpf" == "%~dp0" (
xcopy "%~dp0%%~c" "%%f"
)
)
)
)
)
pause
updater.bat