Created
June 21, 2017 23:41
-
-
Save EsauPR/0a4690d49b2e6deb03fde82ffb5313c0 to your computer and use it in GitHub Desktop.
Create usb to Install windows from cmd
This file contains hidden or 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
| diskpart | |
| list disk | |
| select disk X | |
| clean | |
| create partition primary | |
| select partition 1 | |
| active | |
| format fs=fat32 quick | |
| assign | |
| exit | |
| xcopy G:\*.* /s/e/f/h H:\ | |
| G=unidad H=usb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment