@echo off
:: ÃÖÁ¾ ¼öÁ¤ : 2025³â 12¿ù 06ÀÏ
:: ÄÚµù ÀÛ¾÷ : Áö·æÀÚ
title ::Áö·æÀÚ¼Ö·ç¼Ç::
@setlocal enabledelayedexpansion
@echo °ü¸®ÀÚ±ÇÇÑ È®ÀÎ¿ë >%windir%\admin.confirm || @(
echo Set UAC = CreateObject^("Shell.Application"^) > "%tmp%\admin.vbs"
echo UAC.ShellExecute "%~0", "", "", "runas", 1 >> "%tmp%\admin.vbs"
"%tmp%\admin.vbs" & del "%tmp%\admin.vbs" & exit)
@del %windir%\admin.confirm
REG QUERY "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Discord" > nul 2>&1
if %errorlevel% equ 0 (
REG DELETE "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Discord" /f
) else (
echo Discord value does not exist.
)
REG QUERY "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "NexonPlug" > nul 2>&1
if %errorlevel% equ 0 (
REG DELETE "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "NexonPlug" /f
) else (
echo NexonPlug value does not exist.
)

REG QUERY "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Battle.net" > nul 2>&1
if %errorlevel% equ 0 (
REG DELETE "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Battle.net" /f
) else (
echo Battle.net value does not exist.
)

REG QUERY "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Steam" > nul 2>&1
if %errorlevel% equ 0 (
REG DELETE "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Steam" /f
) else (
echo Steam value does not exist.
)

REG QUERY "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "electron.app.OP.GG" > nul 2>&1
if %errorlevel% equ 0 (
REG DELETE "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "electron.app.OP.GG" /f
) else (
    echo electron.app.OP.GG value does not exist.
)

REG QUERY "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "RiotClient" > nul 2>&1
if %errorlevel% equ 0 (
REG DELETE "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "RiotClient" /f
) else (
echo RiotClient value does not exist.
)
timeout /t 2 >nul