Last active
August 29, 2015 14:07
-
-
Save amonmoce/2bfcc4fab049b0cdbfcc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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