Mechanical Hard drive not responding

EpicTheron

Commendable
Mar 31, 2016
60
0
1,630
I added a new hard drive to my PC i just build but it is not recognizing it. I went to disk management and i right click on it but it not giving me an option to activate it it just says covert to Dynamic disk, convert to GPT disk, offline, properties, and help
 
Solution
Hold down the Windows key, and press R. Type "diskpart" into the box. This will launch the command line partitioning tool. Type "list disk" and see what it spits out. Note which drive is the one you want to work with.

Now type "select disk #", where # is the number of the disk you want. Now type "clean" to wipe whatever partition table it has already.

Now enter "create partition primary", which will create a single partition the size of the whole drive. All that's left now is to format it with "format fs=ntfs label=PartitionName", where PartitionName can be whatever you want.

That might take a while, so go make a coffee or something.

Once that's done, type "assign letter=G" or whatever letter you want assigned to the partition...

lindsay24

Reputable
Mar 30, 2015
207
0
4,860
Hold down the Windows key, and press R. Type "diskpart" into the box. This will launch the command line partitioning tool. Type "list disk" and see what it spits out. Note which drive is the one you want to work with.

Now type "select disk #", where # is the number of the disk you want. Now type "clean" to wipe whatever partition table it has already.

Now enter "create partition primary", which will create a single partition the size of the whole drive. All that's left now is to format it with "format fs=ntfs label=PartitionName", where PartitionName can be whatever you want.

That might take a while, so go make a coffee or something.

Once that's done, type "assign letter=G" or whatever letter you want assigned to the partition, and you should get a popup from Windows asking what you want to do with the new partition.
 
Solution