Windows 10 USB installation stuck at 'Copying Windows files (0%)'

0

After formatting the SSD in my laptop, I am trying to install Windows 10 on it using a USB created from the Windows Media Creation Tool (I have tried multiple USBs). When I do this, the process does not get farther than 'Copying Windows files (0%)'.

I have formatted it, cleaned it, and checked it for write protection through the Windows commandprompt but it still does not proceed. I know ubuntu can be installed on it, but not Win 10.

CDO

Posted 2017-07-13T14:17:25.537

Reputation: 15

What build of Windows 10, are you trying to install, hopefully you are installing 1703 – Ramhound – 2017-07-13T14:20:09.193

@Ramhound Yes, I am installing 1703 – CDO – 2017-07-13T14:23:27.967

get a clean ISO from MS and use tools like rufus to create a bootabe USB drive

– magicandre1981 – 2017-10-22T08:12:38.737

Answers

0

Try booting off a Windows DVD if your system has a DVD R/W available. It should work like a charm. Let me know about any troubles throug comments.

Rezn0v

Posted 2017-07-13T14:17:25.537

Reputation: 85

0

Right, this solution may sound really far-fetched, but bear with me as this worked for me.

  1. Grab the tool Rufus and an Ubuntu ISO, both are available online.
  2. Use Rufus to burn the ISO to a USB. Choose the FAT32 option and if your partition table is MBR, choose the option that has 'BIOS' in it else choose one of the UEFI options.
  3. When it is done, boot from the Ubuntu USB. When asked, select Try Ubuntu.
  4. Once you see a desktop, press CTRL ALT T to load the terminal. Keep this open in the background.
  5. Search for a program called Disks, open it and navigate to your SSD. Make a note of its path, eg /Dev/D
  6. Going back to the terminal window you should have open, type in the following commands, where [path] is the path of your SSD, so something like /Dev/d:

    sudo hdparm --user-master u --security-set-pass passkey [path]

    sudo hdparm --user-master u --security-erase passkey [path]

    sudo hdparm -I [path]

  7. At the end of the last command, you should see some lines of text. Look for the line that says 'not frozen'. That means it has been done correctly. If it says 'frozen', this fix probably won't work for you.

  8. Turn your computer off, and boot to your Windows 10 USB.

  9. Go through the options, then press 'Custom Install'. Delete all partitions shown, highlight the unallocated space then press Next. The installation should go perfectly.

Edward Adams

Posted 2017-07-13T14:17:25.537

Reputation: 11