Windows – Cannot install Windows 8 because it can’t create a new partition

windows 8

After my operating system Windows 8 crashed, I tried to format my hard-disk but Windows 8 shows error:

We couldn't create a new partition or locate an existing one. For more information, see the setup files.

I tried to solve it as follows:

  • Repair computer
  • go to advanced tools
  • start command line
  • start DISKPART
  • type LIST DISK and identify my disk number as disk 0
  • type SELECT DISK 0
  • type CLEAN
  • CLEAN PARTITION PRIMARY
  • ACTIVE
  • FORMAT FS = NTFS QUICK
  • ASSIGN
  • EXIT (twice)

I've combined my disk to a single one, there are no other disk partitions when I tried the above.

Any Idea? Is my hard-disk is damaged or is this a software problem?
I have recovered all data from the hard disk to another external hard disk with a Fedora 15 Live CD.

Best Answer

If you are installing from a USB device and you are getting this error, then try this. Go to repair/cmd and copy all the files from USB to the drive where you wish to install to. If D: is USB, E: is your Windows partition, then type in these commands.

D:
xcopy /E /H *.* E:\

Then set your Windows partition as active with diskpart:

diskpart
list disk
select disk X

Where X is your HDD or SSD where you want to install Windows.

list partition
select partition X
active
exit

Now unplug the USB, close cmd window and reboot the PC. Now the installer will start from your HDD and you can install to the same location. You can delete the installation files when you're done (compare with USB contents).