Just finished new built quick question!

aRodr1guez

Distinguished
Feb 15, 2012
219
0
18,710
Okay so here are my specs

i5-2500k
2x4GB RAM
Asus p8z68-v pro
crucial m4 128gb ssd
caviar black 1tb hdd
gtx 680

So my question is for some reason my hdd isn't appearing in windows but it appears in bios. What could be the cause and how can I fix this. Thank you in advance.
 
Solution
What do you mean not appearing in Windows? As in, not appearing in My Computer?

Press Start
Right Click Computer
Click Manage
Go in Disk Management
Select the WD Caviar Black and format it

or

Click Start
type CMD
Ctrl+Shift+Enter

[cpp]
diskpart
list disk[/cpp]

If the WD Caviar Black appears in the list, remember the Disk #

[cpp]select disk #
clean
convert mbr *(not absolutely necessary, but might as well)*
create partition primary
select partition 1
format fs=ntfs quick[/cpp]

Both methods should work, especially if the drive appears in BIOS...

quicksand10

Distinguished
Jan 23, 2012
530
0
19,160
What do you mean not appearing in Windows? As in, not appearing in My Computer?

Press Start
Right Click Computer
Click Manage
Go in Disk Management
Select the WD Caviar Black and format it

or

Click Start
type CMD
Ctrl+Shift+Enter

[cpp]
diskpart
list disk[/cpp]

If the WD Caviar Black appears in the list, remember the Disk #

[cpp]select disk #
clean
convert mbr *(not absolutely necessary, but might as well)*
create partition primary
select partition 1
format fs=ntfs quick[/cpp]

Both methods should work, especially if the drive appears in BIOS...
 
Solution

aRodr1guez

Distinguished
Feb 15, 2012
219
0
18,710


"Says windows cannot delete system partition on this disk" when i try to format it.
 

quicksand10

Distinguished
Jan 23, 2012
530
0
19,160
Weird.

Did you run CMD as administrator? (Ctrl+Shift+Enter)

Try
[cpp]diskpart
list disk
select disk #
list partition[/cpp]

Find the 100MB partition #

[cpp]select partition #
delete partition
clean
convert mbr
create partition primary
select partition 1
format fs=ntfs quick[/cpp]

Check if this works.

Edited for clarity.
 

aRodr1guez

Distinguished
Feb 15, 2012
219
0
18,710
Thanks for your help I ended up finding a solution. The unallocated part of the disk I right click and clicked on extend volume and picked the rest of what was unallocated and labeled it as drive E, quick formatted it and now it appears in my computer. If it wasn't for your help I would of never found it anyway so Thank You.