So the last few days my Windows 10 Store has been stuck downloading updates to apps "Microsoft .Net Native Runtime Package 1.0". Durring the process WUAUSERV "service" in command prompt failed to stop so I found a solution to reset the service as well.
I thought I would share my experience on resetting all this.


Resetting Windows 10 Store and Update
Code:
Open Command Prompt as Administrator 
-Press X and Windows Key together and click "Command Prompt (Admin)"Type: net stop bits then hit enter


Type: net stop wuauserv then hit enter
-If fails to stop see Annex A below and then continue this process


Type: net stop appidsvc then hit enter


Type: net stop cryptsvc then hit enter


Type: Ren %systemroot%\SoftwareDistribution SoftwareDistribution.bak then hit enter


Type: Ren %systemroot%\system32\catroot2 catroot2.bak then hit enter


Type: net start bits then hit enter


Type: net start wuauserv then hit enter


Type: net start appidsvc then hit enter


Type: net start cryptsvc then hit enter

Restart of system usually recommended.

Annex A: Resetting WUAUSERV
Code:
Steps were found at this link. For posterity I have copied it below.

Open Command Prompt as Administrator 
-Press X and Windows Key together and click "Command Prompt (Admin)"

Type: sc queryex wuauserv then hit enter
-Take note of the Program ID (PID) number for the wuauserv

Type: taskkill /f /pid [PID] and hit enter -minus the brackets
-e.g. taskkill /f /pid 1864