Skip to content

Instantly share code, notes, and snippets.

@yblee85
Created September 17, 2015 16:20
Show Gist options
  • Save yblee85/50da5b708b7c7470762c to your computer and use it in GitHub Desktop.
Save yblee85/50da5b708b7c7470762c to your computer and use it in GitHub Desktop.
Bootable USB from directory in Windows
//command line
diskpart
//diskpart command line
list disk
//it will show disk
// disk0, 1, 2
select disk 2
clean
create partition primary
select partition 1
active
format quick FS=NTFS
assign
exit
// windows explorer
copy and paste entire sturcture to USB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment