Last active
August 25, 2017 00:30
-
-
Save lelinhtinh/c4d8353fc26754cb12ce94cddcfb5f76 to your computer and use it in GitHub Desktop.
Toggle Garena+ Plugin Host Service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: 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
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.