Win7 error 0x000006d18 two solutions

  

When a user starts up, the system pops up an error message of “0x000006d18”, although it does not affect the normal operation of the system, but it affects the mood. Next, follow the lazy snake to learn how to solve this mistake.

1.Manual execution

1. Open the cmd window with administrator privileges

2. Enter the net stop WuAuServ command in the window and click Enter to execute. The Windows Update service will stop.

3, continue to enter cd /d %windr%, and then enter ren SoftwareDistribution SoftwareDistribution1

4, continue to enter net start WuAuServ, open the windows update service.

Second, use batch processing

1, create a new fix.txt file on the desktop, modify the suffix name to bat, that is, modify it to fix.bat

2, open the fix.bat with notepad, copy the following code into the bat file.
Copying content to clipboard @echo off


  • net stop WuAuServ

  • cd /d %windir% && ren SoftwareDistribution SoftwareDistribution1

  • net start WuAuServ



  • 3. Drag the newly saved batch file to the cmd window and hit enter.

  • Copyright © Windows knowledge All Rights Reserved