
@echo off

echo [+] Step 1: Disabling Vulnerable Driver Blocklist...
reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Config" /v "VulnerableDriverBlocklistEnable" /t REG_DWORD /d 0 /f

echo [+] Step 2: Disabling Vulnerable Driver Blocklist...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v "EnableVirtualizationBasedSecurity" /t REG_DWORD /d 0 /f

echo [+] Step 3: Enabling Test Mode...
bcdedit /set testsigning on

echo [+] Step 4: Disabling Driver Signature Enforcement...
bcdedit /set nointegritychecks on


echo.
echo ==========================================
echo [!] RESTARTING... !
echo ==========================================
pause

shutdown /r /t 10 /c "Restarting for setup..."