Diskpart에서 VHD를 생성하기 위해서는 Diskpart를 활성화한 후 아래와 같이 작성하면 됩니다 > cre vdi file={파일 위치}.vhd maximum={생성 크기} type={expandable / fixed} 예를 들어 『cre vdi file="C:\test.vhd" maximum=1024 type=fixed 』 이렇게 작성하면 C:\Test.vhd 위치에 1기가 고정 크기로 생성됩니다 추가로 자식 vhd를 생성하기 위한 명령어로는 아래와 같이 작성하면 됩니다 > cre vdi file={파일 위치}.vhd parent={부모 파일}.vhd 위의 명령어 예시로는 『cre vdi file="C:\child.vhd" parent="C:\test.vhd"』 이렇게 작성 시 C:\test...