Skip to content

Instantly share code, notes, and snippets.

@keeganwitt
Last active September 29, 2015 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keeganwitt/1581465 to your computer and use it in GitHub Desktop.
Save keeganwitt/1581465 to your computer and use it in GitHub Desktop.
Launches Guild Wars with the -image option
@echo off
rem Author: Keegan Witt
rem Version 1.0
rem This runs Guild Wars with the -image argument, which downloads all the updated files.
rem if Guild Wars is running, kill it
TASKKILL /F /IM "gw.exe" 2> NUL
rem launch Guild Wars with the -image option
if %PROCESSOR_ARCHITECTURE% == x86 (
"%programfiles%\Guild Wars\Gw.exe" -image
) else (
"%programfiles(x86)%\Guild Wars\Gw.exe" -image
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment