@echo off title [InstanceCheats.com] Step 6 - Set UAC to Minimum color 0C echo. echo ============================================================ echo InstanceCheats.com Fix Tool - Set UAC to Minimum echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo [*] Setting UAC to Never Notify... reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v ConsentPromptBehaviorUser /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v PromptOnSecureDesktop /t REG_DWORD /d 0 /f >nul 2>&1 echo. echo ============================================================ echo [OK] UAC has been set to minimum (Never Notify). echo No reboot required. echo ============================================================ echo. pause