Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. 1. Burn 32bit (x86) windows .iso file to DVD
  2. 2. Boot from DVD on target computer
  3. 3. Press shift+F10 to enter command prompt from windows installer
  4.  
  5. 4. Type the following commands:
  6.  
  7. diskpart
  8. list disk
  9. select disk # (the hard drive)
  10. clean
  11. create partition primary
  12. format fs=ntfs quick
  13. assign
  14.  
  15. list partition
  16. select partition #
  17. active
  18. exit
  19.  
  20. cd\
  21.  
  22. xcopy d:\ c:\ /h/i/c/k/e/r/y (copies all windows files from flash drive d: to hard drive c:)
  23.  
  24. c:\boot\bootsect.exe /nt60 c:
  25.  
  26. 5. Pull DVD from computer and restart. The windows installer should boot from the hard drive directly now.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement