220-1102Chapter 125 of 131Objective 1.1

Windows Update Configuration

This chapter covers Windows Update configuration, a critical topic for the CompTIA A+ Core 2 (220-1102) exam under Objective 1.1 (Operating Systems). You will learn how to manage update settings, troubleshoot common issues, and understand the different update types and delivery mechanisms. Expect approximately 5-7% of exam questions to touch on Windows Update, either directly or as part of broader OS maintenance scenarios. Mastering this topic is essential for supporting Windows clients in enterprise and consumer environments.

25 min read
Intermediate
Updated May 31, 2026

Windows Update as a Subscription Service

Think of Windows Update like a streaming service such as Netflix. Microsoft, the content producer, releases new shows (updates) on a schedule—typically Patch Tuesday for security content and optional previews for feature updates. Your Windows device is like a smart TV. The TV's operating system periodically checks in with Netflix's servers to see if new content is available. If there is, it downloads the content and installs it, sometimes requiring a restart (like a firmware update on the TV). You can configure your TV to auto-update, notify you, or only download during off-peak hours. Similarly, Windows Update has settings for automatic, manual, or scheduled installation. The delivery optimization feature is like Netflix's adaptive bitrate streaming—it lets your TV download from other nearby TVs that already have the content, reducing load on the central server. If you turn off updates entirely, your TV becomes vulnerable to bugs and security flaws, just like an unpatched Windows PC. The analogy breaks down slightly because Windows updates can be mandatory for security, whereas Netflix never forces a firmware update, but the core idea of a client periodically checking a server for new packages and installing them is identical.

How It Actually Works

What is Windows Update and Why Does It Exist?

Windows Update is a Microsoft service that provides updates for the Windows operating system and other Microsoft software. Its primary purpose is to deliver security patches, bug fixes, feature updates, and driver updates to keep systems secure and stable. Without regular updates, Windows systems become vulnerable to malware, exploits, and system instability. The 220-1102 exam expects you to know how to configure update settings, manage update types, and troubleshoot update failures.

How Windows Update Works Internally

Windows Update operates through a client-server model. The Windows Update client (wuauclt.exe or its modern replacement, the Update Orchestrator) runs as a service on the local machine. It communicates with Microsoft's update servers (or a local WSUS server in enterprise environments) over HTTPS (port 443). The process follows these steps:

1.

Scan: The client sends a request to the update server with information about the current OS version, installed updates, and hardware. The server responds with a list of applicable updates.

2.

Download: The client downloads the update files (usually .cab, .psf, or .msu files) from the server. Files are stored in the C:\Windows\SoftwareDistribution\Download folder.

3.

Install: The client applies the update. This may involve modifying system files, registry keys, or drivers. Some updates require a reboot to complete installation.

4.

Commit: After reboot, the update is committed to the system. If installation fails, Windows may roll back the changes automatically.

Key Components, Values, and Defaults

- Update Types: - Security Updates: Critical patches for security vulnerabilities. Released monthly on Patch Tuesday (second Tuesday of the month). - Critical Updates: Fixes for non-security bugs that are important for stability. - Feature Updates: Major OS upgrades (e.g., version 22H2 to 23H2). Released twice a year (or once for LTSC). - Driver Updates: Updates for hardware drivers from Microsoft's catalog. - Definition Updates: Updates for Windows Defender antimalware signatures. - Update Rollups: Cumulative sets of updates (e.g., Monthly Rollup for Windows 7). - Optional Updates: Non-critical updates, including feature updates deferred for testing.

Default Settings:

Windows 10/11 Pro: Automatic updates are enabled by default. Updates are downloaded and installed automatically, with a reboot scheduled during inactive hours.

Windows 10/11 Home: Automatic updates are mandatory; you cannot defer feature updates indefinitely.

Windows 10/11 Enterprise: Administrators can control updates via Group Policy or Windows Server Update Services (WSUS).

