-
VHD 생성시 Block size / Sector size 변경컴퓨터/VHD 2015. 9. 25. 14:10
1. Hyper-V, Powershell, diskpart 기본생성
2. Powershell Block size / Sector size 변경 가능(win10pro에서는 BlockSizeBytes 128MB적용시 부팅이 안됨?)
PS C:\> New-VHD -Path c:\LargeSectorBlockSize.vhdx -BlockSizeBytes 32MB -LogicalSectorSize 4KB -sizeBytes 20GB
3. Powershell VHD 생성후 마운트, 초기화 및 포맷 완료
PS C:\> $vhdpath = "C:\VHDs\Test.vhdx"
PS C:\> $vhdsize = 127GB
PS C:\> New-VHD -Path $vhdpath -Dynamic -SizeBytes $vhdsize | Mount-VHD -Passthru |Initialize-Disk -Passthru |New-Partition -AssignDriveLetter -UseMaximumSize |Format-Volume -FileSystem NTFS -Confirm:$false -Force
4. Bootice 활용 Block size / Sector size 확인
fsutil fsinfo ntfsinfo c:댓글