Windows Update screen with green checkmark stating “You're up to date,” showing option to install updates manually.

How to Check for and Install Windows Updates Manually in Windows 11

Keeping your Windows 11 system updated is essential for security, performance, and access to new features. While automatic updates are convenient, there are times when manual updates are necessary—especially when troubleshooting, managing bandwidth, or installing specific patches.

In this comprehensive guide, we’ll explore how to manually check for and install Windows updates in Windows 11, covering multiple methods, troubleshooting tips, and expert recommendations.

Why Manual Updates Matter

Although Windows 11 is designed to update automatically, manual updates offer several advantages:

  • 🛡️ Security: Apply critical patches immediately.

  • 🧰 Troubleshooting: Resolve issues when automatic updates fail.

  • 🧩 Customization: Choose which updates to install.

  • 🕒 Control: Schedule updates at your convenience.

Method 1: Using Windows Settings

This is the most user-friendly way to manually check for updates.

✅ Steps:

  1. Press Windows + I to open Settings.

  2. Navigate to Windows Update in the left sidebar.

  3. Click Check for updates.

  4. If updates are available, click Download and install.

  5. Restart your PC if prompted.

Method 2: Microsoft Update Catalog

Ideal for downloading specific updates or when automatic updates fail.

 Steps:

  1. Visit the .

  2. Search for the update using its KB number (e.g., KB5030211).

  3. Download the .msu file for your system architecture (x64 or ARM64).

  4. Double-click the file to launch the Windows Update Standalone Installer.

  5. Follow the prompts and restart your PC.

Method 3: Command Prompt

Useful for scripting or when the GUI isn’t working.

 Steps:

  1. Open Command Prompt as Administrator.

  2. Run the following command:

wusa C:\path\to\update.msu /quiet /norestart

    3.Replace the path with the actual location of your .msu file.

    4.Restart your PC manually if needed.

Method 4: PowerShell for Advanced Users

PowerShell provides more control and automation options.

Steps:

  1. Open PowerShell as Administrator.

  2. Install the update module:

Install-Module PSWindowsUpdate
 

    3.Allow script execution:

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

    4.Import the module:

Import-Module PSWindowsUpdate
 
    5.Check for updates:
 
Get-WindowsUpdate
 
    6.Install a specific update:
 
Install-WindowsUpdate -KBArticleID KB5030211
 

Method 5: Fixing Failed Updates

If an update fails, you can manually resolve it.

🧼 Steps:

  1. Go to Settings > Windows Update > Update history.

  2. Note the KB number of the failed update.

  3. Search for it in the .

  4. Download and install it manually.

  5. Run system repair tools:

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

Run above commands in powershell

Method 6: Triggering Feature Updates

Sometimes Windows doesn’t offer the latest version automatically. You can trigger it manually.

 Steps:

  1. Go to Settings > Windows Update.

  2. Click Check for updates.

  3. If a feature update is available, click Download and install.

  4. Restart your PC.

Optional Updates

Windows 11 also offers optional updates like drivers and feature upgrades.

 How to Access:

  1. Go to Settings > Windows Update > Advanced options.

  2. Click Optional updates.

  3. Select and install desired updates.

Pro Tips for Managing Updates

  • Set Active Hours: Prevent restarts during work.

  • Use Group Policy: Control update behavior (Pro editions).

  • Clean Up Old Updates: Use Disk Cleanup or Storage Sense.

  • Create Restore Points: Before installing major updates.

Summary

Manually updating Windows 11 gives you control, flexibility, and peace of mind. Whether you’re using Settings, the Update Catalog, Command Prompt, or PowerShell, each method has its strengths. By mastering these techniques, you’ll ensure your system stays secure, stable, and up to date.