@echo off title [InstanceCheats.com] Step 2 - Disable Windows Firewall color 0C echo. echo ============================================================ echo InstanceCheats.com Fix Tool - Disable Windows Firewall echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo [*] Disabling Windows Firewall for all profiles... netsh advfirewall set allprofiles state off >nul 2>&1 echo [*] Disabling Firewall service... sc config MpsSvc start= disabled >nul 2>&1 echo [*] Setting Firewall policy to OFF... reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile" /v EnableFirewall /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile" /v EnableFirewall /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\PublicProfile" /v EnableFirewall /t REG_DWORD /d 0 /f >nul 2>&1 echo. echo ============================================================ echo [OK] Windows Firewall has been disabled on all profiles. echo ============================================================ echo. pause