- Important Timers: - Active Hours: Default is 8:00 AM to 5:00 PM. Updates will not reboot during active hours. You can change this in Settings > Windows Update > Change active hours. - Update Deadline: For quality updates, the deadline is 7 days after detection by default for Windows 10/11 Pro. Feature updates have a 60-day deferral period. - Restart Notifications: Windows will notify the user 15 minutes before a forced reboot, then count down.

Delivery Optimization:

Uses peer-to-peer sharing to download updates from other PCs on the local network or the internet. Controlled via Settings > Windows Update > Advanced options > Delivery Optimization.

Can be disabled or limited to local network only via Group Policy.

Configuration and Verification Commands

- Using PowerShell: - Get-WindowsUpdate (requires PSWindowsUpdate module) lists available updates. - Install-WindowsUpdate -AcceptAll installs all available updates. - Get-WUHistory shows installed update history.

- Using Command Prompt: - wuauclt /detectnow forces the Windows Update client to scan for updates (legacy, may not work on newer builds). - usoclient scan (Windows 10/11) triggers a scan for updates. - usoclient startscan – alternative command.

Using Settings App:

Go to Settings > Update & Security > Windows Update (Windows 10) or Settings > Windows Update (Windows 11).

Click 'Check for updates' manually.

View update history under 'View update history'.

Using Group Policy (gpedit.msc):

- Navigate to Computer Configuration > Administrative Templates > Windows Components > Windows Update. - Key policies: - 'Configure Automatic Updates': Set to 2 (Notify for download and auto install), 3 (Auto download and notify), 4 (Auto download and schedule install), or 5 (Allow local admin to choose). - 'Specify intranet Microsoft update service location': Points to WSUS server. - 'Defer Windows Updates': Enable to defer feature updates for up to 365 days.

Interaction with Related Technologies

WSUS (Windows Server Update Services): Enterprise deployment tool that allows administrators to approve and deploy updates from a local server. Clients are configured via Group Policy to point to the WSUS server instead of Microsoft's public servers.

Windows Update for Business: Uses Group Policy or MDM to control update rings (e.g., Insider Fast, Insider Slow, Broad). Allows deferral of feature updates.

Microsoft Endpoint Configuration Manager (SCCM): Integrates with WSUS for advanced update management.

Windows Defender: Definition updates are delivered via Windows Update; ensures antivirus signatures are current.

Reset Windows Update Components: A troubleshooting step that involves stopping the Windows Update service, clearing the SoftwareDistribution and Catroot2 folders, and restarting services. Commands:

net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver

Troubleshooting Common Issues

Update stuck at downloading: Clear the SoftwareDistribution folder as above.

Error 0x80070002: Missing update files; run Windows Update Troubleshooter.

Error 0x800f0922: Update failed due to insufficient disk space or corrupted system files; run DISM and SFC.

Error 0x80240034: Update not applicable; check if prerequisites are installed.

Slow update downloads: Check Delivery Optimization settings; ensure no bandwidth throttling.

Exam Tips

Remember the default active hours (8 AM – 5 PM).

Know that Windows 10/11 Home cannot defer feature updates indefinitely.

Understand that WSUS requires configuring the 'Specify intranet Microsoft update service location' policy.

Be aware that the wuauclt /detectnow command is deprecated; use usoclient scan instead.

Recognize that 'Defer Updates' policies are found under Windows Update for Business.

Step-by-Step: Configuring Windows Update via Settings

