@echo off title [InstanceCheats.com] Full Windows Setup - All Steps (1-9) color 0C echo. echo ============================================================ echo InstanceCheats.com - FULL Windows Setup (Steps 1-9) echo This runs ALL setup steps in one go. echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo ============================== echo STEP 1: Disable Windows Defender echo ============================== reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableRealtimeMonitoring /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableBehaviorMonitoring /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableOnAccessProtection /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableScanOnRealtimeEnable /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableIOAVProtection /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Defender\Features" /v TamperProtection /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SpynetReporting /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SubmitSamplesConsent /t REG_DWORD /d 2 /f >nul 2>&1 sc config WinDefend start= disabled >nul 2>&1 sc stop WinDefend >nul 2>&1 sc config WdNisSvc start= disabled >nul 2>&1 sc stop WdNisSvc >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v EnableSmartScreen /t REG_DWORD /d 0 /f >nul 2>&1 powershell -Command "Add-MpPreference -ExclusionPath 'C:\' -ErrorAction SilentlyContinue" >nul 2>&1 echo [OK] Step 1 done. echo. echo ============================== echo STEP 2: Disable Windows Firewall echo ============================== netsh advfirewall set allprofiles state off >nul 2>&1 sc config MpsSvc start= disabled >nul 2>&1 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 [OK] Step 2 done. echo. echo ============================== echo STEP 3: Disable VBS echo ============================== reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v RequirePlatformSecurityFeatures /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v LsaCfgFlags /t REG_DWORD /d 0 /f >nul 2>&1 bcdedit /set vsmlaunchtype Off >nul 2>&1 echo [OK] Step 3 done. echo. echo ============================== echo STEP 4: Disable HVCI / Core Isolation echo ============================== reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\KernelShadowStacks" /v Enabled /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v Locked /t REG_DWORD /d 0 /f >nul 2>&1 echo [OK] Step 4 done. echo. echo ============================== echo STEP 5: Disable Driver Blocklist echo ============================== reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Config" /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f >nul 2>&1 bcdedit /set nointegritychecks on >nul 2>&1 bcdedit /set testsigning on >nul 2>&1 echo [OK] Step 5 done. echo. echo ============================== echo STEP 6: Set UAC to Minimum echo ============================== 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 [OK] Step 6 done. echo. echo ============================== echo STEP 7: Disable Hyper-V echo ============================== bcdedit /set hypervisorlaunchtype off >nul 2>&1 dism /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V-All /NoRestart >nul 2>&1 dism /Online /Disable-Feature /FeatureName:HypervisorPlatform /NoRestart >nul 2>&1 dism /Online /Disable-Feature /FeatureName:VirtualMachinePlatform /NoRestart >nul 2>&1 dism /Online /Disable-Feature /FeatureName:Containers-DisposableClientVM /NoRestart >nul 2>&1 sc config vmcompute start= disabled >nul 2>&1 sc stop vmcompute >nul 2>&1 sc config vmms start= disabled >nul 2>&1 sc stop vmms >nul 2>&1 echo [OK] Step 7 done. echo. echo ============================== echo STEP 8: Disable Anti-Cheats echo ============================== sc stop EasyAntiCheat >nul 2>&1 & sc config EasyAntiCheat start= disabled >nul 2>&1 sc stop EasyAntiCheatSys >nul 2>&1 & sc config EasyAntiCheatSys start= disabled >nul 2>&1 sc stop BEService >nul 2>&1 & sc config BEService start= disabled >nul 2>&1 sc stop BEDaisy >nul 2>&1 & sc config BEDaisy start= disabled >nul 2>&1 sc stop vgc >nul 2>&1 & sc config vgc start= disabled >nul 2>&1 sc stop vgk >nul 2>&1 & sc config vgk start= disabled >nul 2>&1 sc stop FACEIT >nul 2>&1 & sc config FACEIT start= disabled >nul 2>&1 taskkill /F /IM EasyAntiCheat.exe >nul 2>&1 taskkill /F /IM BEService.exe >nul 2>&1 taskkill /F /IM vgtray.exe >nul 2>&1 echo [OK] Step 8 done. echo. echo ============================== echo STEP 9: Disable Fast Startup echo ============================== reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f >nul 2>&1 powercfg /h off >nul 2>&1 echo [OK] Step 9 done. echo. echo ============================================================ echo [OK] ALL 9 STEPS COMPLETED SUCCESSFULLY. echo Your Windows is now fully configured for InstanceCheats.com echo A REBOOT is required. Restart your PC now. echo ============================================================ echo. choice /C YN /M " Reboot now? (Y/N)" if %errorlevel%==1 shutdown /r /t 5 /c "Rebooting to apply all setup changes..."