Created
August 31, 2013 10:43
-
-
Save ainvyu/6397471 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
1. 명령어 프롬프트를 연다. | |
2. diskpart를 입력하고 엔터 | |
3. diskpart에 들어가서 | |
list disk (여기서 USB 메모리의 파티션 번호를 확인한다.) | |
select disk 1 (위에서 확인한 번호를 넣는다.) | |
clean | |
create partition primary | |
select partition 1 | |
active | |
format fs=ntfs quick | |
assign | |
exit (여기까지 하면 diskpart를 빠져나온다.) | |
4. xcopy x:\ y:\ /cherky (여기서 x:\는 Windows7 DVD가 들어 있는 경로 y:\는 USB메모리의 경로를 입력.) | |
5. 끝 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment