monster,
here's the next step:
[FONT="]PARTITION A HARD DISK PRIOR TO WINDOWS 7 INSTALL[/FONT]
LEAVE THE DVD TRAY OPEN
Ø Turn on your computer. The purpose of this is so that the DVD door can be opened.
Ø Open the DVD door.
Ø Turn off the computer with the DVD door open.
BOOT FROM YOUR WINDOWS 7 DVD AND GO TO A COMMAND PROMPT
Ø Insert the Windows 7 DVD and close the DVD door.
Ø Power on your computer.
Ø When that very first dialog appears where you would normally push the NEXT button, then use the
SHIFT + F10 key combo to get to a command prompt.
Ø The command prompt will be
X:>
USE THE DISKPART PROGRAM TO PREPARE AND PARTITION THE HARD DISK
Type the commands shown, hitting the Enter key after each.
Do not proceed to the next command until the current command is finished.
· DISKPART (the command prompt will change to DISKPART>)
· LIST DISK (list the disks present)
· SELECT DISK 0 (assuming disk zero is the desired hard disk)
· DETAIL DISK (show you info regarding the disk you selected)
· CLEAN (write zeros to first and last sectors on disk)
· CREATE PARTITION PRIMARY SIZE=256644
(create a 256 gig primary partition)
(256644 = 1024 x 256 1 Gig=1024 Megs)
· CREATE PARTITION PRIMARY SIZE=513288
(create a 512 gig primary partition)
(513288 = 1024 x 512 1 Gig=1024 Megs)
· CREATE PARTITION PRIMARY
(create a partition occupying the remainder)
You now have three partitions on your disk.
Next you need to:
Ø Declare one partition as the “system” partition
Ø Format each of the partitions
Ø Assign a drive letter to the partitions.
You can mix the operations up. You just need to complete them all.
· SELECT PARTITION 1
· ACTIVE (make this the system partition)
· FORMAT FS=NTFS (format the partition)
· ASSIGN (next available drive letter is assigned)
·
· SELECT PARTITION 2
· FORMAT FS=NTFS (format the partition)
· ASSIGN (next available drive letter is assigned)
·
· SELECT PARTITION 3
· FORMAT FS=NTFS (format the partition)
· ASSIGN (next available drive letter is assigned)
·
· LIST PARTITION (to see what you have wrought)
·
·
· EXIT (this will exit you from the DiskPart program)
· EXIT (this will exit you back to the Windows 7 install
program)