Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Last active August 25, 2017 00:30
Show Gist options
  • Save lelinhtinh/c4d8353fc26754cb12ce94cddcfb5f76 to your computer and use it in GitHub Desktop.
Save lelinhtinh/c4d8353fc26754cb12ce94cddcfb5f76 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"
@macchandev
Copy link

Change "C:\Program Files (x86)" as your folder path to open Garena Plus if your path location wrong when install GP or using Windows x86.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment