Skip to content

Instantly share code, notes, and snippets.

@monodyle
Forked from lelinhtinh/GarenaMinus.bat
Created August 25, 2017 00:30
Show Gist options
  • Save monodyle/d75f0c4fe34b2832e90bad3cf9c2a5ab to your computer and use it in GitHub Desktop.
Save monodyle/d75f0c4fe34b2832e90bad3cf9c2a5ab to your computer and use it in GitHub Desktop.
Toggle Garena+ Plugin Host Service
:: Open this bat-file to toggle Garena+ Plugin Host Service
:: Written by Zzbaivong - baivong.github.io
:: 24/08/2016
:: Note! Updating the directory path depending on your game folder location
@ECHO OFF
TASKLIST /FI "IMAGENAME eq ggdllhost.exe" 2>NUL | find /I /N "ggdllhost.exe">NUL
IF "%ERRORLEVEL%" == "0" (
TSKILL LolClient
TSKILL lol
TSKILL BBTalk
TSKILL GarenaMessenger
TSKILL ggdllhost
REN "C:\Program Files (x86)\Garena Plus\ggdllhost.exe" "_ggdllhost.exe"
) ELSE (
REN "C:\Program Files (x86)\Garena Plus\_ggdllhost.exe" "ggdllhost.exe"
START "" "D:\LienMinhHuyenThoai\Lien Minh Huyen Thoai.exe"
)
:: Open "Task Scheduler"
:: Goto "Task Scheduler Library"
:: Find "Garena+ Plugin Host Service"
:: Right click, choose "Disable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment