Quad5Ny

How to manually install Windows on a BIOS based computer fro

Jun 26th, 2015
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. ==================================================================================
  2. ===How to manually install Windows on a BIOS based computer from Windows 8.1/10===
  3. === by: Quad5Ny ===
  4. ==================================================================================
  5.  
  6. ---
  7. Part A: Registry Editor (Regedit)
  8. ---
  9. Double click HKEY_LOCAL_MACHINE
  10. Click BCD00000000
  11. Click File > Unload Hive
  12. Click Yes
  13. Click File > Exit
  14.  
  15. ---
  16. Part B: Elevated Command Prompt (Cmd)
  17. ---
  18. diskpart
  19. list disk
  20. select disk #
  21. clean ***WARNING This will erase the disk you selected***
  22. create partition primary size=350 offset=1024
  23. format fs=ntfs label=System quick
  24. active
  25. assign letter=S
  26. create partition primary align=1024
  27. format recommended quick
  28. assign letter=W
  29. exit
  30. DISM /apply-image /imageFile:D:\sources\install.wim /index:1 /applydir:W:\
  31. bcdboot W:\Windows /l en-US /s S: /f bios
  32. exit
  33.  
  34. ---
  35. Part C: BIOS (Del or F1)
  36. ---
  37. Go to Boot tab
  38. Find Boot (Device) Priorities
  39. Change Boot Device to your New Disk
  40. Press Escape or F10
  41. Save and Exit
Advertisement
Add Comment
Please, Sign In to add comment