windows install
Go to solution
Solved by FizzyFantom,
You can use Diskpart in the command prompt from the Windows setup.
When you get to the first screen of the installer press "shift" and "F10" to open the command prompt.
You should then use Diskpart to edit the HDD partition table. The following commands should change the drives partition table to MBR:
DISKPART> list disk
DISKPART> select disk 0
DISKPART> online disk
DISKPART> attributes disk clear readonly
DISKPART> clean
DISKPART> convert mbr
You can then also create a partition for the OS if you want (but the OS should be able to do this during setup):
DISKPART> create partition primary
DISKPART> select part 1
DISKPART> format fs=ntfs label="System" unit=512 quick compress
DISKPART> assign letter c
DISKPART> list volume
I hope this helps.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now