1. Open Windows Update Settings: Press Windows + I, then go to Update & Security (Windows 10) or Windows Update (Windows 11). 2. Check for Updates: Click 'Check for updates' to manually scan. 3. Change Active Hours: Click 'Change active hours' and set the time range when you don't want restarts. 4. View Update History: Click 'View update history' to see installed updates and their success/failure status. 5. Configure Advanced Options: Click 'Advanced options' to set: - Automatic Updates: Choose whether to download and install automatically or notify. - Defer Feature Updates: Toggle on/off (Pro and Enterprise only). - Defer Quality Updates: Toggle on/off (Pro and Enterprise only). - Delivery Optimization: Choose how updates are downloaded (from Microsoft, from local network, or from internet peers). 6. Pause Updates: In Windows 10/11 Pro, you can pause updates for up to 35 days. In Home, pause is limited to 7 days. 7. Restart Options: Set a specific restart time or use 'Restart now'.

Step-by-Step: Configuring Windows Update via Group Policy

1. Open Local Group Policy Editor: Press Windows + R, type gpedit.msc, and press Enter. 2. Navigate to Windows Update Policies: Go to Computer Configuration > Administrative Templates > Windows Components > Windows Update. 3. Configure Automatic Updates: Double-click 'Configure Automatic Updates'. - Select 'Enabled'. - Choose an option: 2 = Notify for download and auto install, 3 = Auto download and notify, 4 = Auto download and schedule install, 5 = Allow local admin to choose. - For option 4, set the schedule (e.g., every day at 3:00 AM). 4. Set WSUS Server: Double-click 'Specify intranet Microsoft update service location'. - Select 'Enabled'. - Enter the WSUS server URL (e.g., http://wsus-server:8530). 5. Defer Updates: Double-click 'Select when Preview Builds and Feature Updates are received'. - Enable and set the branch readiness level (e.g., Semi-Annual Channel) and deferral period (0-365 days). 6. Apply and Exit: Click OK, then close the editor.

Step-by-Step: Troubleshooting Windows Update Using Command Line

1.

Stop Windows Update Services: Open Command Prompt as administrator and run:

net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
2.

Rename SoftwareDistribution and Catroot2 Folders:

ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
3.

Restart Services:

net start wuauserv
net start cryptSvc
net start bits
net start msiserver
4.

Run Windows Update Troubleshooter: Go to Settings > Update & Security > Troubleshoot > Additional troubleshooters > Windows Update > Run the troubleshooter.

5.

Run DISM and SFC:

DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
6.

Reset Windows Update Components Using PowerShell:

$services = @("wuauserv","bits","cryptSvc","msiserver")
foreach ($service in $services) { Stop-Service -Name $service -Force }
Remove-Item -Path "$env:systemroot\SoftwareDistribution" -Recurse -Force
Remove-Item -Path "$env:systemroot\System32\catroot2" -Recurse -Force
foreach ($service in $services) { Start-Service -Name $service }

Step-by-Step: Using Windows Update for Business (WUfB)

1.

Open Group Policy Management Console (on domain controller) or Local Group Policy Editor.

2.

Navigate to WUfB Policies: Computer Configuration > Administrative Templates > Windows Components > Windows Update > Windows Update for Business.

3.

Select the Branch Readiness Level:

- Double-click 'Select when Preview Builds and Feature Updates are received'. - Enable the policy. - Choose 'Windows Insider Program' or 'Semi-Annual Channel' (or 'Semi-Annual Channel (Targeted)' for earlier access). 4. Set Deferral Period for Feature Updates:

- In the same policy, set the deferral period (0-365 days). - Example: 180 days delays feature updates by 6 months. 5. Set Deferral Period for Quality Updates:

- Double-click 'Select when Quality Updates are received'. - Enable and set deferral period (0-30 days). 6. Pause Updates:

- Double-click 'Manage preview builds and feature updates'. - Enable and set 'Pause updates' to 'Enabled' and choose 'Start date'. 7. Apply and Exit.

Step-by-Step: Configuring Delivery Optimization

1. Open Settings: Go to Settings > Update & Security > Delivery Optimization (Windows 10) or Settings > Windows Update > Advanced options > Delivery Optimization (Windows 11). 2. Choose Update Source: - 'PCs on my local network' – only uses local peers. - 'PCs on my local network and PCs on the internet' – uses internet peers (default). 3. Advanced Options:

- Set absolute bandwidth (e.g., 50% of available bandwidth). - Set monthly upload data limit. 4. Using Group Policy:

- Navigate to Computer Configuration > Administrative Templates > Windows Components > Delivery Optimization. - Enable 'Download mode' and set to: - 0 = HTTP only (no peering) - 1 = LAN peering - 2 = Group peering - 3 = Internet peering - 99 = Simple download mode (no peering) - Set 'Maximum upload bandwidth' in KB/s. 5. Using PowerShell:

Set-DeliveryOptimizationSetting -DownloadMode 1

Step-by-Step: Using Command Line to Check Update Status

1. Open Command Prompt as Administrator. 2. Run UsoClient commands: - usoclient scan – triggers a scan for updates. - usoclient startscan – same as scan. - usoclient download – downloads pending updates. - usoclient install – installs downloaded updates. - usoclient startinstall – same as install. 3. View Update History via Command Line:

wmic qfe list brief /format:table

- This displays installed updates with HotFixID, InstalledOn, and Description. 4. Using PowerShell to View History:

Get-HotFix | Format-Table -AutoSize
5.

Check Update Service Status:

sc query wuauserv

- Look for STATE: RUNNING.

Step-by-Step: Resetting Windows Update Using Microsoft's Script

1.

Download the Windows Update Troubleshooter from Microsoft's website.

2.

Run the troubleshooter and follow the prompts.

3.

Alternatively, use the Microsoft Update Health Tools (available in Windows 10 2004 and later) to check for corruption.

4.

If issues persist, perform an in-place upgrade using the Media Creation Tool to repair the OS while preserving apps and data.

Walk-Through

1

Open Windows Update Settings

Press Windows + I to open Settings. In Windows 10, click 'Update & Security'. In Windows 11, click 'Windows Update' directly. This is the central location for all update-related configurations. From here, you can manually check for updates, view update history, change active hours, and access advanced options like deferral policies and delivery optimization.

2

Check for Updates Manually

Click the 'Check for updates' button. This triggers the Update Orchestrator (usoclient) to contact Microsoft's update servers. The client sends a scan request with the current OS build, installed updates, and hardware IDs. The server responds with a list of applicable updates. Any available updates will begin downloading immediately if automatic download is enabled.

3

Configure Active Hours

Click 'Change active hours'. This sets the time period during which the device is typically in use. Windows will not automatically restart to install updates during active hours. The default is 8:00 AM to 5:00 PM. You can customize this to any 18-hour window. If you set active hours to cover the entire day, Windows will still force a restart after 7 days for quality updates.

4

View Update History

Click 'View update history' to see a list of installed updates, including their KB numbers, installation dates, and status (Successful, Failed, or Pending). This is useful for troubleshooting failed updates or verifying that a specific patch is installed. You can also uninstall updates from this screen if needed.

5

Set Advanced Options

Click 'Advanced options' to configure update behavior. Here you can toggle automatic updates on/off (Pro/Enterprise only), defer feature updates (up to 365 days), defer quality updates (up to 30 days), and choose how updates are delivered (Delivery Optimization). You can also pause updates for up to 35 days (Pro/Enterprise) or 7 days (Home).

6

Configure Delivery Optimization

In Advanced options, click 'Delivery Optimization'. This setting controls peer-to-peer update sharing. You can choose to download from Microsoft only, from local network PCs, or from internet PCs. You can also set absolute bandwidth limits and monthly upload caps. Enterprise environments often disable internet peering via Group Policy to prevent data leakage.

7

Pause Updates (If Needed)

In the Windows Update page, click 'Pause updates for 7 days' (Home) or 'Pause updates for up to 35 days' (Pro/Enterprise). This temporarily stops update downloads and installations. Useful during critical work periods. After the pause period expires, Windows will automatically resume updates. You can also manually resume updates at any time.

What This Looks Like on the Job

Enterprise Deployment with WSUS

In a medium-sized company with 500 Windows 10 workstations, the IT team uses Windows Server Update Services (WSUS) to control update deployment. The WSUS server synchronizes with Microsoft Update once a day at 2:00 AM. Administrators approve updates after testing on a pilot group of 20 machines. Client machines are configured via Group Policy to point to the internal WSUS server (http://wsus.internal:8530). The policy also sets automatic update behavior to 'Auto download and notify' (option 3) so users are aware but IT controls installation timing. A common issue is that clients fail to report to WSUS if the policy is misconfigured or if the WSUS server URL is missing the port number. Performance is generally good, but during Patch Tuesday, the WSUS server may experience high load if all clients scan simultaneously. To mitigate, administrators stagger scan times using Group Policy.

Retail Chain with Windows 10 Home Devices

A retail chain uses Windows 10 Home on point-of-sale (POS) terminals. These devices cannot defer updates via Group Policy, so updates are installed automatically. To avoid disruptions during business hours, the IT team sets active hours to cover the entire operating day (6:00 AM to 11:00 PM). However, Windows still forces a restart after 7 days for quality updates. This leads to occasional reboots during peak hours. The team mitigates by scheduling a weekly maintenance window and using the 'Restart notifications' policy to warn users. They also disable peer-to-peer delivery optimization via the Settings app to reduce network congestion. A common problem is that updates fail due to low disk space on the POS terminals (which have small SSDs). The IT team runs a script weekly to clean the SoftwareDistribution folder.

Government Agency with Strict Compliance Requirements

A government agency must comply with security mandates that require patches to be applied within 30 days. They use Windows 10 Enterprise and Windows Update for Business (WUfB) with Group Policy. They set feature update deferral to 120 days and quality update deferral to 0 days. They also configure two update rings: a 'Test' ring for IT staff (immediate updates) and a 'Production' ring (deferred 7 days). Delivery Optimization is set to LAN only to keep traffic internal. A challenge is that some legacy applications break after feature updates. The IT team uses the 'Select when Preview Builds and Feature Updates are received' policy to pause feature updates for up to 365 days if needed. They also use the Update Compliance add-in in Azure to monitor update status across the fleet. Misconfiguration of the deferral policy can lead to missing critical security patches, so they audit settings quarterly.

How 220-1102 Actually Tests This

What the 220-1102 Exam Tests on This Topic

The CompTIA A+ Core 2 exam objective 1.1 (Operating Systems) includes configuring Windows Update settings. Specifically, you must know:

How to change active hours (default: 8 AM – 5 PM).

How to defer updates (feature up to 365 days, quality up to 30 days).

How to pause updates (up to 35 days for Pro/Enterprise, 7 days for Home).

The difference between Windows Update and Windows Update for Business.

How to configure WSUS via Group Policy.

Common troubleshooting steps (reset SoftwareDistribution, run DISM/SFC).

The role of Delivery Optimization.

Common Wrong Answers and Why Candidates Choose Them

1.

'Windows 10 Home can defer feature updates for 365 days.' – Wrong. Home edition cannot defer feature updates at all. Pro and Enterprise can defer up to 365 days. Candidates confuse deferral with pause.

2.

'The default active hours are 9 AM to 6 PM.' – Wrong. The default is 8 AM to 5 PM. Many assume a standard workday of 9-5, but Microsoft uses 8-5.

3.

'Use wuauclt /detectnow to force a scan on Windows 10.' – Wrong. This command is deprecated. The correct command is usoclient scan. Candidates may have learned the old command from older materials.

4.

'Delivery Optimization only uses internet peers.' – Wrong. It can be set to local network only or disabled entirely. Candidates often overlook the LAN-only option.

Specific Numbers and Terms That Appear on the Exam

Active hours: 8 AM – 5 PM (default).

Pause updates: 35 days (Pro/Enterprise), 7 days (Home).

Defer feature updates: up to 365 days.

Defer quality updates: up to 30 days.

WSUS server port: 8530 (HTTP) or 8531 (HTTPS).

SoftwareDistribution folder location: C:\Windows\SoftwareDistribution.

Catroot2 folder location: C:\Windows\System32\catroot2.

Commands: usoclient scan, usoclient download, usoclient install.

Edge Cases and Exceptions

Windows Update stuck at 0%: Often due to corrupted SoftwareDistribution folder. Reset it.

Error 0x80070020: Another process is using files needed by update. Restart the Windows Update service.

Updates fail with 0x800f0922: Insufficient disk space or system file corruption. Free space or run DISM.

Group Policy not applying: Run gpupdate /force or check if the policy is in the correct node (Computer Configuration vs User Configuration).

How to Eliminate Wrong Answers

If the question mentions 'deferring updates', check the edition. Home cannot defer.

If the question asks about forced restart timing, recall that quality updates have a 7-day grace period, not feature updates.

For command-line questions, remember that wuauclt is legacy; usoclient is current.

For WSUS, the key policy is 'Specify intranet Microsoft update service location'. Any answer that says 'Windows Update for Business' for WSUS is wrong; WUfB is cloud-based.

Key Takeaways

Default active hours: 8:00 AM – 5:00 PM.

Windows 10 Home cannot defer feature updates; only Pro/Enterprise can defer up to 365 days.

Pause updates: up to 35 days on Pro/Enterprise, 7 days on Home.

Delivery Optimization can be set to local network only or disabled entirely.

Use `usoclient scan` (not wuauclt /detectnow) to force a scan on Windows 10/11.

WSUS uses port 8530 (HTTP) or 8531 (HTTPS); configure via 'Specify intranet Microsoft update service location' policy.

Reset Windows Update by stopping services, renaming SoftwareDistribution and Catroot2 folders, then restarting services.

The SoftwareDistribution folder is located at C:\Windows\SoftwareDistribution; Catroot2 at C:\Windows\System32\catroot2.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

Windows Update (Consumer)

Configured via Settings app; no Group Policy required.

Cannot defer feature updates on Home edition.

Updates are downloaded directly from Microsoft's servers.

No centralized management; each machine is independent.

Delivery Optimization uses internet peers by default.

Windows Update for Business (WUfB)

Configured via Group Policy or MDM; requires Pro/Enterprise.

Can defer feature updates up to 365 days and quality updates up to 30 days.

Can use WSUS for local update distribution.

Centralized control over update rings and deployment schedules.

Delivery Optimization can be restricted to local network only.

WSUS (Windows Server Update Services)

Requires a Windows Server with WSUS role installed.

Updates are downloaded to the WSUS server, then clients pull from it.

Administrators approve updates before deployment.

Works on-premises; no internet connection required for clients.

Supports detailed reporting and compliance monitoring.

Windows Update for Business (WUfB)

No server infrastructure needed; uses cloud-based policies.

Clients download updates directly from Microsoft (or via Delivery Optimization).

Updates are approved by Microsoft; administrators can defer but not block.

Requires internet connectivity for clients to receive policies.

Reporting requires Azure Update Compliance or third-party tools.

Watch Out for These

Mistake

Windows 10 Home can defer feature updates for up to 365 days.

Correct

Windows 10 Home cannot defer feature updates at all. Only Pro, Education, and Enterprise editions support deferral via Group Policy or Settings. Home edition users get feature updates automatically when Microsoft releases them.

Mistake

The default active hours are 9:00 AM to 6:00 PM.

Correct

The default active hours are 8:00 AM to 5:00 PM. This is a common trick on the exam. Always remember 8-5, not 9-5.

Mistake

wuauclt /detectnow is the correct command to force a Windows Update scan on Windows 10.

Correct

wuauclt /detectnow is deprecated and may not work on Windows 10 version 1809 and later. The correct command is `usoclient scan`. Use `usoclient startscan` as an alternative.

Mistake

Delivery Optimization always uses internet peers to download updates.

Correct

Delivery Optimization can be configured to use local network peers only, internet peers, or be disabled entirely. The default setting is 'PCs on my local network and PCs on the internet', but this can be changed in Settings or via Group Policy.

Mistake

Pausing updates in Windows 10 Home lasts up to 35 days.

Correct

Windows 10 Home can pause updates for only 7 days. Pro, Education, and Enterprise editions can pause for up to 35 days. This is a key difference between editions.

Do You Actually Know This?

Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.

Frequently Asked Questions

How do I force a Windows Update scan from the command line in Windows 10?

Use `usoclient scan` in an elevated command prompt or PowerShell. This triggers the Update Orchestrator to check for updates. Alternatively, `usoclient startscan` works similarly. The legacy `wuauclt /detectnow` is deprecated and may not work on newer builds. For example, run `usoclient scan` and then check Settings > Windows Update to see the results.

Why can't I defer feature updates on my Windows 10 Home PC?

Windows 10 Home does not support the deferral feature. Deferral is only available in Pro, Education, and Enterprise editions. You can still pause updates for up to 7 days, but you cannot delay feature updates for months. To defer updates, you would need to upgrade to a higher edition or use third-party tools (not recommended).

What is the difference between pausing and deferring updates?

Pausing updates stops all updates from being downloaded or installed for a set period (7 days for Home, 35 days for Pro/Enterprise). Deferring updates allows you to delay specific types (feature or quality) for a longer period (up to 365 days for feature, 30 days for quality) without completely stopping updates. Deferral is only available on Pro/Enterprise via Settings or Group Policy.

How do I reset Windows Update components?

Open Command Prompt as administrator. Run: `net stop wuauserv`, `net stop cryptSvc`, `net stop bits`, `net stop msiserver`. Then rename the SoftwareDistribution and Catroot2 folders: `ren C:\Windows\SoftwareDistribution SoftwareDistribution.old` and `ren C:\Windows\System32\catroot2 catroot2.old`. Restart the services: `net start wuauserv`, `net start cryptSvc`, `net start bits`, `net start msiserver`. Finally, run `usoclient scan` to trigger a fresh check.

What is Delivery Optimization and how do I configure it?

Delivery Optimization is a peer-to-peer update sharing feature that allows Windows to download updates from other PCs on your local network or the internet, reducing load on Microsoft's servers. You can configure it in Settings > Windows Update > Advanced options > Delivery Optimization. Choose from 'PCs on my local network' (LAN only) or 'PCs on my local network and PCs on the internet' (default). You can also set bandwidth limits. In enterprise environments, it's often disabled via Group Policy to prevent potential data leakage.

How do I configure WSUS for Windows Update?

On the client side, use Group Policy: Computer Configuration > Administrative Templates > Windows Components > Windows Update > 'Specify intranet Microsoft update service location'. Enable the policy and enter the WSUS server URL (e.g., http://wsus-server:8530). Set the statistics server to the same URL. Clients will then scan against the WSUS server instead of Microsoft Update. On the server side, install the WSUS role on Windows Server and configure synchronization.

What are common Windows Update error codes and their meanings?

Common error codes include: 0x80070002 (missing files – clear SoftwareDistribution), 0x800f0922 (disk space or corruption – run DISM/SFC), 0x80240034 (update not applicable – check prerequisites), 0x80070020 (file in use – restart update services), 0x8024401c (connection issue – check firewall/proxy). The Windows Update Troubleshooter can often resolve these automatically.

Terms Worth Knowing

Ready to put this to the test?

You've just covered Windows Update Configuration — now see how well it sticks with free 220-1102 practice questions. Full explanations included, no account needed.

Done with this chapter?