OK, this is more note to myself, but I think you might find it useful as well. I was trying to install Windows 7 on my laptop which does not have DVD drive so I had to do it from flash drive.
You need 4 Gig flash drive for this, which is what I’ve used.
Here are step by step instructions:
- Insert USB Flash Drive
- Insert Windows install DVD
- Run Command prompt
- Type:
diskpart
- Type:
list disk
- Note the disk number of your USB Flash Drive from the list that comes out. In my case it was disk 2
- Type:
select disk 2
(note that you need to replace disk 2 with the number of your flash disk)
- Run following commands (please make sure you have selected right disk since this will format it):
clean create partition primary select partition 1 active format fs=fat32 assign exit
- Now copy content of your Windows DVD disk to Flash Drive. Type:
xcopy e:*.* /s/e/f g:
(note that you must replace e: with the drive letter of your DVD drive and g: with drive letter of your USB Flash Drive)
- That’s it. You can now use your USB Flash Drive to install Windows on new machine.
Hope this helps.
[…] posted before on How to Install Windows Vista or Windows 7 from USB Flash Drive which uses manual command line method to transfer your CD/DVD installs onto the bootable USB stick. […]