wmic partition get BlockSize, StartingOffset, Name, Index
The starting offset on all three disks on this machine is 32256 - the default. You can verify this - see if 32256 is evenly divisible by 1024.
32256/1024 = 31.5
As you can see, 32256 is NOT divisible by 1024 evenly - and thus is not aligned.
Windows 2008 and above will automatically set the partition offset correctly, but to check you can run the same command - you should see a starting partition offset of 1MB
1048576 / 1024 = 1024
As you can see, the offset is 1048576 or 1MB - and it is properly aligned.
No comments:
Post a Comment