반응형
Raid on 상태의 윈도우를 AHCI로 변경하기
핵심은 두가지.
1. 아래 bcd에 minimal 드라이버최소로딩 안전모드로 부팅하라고 명령후,
2. 재부팅하면서 BIOS진입하여, AHCI로 스토리지모드 변경.
3. BIOS저장후, 재부팅.
4. bcd에 등록했던 드라이버 최소 안전모드 제거.
https://www.elevenforum.com/t/change-from-raid-to-ahci.12086/
Booting into Safe Mode will work even though the storage mode has been changed... Windows will notice the change and load the correct driver on the next normal boot. Basically that means, you can do this:
- Run cmd as administrator (not PowerShell, you would have to escape {...})
- Copy-paste this command, which will start Windows in Safe Mode the next time you reboot:
- bcdedit /set {current} safeboot minimal
- Restart the computer and enter UEFI/BIOS setup.
- Change the SATA operation mode from RAID to AHCI.
- Save changes and exit Setup and Windows will automatically boot to Safe Mode.
- Launch cmd again, as in step #1.
- Copy-paste this command, which will start Windows in Normal Mode the next time you reboot:
- bcdedit /deletevalue {current} safeboot
- Reboot and Windows will automatically start with AHCI drivers enabled.
반응형