Anong netflix account generator po yan nang maiwasan? Ingat po sa susunod.
By the way, aside sa format or reflash OS while keeping all data, here's how you can do:
STEP 1: Boot into Advanced Startup / Recovery Environment
If you can’t boot normally:
- Turn on your PC and force shut down (power button) 3 times during boot to trigger Automatic Repair
- Then go to Advanced Options > Command Prompt
STEP 2: Clear Bad Memory Entries from BCD
In the Command Prompt window, type the following command:
bcdedit /enum {badmemory}
This shows any bad memory blocks stored in the BCD.
If it lists entries, clear them using:
bcdedit /deletevalue {badmemory} badmemorylist
STEP 3: Run System File Checker and DISM (if accessible)
If you're in Windows Recovery and the drive is accessible:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
DISM /Image:C:\ /Cleanup-Image /RestoreHealth
Replace C: if your system drive is different when viewed from recovery.
STEP 4: Check for Memory Issues (Optional)
Still having problems? Run Windows Memory Diagnostic:
Through CMD
mdsched.exe
or
chkdsk C: /f /r
STEP 5: Rebuild BCD (if corrupted)
If the BCD itself is corrupted:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
If bootrec /fixboot gives "Access is denied," let me know and I can give a workaround for that too.