Wiki source code of Windows 10
Version 1.2 by Sebastian Marsching on 2022/05/29 12:30
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{toc/}} | ||
2 | |||
3 | # Problems with Windows Update | ||
4 | |||
5 | ## Error 0x80244007 | ||
6 | |||
7 | I got error 0x80244007 on a Windows 10 computer after running the Server Cleanup Wizard on the WSUS server. In my case, deleting `C:\Windows\SoftwareDistribution\DataStore\DataStore.edb` like suggested [here](https://social.technet.microsoft.com/Forums/en-US/a3753969-7a79-436d-9820-1bb9d4eb398f/windows-update-client-failed-to-detect-with-error-0x8024400d?forum=winserverwsus#7472cf22-f820-430c-b2d3-043eee100673) worked: | ||
8 | |||
9 | ```bat | ||
10 | net stop wuauserv | ||
11 | del C:\Windows\SoftwareDistribution\DataStore\Datastore.edb | ||
12 | net start wuauserv | ||
13 | wuauclt /detectnow | ||
14 | ``` |