Trying to launch media creation tool - "Something happened 0x80070002 - 0x20016"

8

I'm getting the "Something happened 0x80070002 - 0x20016" error message when trying to launch the Media Creation Tool. I wonder what this could mean and how can I fix it?

user626528

Posted 2015-08-03T05:05:50.890

Reputation: 783

http://superuser.com/questions/949234/windows-10-upgrade-error-0x80070002 this question (answer) covers a method for fixing one sort of error of that type. to download the microsoft update troubleshooter, and use it. The error general, is usualy a files, or access to, or permission, or storage type of issue. that can include datastore, software distribution local, and system file integrity (which a SFC scan would be used for) – Psycogeek – 2015-08-03T05:42:21.527

Answers

3

Windows 10 Upgrade Problems: Something Happened Error

Automated fix: Run the Windows Update Troubleshooter.

Manual fix: See below.


Automated fix

Even when users get Windows 10 running on their PCs, they are running into issues. Once issue that happens is simply being referred to as the Something Happened error. It’s called that because that’s what shows up on-screen.

Microsoft has a tool to automatically fix this issue and it is called the Windows Update Troubleshooter. If you’re an experienced user you can manually try and fix this with the Command Prompt by following these instructions.

Source 7 Windows 10 Upgrade Problems & How to Fix Them


Manual fix

This issue might also occur due to corruption in Windows Update component files. I suggest you to reset Windows Update component. Kindly follow the below given steps.

  1. Press Windows+X, select Command prompt (Admin) to bring up elevated Command prompt.

  2. Stop the BITS service, the Windows Update service, and the Cryptographic service. To do this, at a command prompt, type the following commands. Make sure that you press Enter after you type each command.

    • net stop bits

    • net stop wuauserv

    • net stop appidsvc

    • net stop cryptsvc

  3. Rename the software distribution folders backup copies. To do this, at a command prompt, type the following commands. Make sure that you press Enter after you type each command.

    • Ren %systemroot%\SoftwareDistribution SoftwareDistribution.bak

    • Ren %systemroot%\system32\catroot2 catroot2.bak

  4. Restart the BITS service, the Windows Update service, and the Cryptographic service. To do this, at a command prompt, type the following commands. Make sure that you press Enter after you type each command.

    • net start bits

    • net start wuauserv

    • net start appidsvc

    • net start cryptsvc

  5. Restart your PC and check if it works this time when you try to update.

Source Unable to Upgrade to Windows 10 - Something Happened error

DavidPostill

Posted 2015-08-03T05:05:50.890

Reputation: 118 938

3

I was seeing the Something happened 0x80070002 - 0x20016" error (as per image below) when running the media creation tool as well. What worked for me was the following fix from Reddit. I was having to run the tool as I hadn't recieved a notification to reserve a copy and it wasn't showing up in Windows Update until the below change in the registry.

  1. Click on Start, search for regedit.
  2. With regedit open, proceed to the following path. Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade
  3. Right click on the right side window and go to New -> DWORD (32-bit) value
  4. Rename the new value to "AllowOSUpgrade" without the " quotations and make sure it is exactly the same as it is case sensitive.
  5. Double click on the newly created value AllowOSUpgrade and change the value to 1 with hexidecimal base.
  6. Close regedit and run Windows Update again. Windows 10 should pop up and you can then download it.

enter image description here

mhollander38

Posted 2015-08-03T05:05:50.890

Reputation: 213

I did reserve upgrade, and this fix didn't solve my problem. – user626528 – 2015-08-04T03:02:17.687

And what problem exactly are you faced with? – mhollander38 – 2015-08-06T15:07:08.420

See the question above. – user626528 – 2015-08-06T15:32:47.043

It is worth noting that you can't upgrade Enterprise. – bdwakefield – 2015-08-28T04:31:50.820

I couldn't find OSUpgrade. – NatoBoram – 2019-04-04T19:35:25.573

1

Besides any other fixes presented in these answers, the cache folders for the files needed to create the media should also be erased. Corruption of these files is also a cause of failure to create the media.

Erase the two cache folders present at C:\, named:

$WINDOWS.~BT
$Windows.~WS

You might need to modify the View parameters of C: as to be possible to view hidden and system folders and files.

After this, the Media Creation Tool will download the needed files again.

RPAugusto

Posted 2015-08-03T05:05:50.890

Reputation: 86

This answer worked for me and it is much easier than the above answers! – zer0hedge – 2017-11-28T07:14:25.167