Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amonmoce/2bfcc4fab049b0cdbfcc to your computer and use it in GitHub Desktop.
Save amonmoce/2bfcc4fab049b0cdbfcc to your computer and use it in GitHub Desktop.
Trying to use Windows 7 USB/DVD Download Tool, to create a bootable USB in order to install Windows from USB.
Problem: "Sorry, we are unable to copy your files .... (blablabla)"
Solution: Type these commands on the cmd
diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
And try Windows 7 Tool again. It should be OK (Windows files should start being copied in the USB).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment