From LedHed's Wiki
Jump to: navigation, search
(Created page with "== Overview == DVDs are old and slow, so you want to install Windows from a bootable USB stick! == Down -N- Dirty == === Diskpart === diskpart.exe list disk select disk X...")
 
 
Line 21: Line 21:
  
 
=== Setup the Boot Sector ===
 
=== Setup the Boot Sector ===
d:\boot\bootsect /NT60 d: /force /mbr
+
Copy d:\boot to your C drive and run:
 +
C:\temp\boot\bootsect /NT60 d: /force /mbr
  
  

Latest revision as of 00:04, 13 October 2020

Overview

DVDs are old and slow, so you want to install Windows from a bootable USB stick!


Down -N- Dirty

Diskpart

diskpart.exe
list disk
select disk X  (Where X is the number of the USB stick)
clean
create primary partition
select partition 1
format fs=ntfs quick
active


Copy

Copy all of the data from the ISO to the root of the USB stick (D:\ in this example).
You can mount the ISO or use 7zip to extract it to D:


Setup the Boot Sector

Copy d:\boot to your C drive and run:

C:\temp\boot\bootsect /NT60 d: /force /mbr


DONE!