1. Use System Restore to Revert to a Stable State
- Type rstrui.exe in the Run dialog (Win + R) and press Enter.
- Select a restore point created before the BSOD began.
- Follow the on-screen instructions to complete the restoration.
- This helps revert drivers, registry, and system files to a working configuration.
2. Run Windows Defender Offline Scan
- Go to Settings - Privacy & Security - Windows Security - Virus & Threat Protection.
- Choose Scan options - Microsoft Defender Offline scan.
- Restart and allow the scan to detect and remove hidden malware or injected system files.
3. Rebuild the Windows Boot Configuration Data (BCD)
- Boot into Advanced Startup Options - Command Prompt.
- Execute the following commands:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
- Restart your PC once complete.
- This repairs corrupted boot configuration and prevents invalid image bindings during startup.
4. Remove and Reinstall Recent Windows Updates
- Open Settings - Windows Update - Update History.
- Click Uninstall updates and remove the most recent update before the BSOD.
- Reboot and verify system stability.
- Reinstall updates manually after checking compatibility.
5. Use Windows Driver Verifier
- Type verifier in the Run dialog and press Enter.
- Select Create standard settings - Automatically select unsigned drivers.
- Restart the computer.
- If BSOD reoccurs, note the driver in the dump file, then disable the tool using:
- verifier /reset
- Replace or uninstall the problematic driver.
6. Repair Windows Image Using DISM in Recovery Mode
- Boot using Windows Installation Media - Select Repair your computer - Command Prompt.
- Run:
DISM /Image:C:\ /Cleanup-Image /RestoreHealth
- This restores damaged or unsupported image bindings in offline mode.
7. Check Storage Health via SMART Monitoring
- Open Command Prompt (Admin) and run:
wmic diskdrive get status
- If any drive reports “Pred Fail”, replace the storage device.
- Alternatively, use CrystalDiskInfo or similar utilities to assess drive integrity.
8. Verify Digital Signatures of Drivers
- Press Win + X - Device Manager.
- Right-click each driver - Properties - Driver Details.
- Ensure all critical drivers (especially display and network) are digitally signed.
- Reinstall unsigned drivers using official OEM sources.
9. Clear Windows Update Cache
- Open Command Prompt (Admin) and run:
net stop wuauserv
net stop bits
del %windir%\SoftwareDistribution\DataStore\* /s /q
del %windir%\SoftwareDistribution\Download\* /s /q
net start wuauserv
net start bits
- This removes corrupted update cache files that can cause invalid image loading.
10. Perform a Repair Installation Using ISO Media
- Download the official Windows ISO from Microsoft.
- Mount the ISO - Run setup.exe - Choose Upgrade this PC now.
- Select Keep personal files and apps.
- This reinstalls system components and fixes all invalid image binding errors.
The 0x00000097 (BOUND_IMAGE_UNSUPPORTED) BSOD generally indicates an issue with kernel-level image binding or incompatible drivers.
To fix the issue:
- Rebuild the BCD and repair image bindings.
- Run System Restore or perform a Defender Offline scan.
- Verify driver integrity using the Windows Driver Verifier.
- Reinstall or remove problematic updates.