Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Diskpart.exe and Exchange 2003

Status
Not open for further replies.

rws70

Technical User
Aug 18, 2005
56
US
I use the Dell server install disk to load Windows 2003 and create an OS partition. Unfortunately that does not result in an "aligned" disk.

See this URL for background on what "aligned" means:

Most of the articles on diskpart don't talk about creating new aligned partitions on disks with existing non-aligned partitions.

However I was able to create a new aligned subsequent partition using diskpart as follows below. (in this case I was creating a fourth partion of 68gigs and then labeling it F)

*******************************************

DISKPART> select disk 0

Disk 0 is now the selected disk.

DISKPART> create partition primary align=32 size=68000

DiskPart succeeded in creating the specified partition.

DISKPART> exit

(now I use dispar to check partition 4 stats ... note the offset 73270820864 is divisiable evenly by 4096 ... 73270820864/4096 = 17888384)

C:\Documents and Settings\Administrator>diskpar -i 0

---- Drive 0 Geometry Infomation ----
Cylinders = 17834
TracksPerCylinder = 255
SectorsPerTrack = 63
BytesPerSector = 512
DiskSize = 146689643520 (Bytes) = 139894 (MB)

---- Drive Partition 0 Infomation ----
skip
---- Drive Partition 1 Infomation ----
skip
---- Drive Partition 2 Infomation ----
skip
---- Drive Partition 3 Infomation ----
StatringOffset = 73270820864
PartitionLength = 71304925696
HiddenSectors = 143107072
PartitionNumber = 4
PartitionType = 6

End of partition information. Total existing partitions: 4

C:\Documents and Settings\Administrator>diskpart

DISKPART> select disk 0

Disk 0 is now the selected disk.

DISKPART> select partition 4

Partition 4 is now the selected partition.

DISKPART> assign letter=f

DiskPart successfully assigned the drive letter or mount point.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top