Welcome to Dark Area

Explore, Secure, Evolve – IT, Cybersecurity & Ethical Hacking

ATTENTION! Due to account issues, our mails are going into spam. Please, do not forget to check the spam folder for confirmation mails.

Register…

GameLoop Destroyer v1

Dark

Owner

Joined
Mar 21, 2024
Messages
40
ijn5q9c.jpg


GameLoop Destroyer v1

With this python script, you can delete all of temp/regedit files of GameLoop.

P.S> Use script after uninstall GameLoop. Re-run script after rebooting.

Python:
import os, ctypes, sys
import warnings

with warnings.catch_warnings():
    warnings.simplefilter('ignore', SyntaxWarning)
    # simulate import of module giving SyntaxWarning
    warnings.warn('bad', SyntaxWarning)

def is_admin():
    try:
        return ctypes.windll.shell32.IsUserAnAdmin()
    except:
        return False



if is_admin():
    try:
        import colorama
    except ModuleNotFoundError:
        ex_code = os.system("pip install colorama")
        if ex_code !=0:
            ex1_code = os.system("py -m pip install colorama")
            if ex1_code !=0:
                ex2_code = os.system("python -m pip install colorama")
                if ex2_code !=0:
                    ex3_code = os.system("python3 -m pip install colorama")
                    if ex3_code !=0:
                        ex4_code = os.system("pip3 install colorama")
                        print("")
                        print("")
                        print("")
                        print("Modul cannot downloaded. Please check your Internet connection or pip version.")
                        print("")
                        print("")
                        print("")


    banner1= input("""              
┏┓       ┓        
┃┓┏┓┏┳┓┏┓┃ ┏┓┏┓┏┓
┗┛┗┻┛┗┗┗ ┗┛┗┛┗┛┣┛
┳┓             ┛  
┃┃┏┓┏╋┏┓┏┓┓┏┏┓┏┓  
┻┛┗ ┛┗┛ ┗┛┗┫┗ ┛  v1
           ┛      
                 

                 
P.S> UNINSTALL GAMELOOP FIRST!!!
                 
P.S> RE-RUN AGAIN AFTER RESTART!!!


                 
You grant permission to delete the following files:
               
1. C:\\Temp\\TxGameDownload (Config, sharing pc)
2. C:\\Users\\%username%\\AppData\\Local\\Tencent (Game files)
3. C:\\Users\\%username%\\AppData\\Roaming\\Tencent (Game files)
4. C:\\ProgramData\\Tencent (Game files)
5. C:\\Users\\%username%\\AppData\\Local\\Temp (All temp)
6. C:\\Users\\%username%\\AppData\\LocalLow\\Temp (All temp)
                 
                 
P.S> If see many errors, do not worry. Some errors causing by other services using temp files.
               
All GameLoop Temp, Files and Regedit saves will be destroyed. Press enter to stop process now. Continue? (y/n): """)

    if banner1 == "y" or banner1 == "Y":
        print("")
        os.system("rmdir /s /Q C:\\Temp\\TxGameDownload")
        print("")
        os.system("rmdir /s /Q C:\\Users\\%username%\\AppData\\Local\\Tencent")
        print("")
        os.system("rmdir /s /Q C:\\Users\\%username%\\AppData\\Roaming\\Tencent")
        print("")
        os.system("rmdir /s /Q C:\\ProgramData\\Tencent")
        print("")
        os.system("rmdir /s /Q C:\\Users\\%username%\\AppData\\Local\\Temp")
        print("")
        os.system("rmdir /s /Q C:\\Users\\%username%\\AppData\\LocalLow\\Temp")
        print("")
        os.system("reg delete HKEY_CURRENT_USER\\Software\\Tencent /f")

    else:
        print("Process Aborted.")

    print("")
    print("")
    input("Program finished. To exit, press any key...")
else:
    # Re-run the program with admin rights
    ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, __file__, None, 1)
    print('This cleaner requires administrator rights.')
 
Last edited:
Top