How to Stop a Windows Update in Progress
Issue type: Windows Update — stopping an active download, pausing an update queue, or deciding what to do when Windows is already installing an update. Applies to Windows 10 and Windows 11.
Short answer: If you need to know how to stop a Windows update in progress, first check the phase. If Windows is still downloading, pause updates from Settings or stop the Windows Update services. If Windows is already installing on a restart screen, do not cut the power unless the PC is clearly frozen for hours. Downloading can usually be stopped safely; installation is the risky stage.
How to Stop a Windows Update in Progress: Check the Phase First
Do not start with commands. Start by identifying what Windows is doing right now. The correct fix depends on the phase:
- Downloading: Safe to pause or stop. Windows has not started changing system files yet.
- Pending install: Usually safe to pause, restart later, or troubleshoot from Settings.
- Installing at the desktop: Be careful. Windows may already be staging files.
- Restarting / Working on updates / Getting Windows ready: Do not interrupt unless it is completely frozen for a long time.
Open Settings > Windows Update. If the status says Downloading, Pending download, or Pending install, you still have room to stop or pause it. If the PC has already restarted and shows a percentage counter, move to the section about restart/update screens below.
Fix 1: Pause the Update from Windows Settings
This is the cleanest method because it tells Windows to stop the update queue normally instead of killing services in the background.
- Press Win + I to open Settings.
- Go to Windows Update.
- Click Pause updates.
- Choose any pause duration available.
- Wait 20–60 seconds and watch the status message.
- Restart the PC only if Windows asks you to, not just because the download stopped.
After pausing, Windows usually stops the current queue. Files that were already downloaded may remain cached, which is normal. If the update keeps returning in a broken state, the issue is no longer “stop the update”; it is a stuck update queue. In that case, the guide on Windows Update Pending Install is the better next step.
Fix 2: Stop Windows Update Services with CMD
Use this when the Settings button is missing, frozen, managed by policy, or the download continues even after pausing.
⚠️ Warning: Use these commands only while Windows is still at the desktop. Do not run them during a restart screen, a percentage screen, or “Getting Windows ready.” Stopping update services during installation can leave Windows in an incomplete state.
- Right-click Start.
- Choose Terminal (Admin) or Command Prompt (Admin).
- Run these commands one at a time:
net stop wuauserv
net stop bits
net stop dosvc
wuauserv controls Windows Update, bits handles background downloads, and dosvc handles Delivery Optimization. Stopping all three usually halts the active download queue.
When you are ready to allow updates again, run:
net start wuauserv
net start bits
net start dosvc
On work or school devices, a policy may restart these services automatically. That does not mean the command failed; it means the device is managed and the policy is enforcing updates.
Fix 3: Stop Windows Update from Services
This is the same idea as CMD, but through the Windows interface.
- Press Win + R.
- Type
services.mscand press Enter. - Find Windows Update.
- Right-click it and choose Stop.
- Find Background Intelligent Transfer Service.
- Right-click it and choose Stop.
Do not set the startup type to Disabled unless you are troubleshooting temporarily. Leaving Windows Update disabled long-term blocks security updates and can create future installation problems.
Fix 4: Clear the Download Queue Only If the Update Is Stuck
Do not clear update files just because you changed your mind. Clear them only when the same update keeps failing, the download is stuck, or Windows keeps retrying the same package.
⚠️ Warning: This removes downloaded update files. Windows will need to download them again later. Do not run this while an update is installing.
- Open Command Prompt as Administrator.
- Stop the services:
net stop wuauserv
net stop bits
- Delete only the contents of the download folder:
del /f /s /q "%SystemRoot%\SoftwareDistribution\Download\*"
- Restart the services:
net start wuauserv
net start bits
If this fixes the loop, Windows will rebuild the download queue cleanly. If it does not, you may need a full update component reset later.
What If Windows Is Already on a Restart or “Working on Updates” Screen?
If the PC is already on a full-screen update page, the safest fix is usually waiting. Watch for signs of life: disk light activity, fan changes, screen brightness changes, or percentage movement. If the number is stuck but the disk is active, Windows is still working.
Use this rule:
- Less than 30 minutes: wait.
- 30–90 minutes: still often normal on older PCs or HDDs.
- Over 3 hours with no visible activity: a hard restart may be necessary.
If a hard restart triggers “Undoing changes made to your computer,” let that finish. Do not interrupt the rollback. If the PC loops repeatedly, use the guide on Undoing Changes Made to Your Computer or Windows Update Restart Loop.
Common Mistake
The worst mistake is holding the power button the moment a percentage appears frozen. Windows Update progress is not always linear. Sometimes it sits at one number while staging files, checking drivers, or preparing rollback data. Cutting power during that stage can turn a normal slow update into a repair problem.
Best Next Step
If you stopped the update because it looked broken, run the Windows Update troubleshooter before trying again. Go to Settings > System > Troubleshoot > Other troubleshooters > Windows Update > Run. Microsoft also documents the Windows Update troubleshooter here: Windows Update troubleshooter — Microsoft Support.
Frequently Asked Questions
Can I stop Windows Update while it is downloading?
Yes. If it is only downloading, you can pause updates from Settings or stop the Windows Update services. Windows may keep already downloaded files in the cache, but the system is not usually at risk because installation has not started.
Can I stop Windows Update while it is installing?
You should avoid it. Once Windows is installing, it may be replacing system files, configuring drivers, or writing rollback data. Interrupting that phase can cause failed updates, rollback loops, or startup repair.
Why does Windows keep restarting the update after I stop it?
Either the update is mandatory, your pause period expired, or the device is managed by policy. Work and school PCs can re-enable Windows Update services automatically even after you stop them manually.
Can I permanently block Windows updates?
You can delay updates, but permanently blocking them is not a good plan. Security patches protect the system. If one update is causing trouble, uninstall or hide that specific update rather than disabling Windows Update forever. For a problematic installed update, use Uninstall a Windows 11 Update Safely.
What should I do if stopping the update caused errors?
Restart once, run the Windows Update troubleshooter, then check Windows Update again. If the same error returns, clear the update cache or reset update components instead of repeatedly stopping the same update.