Skip to content

Instantly share code, notes, and snippets.

@yblee85
Created October 22, 2015 17:24
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 yblee85/6550ae5e20d66776c9e2 to your computer and use it in GitHub Desktop.
Save yblee85/6550ae5e20d66776c9e2 to your computer and use it in GitHub Desktop.
Create 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
Copy link

ghost commented Nov 12, 2016

Here is the tutorial "How to bootable usb pendrive with CMD step by step easy tutorial".
in this tutorial i was show , how you can make your pendrive bootable for windows setup with easy step .
Watch it and comment blew . its easy or not . video => https://www.youtube.com/watch?v=dd69WxjlWkc

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment