Troubleshooting & Maintaining Your PC All-in-One For Dummies, 3rd Edition
Explore Book Buy On AmazonIf you have difficulty getting an update to process, follow these steps:
- Open an Administrator Command prompt window. Press Win+X and choose Command Prompt (Admin) from the supersecret menu. Click the Yes button to proceed.
- Type this command:
net stop wuauserv
Type the three words shown here, separated by spaces. Press the Enter key when you're done.The name of the Windows Update service is wuauserv. Upon success, you see the text
The Windows Update service is stopping.
The Windows Update service was stopped successfully.
If the service can't be stopped, you must boot into safe mode and attempt these steps again. But you're not done yet! Stopping the service is only the first task. The second task is removing the stuck files. - Type the command
cd %windir%
The command prompt changes to reflect the Windows directory (folder).
- Type the command
cd SoftwareDistribution
Don't put a space between Software and Distribution! The SoftwareDistribution folder is where Windows updates lurk.
- Type the command
del /F /S /Q Download
Those are forward slashes and the letters F, S, and Q. This command purges the files that Windows uses to update the system. It's okay to delete them, because the update has failed; Windows downloads them again when you're done.With the files purged, the final step is to restart the Windows Update service.
- Type this command:
net start wuauserv
The following text confirms success:The Windows Update service is starting.
The Windows Update service was started successfully.
- Close the Administrator Command Prompt window. The cool kids type the exit command.