New HDD won't show

Dario_92

New member
Hello people, I bought a new hard drive a few weeks back and that's me just getting round to installing it. Now, everything is all plugged in correctly and once I get into windows and right click on Computer to format it and use it the Initialize Disk pops up, I click OK so i can initialize the disk and then an error comes up saying "No such interface supported". Once I click OK and try right clicking on the drive in the Disk Management everything is greyed out apart from properties and help. I am running Windows 8 pro 64bit.

Dario.
 
Run CMD as admin
diskpart-listdisk-selectdisk-format fs=ntfs-create partition primary-assign.
(I'm not sure that these are the exact commands haven't done a format through CMD for a long long time)
 
Run CMD as admin
diskpart-listdisk-selectdisk-format fs=ntfs-create partition primary-assign.
(I'm not sure that these are the exact commands haven't done a format through CMD for a long long time)

Will this format all my HDD's or do I select a certain HDD ??

Thanks.
 
Have you tried the "Scan for hardware changes" option in device manager? The drive may appear in Disk Management, but I've found in the past that scanning for hardware changes before doing anything with a new hard drive ensures a fairly seamless operation.
 
Have you tried the "Scan for hardware changes" option in device manager? The drive may appear in Disk Management, but I've found in the past that scanning for hardware changes before doing anything with a new hard drive ensures a fairly seamless operation.

Just tried that there mate, still no luck im afraid :(
 
Try what Thelosouvlaki has suggested (I've provided more details):

Run the command line as admin and type the below in the following order:

1. diskpart
2. list disk (this will show all the connected disks listed as disk 0, disk 1, etc.)
3. Determine which disk you need to format and use select disk to select it e.g. If you want to format disk 0 type: select disk 0
4. format fs=ntfs
 
Try what Thelosouvlaki has suggested (I've provided more details):

Run the command line as admin and type the below in the following order:

1. diskpart
2. list disk (this will show all the connected disks listed as disk 0, disk 1, etc.)
3. Determine which disk you need to format and use select disk to select it e.g. If you want to format disk 0 type: select disk 0
4. format fs=ntfs

I tried this but it did not work, after i select disk 2 and type in fs=ntfs it comes up with a list of everything and whatever i type into CMD it comes up with "There is no volume specified. Please select a volume and try again.

Is the disk showing up in the BIOS?

Yeah it shoes in BIOS
 
Try the suggestion in this link. I think it's more appropriate to your situation:

http://www.jwgoerlich.us/blogengine...Diskpart-to-Create-and-Format-Partitions.aspx

The commands are below in case the link stops working in the future:

DISKPART> list disk
DISKPART> select disk (id)
DISKPART> online disk (if the disk is not online)
DISKPART> attributes disk clear readonly
DISKPART> clean
DISKPART> convert mbr (or gpt)
DISKPART> create partition primary
DISKPART> select part 1
DISKPART> active (if this is the boot partition)
DISKPART> format fs=ntfs label=(name) quick
DISKPART> assign letter (letter)
DISKPART> list volume
 
Try the suggestion in this link. I think it's more appropriate to your situation:

http://www.jwgoerlich.us/blogengine...Diskpart-to-Create-and-Format-Partitions.aspx

The commands are below in case the link stops working in the future:

DISKPART> list disk
DISKPART> select disk (id)
DISKPART> online disk (if the disk is not online)
DISKPART> attributes disk clear readonly
DISKPART> clean
DISKPART> convert mbr (or gpt)
DISKPART> create partition primary
DISKPART> select part 1
DISKPART> active (if this is the boot partition)
DISKPART> format fs=ntfs label=(name) quick
DISKPART> assign letter (letter)
DISKPART> list volume

I only get to "select part 1" and this happens http://gyazo.com/b64fa299e6c25e7a422722f52dea66ac

Do you have PartedMagic? Can you format it from there?

No I don't have this program mate
 
Back
Top