Skip to content

Instantly share code, notes, and snippets.

@dukeofgaming
Created June 9, 2014 04:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dukeofgaming/76e9752ffe8009a1d0e0 to your computer and use it in GitHub Desktop.
Save dukeofgaming/76e9752ffe8009a1d0e0 to your computer and use it in GitHub Desktop.
Create bootable USB in WIndows
#Create bootable drive, via: http://thelazyadmin.com/blogs/thelazyadmin/archive/2009/01/08/installing-windows-7-via-usb-or-sd-media.aspx
diskpart
list disk (find the disk number for the removable media)
select disk #
clean
create partition primary
select partition 1
active
format fs=fat32 quick
assign letter=y (or any free drive letter)
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment