• About Us
  • Announce
  • Privacy Policy
  • Contact us
MasterTrend Info - Technology, News and Tutorials
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Mobile
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • What's new
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Mobile
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • What's new
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
MasterTrend Info - Technology, News and Tutorials
No result
See all results
Start Windows

Windows 11 Updates: The Hidden Way Nobody Uses 😱

MasterTrend Insights by MasterTrend Insights
December 10, 2025
in Windows
Reading time:10 min read
0
Windows 11 Updates - Couple using a laptop to uninstall Windows 11 updates, with screen showing "Windows Update" and the text "Uninstall Updates", quick trick visual guide to delete Windows 11 updates.

Learn how to uninstall Windows 11 updates step by step: a quick trick to delete problematic updates and improve your PC's performance in minutes.

1.3k
SHARED
3.6k
Views
Share on FacebookShare on Twitter

Contents

  1. Windows 11 Updates: Quick Trick to Delete Them Now ⚡
  2. 1. How to uninstall updates from Settings
  3. 2. Uninstall the updates from the Control Panel
  4. 3. Uninstall Windows 11 updates using PowerShell
  5. 4. How to uninstall updates from Command Prompt
  6. 5. Uninstall updates from the Recovery Environment (Windows RE)
  7. 6. Uninstall updates by creating a batch file

Windows 11 Updates: Quick Trick to Delete Them Now ⚡

Sometimes, Windows 11 updates can cause more problems than they solve. If you recently installed an update that's causing you issues, it's essential to know how to easily uninstall it manually.

In Windows 11, you can remove most updates from Windows Update settings, using command-line tools, and other options. Here are the best ways to do so. Uninstalling an update in Windows 11.

1. How to uninstall updates from Settings

Uninstalling updates via Settings is quick and easy for any user. Follow these steps:

1. Click on the Windows 11 Start menu and select Configuration.

Settings menu in Windows 11

2. In the left panel, click on Windows Update.

In the left panel, click on Windows Update3. On the Windows Update page, select the option Update history.

Windows 11 Update History

4. Scroll to the section Related settings and click on Uninstall updates.

Related options for uninstalling updates

5. The Control Panel will open. Right-click on the latest update and select Uninstall.

Uninstall the update from the Control Panel

2. Uninstall the updates from the Control Panel

Another effective way is to use the classic Windows 11 Control Panel. Follow this simple guide:

1. Write control Panel Search for it in Windows 11 and open it.

Control Panel in Windows 11

2. Within the Control Panel, click on Uninstall a program under the Programs section.

Uninstall a program in Control Panel

3. In the Programs and Features window, click on View installed updates.

View installed updates on Windows 11

4. The list of installed updates will be displayed. Right-click on the update you want to remove and select Uninstall.

Select the Uninstall update option

3. Uninstall Windows 11 updates using PowerShell

PowerShell is a powerful tool for managing updates from the command line. Here's how to use it to uninstall updates:

1. Write PowerShell In Windows 11 search, right-click and select Run as administrator.

Open PowerShell as administrator.

2. Type the following command and press Enter:

wmic qfe list brief /format:table

List of updates installed with WMIC

3. A table will appear with all installed updates. Note the HotfixID (the number after 'KB') of the update you want to delete.

PowerShell commands for managing updates

4. Enter the following command to uninstall:

like this /uninstall /kb:HotFixID

Replaces HotFixID by the update number. For example, to uninstall update KB5014019, use:

like this /uninstall /kb:5014019

Run command to uninstall update via PowerShell

5. Press Enter to execute the operation and, when the confirmation window appears, click on Yeah.

Confirm uninstallation of update

4. How to uninstall updates from Command Prompt

The Command Prompt also allows you to manage updates with commands similar to PowerShell:

  1. Search CMD In Windows, right-click and select Run as administrator.

Run CMD as administrator

2. Enter the following command and press Enter:

wmic qfe list brief /format:table

List of updates with WMIC in CMD

3. The update history will appear. Identify the problematic update using the HotfixID and the installation date.

4. To uninstall a specific update, run the command:

like this /uninstall /kb:KBNUMBER

Run uninstallation with CMD

Important note: Change KBNUMBER by the actual KB number of the update to be uninstalled.

Follow the on-screen instructions to complete the uninstallation process.

5. Uninstall updates from the Recovery Environment (Windows RE)

If your PC doesn't start properly, you can use the Recovery Environment To remove problematic updates, here's the procedure:

1. Click on the Start menu and select Configuration.

Open Settings in Windows 11

2. Click on Windows Update on the left panel.

Click on Windows Update in the left pane.3. In the right panel, select Advanced options.

Advanced options in Windows Update

4. In Advanced Options, scroll down and select Recovery.

Recovery options in Windows 11

5. Click on Restart now next to Advanced Start.

Button Reboot now to enter recovery mode

6. The PC will restart in recovery mode. Go to Troubleshooting > Advanced options and select Uninstall updates.

Troubleshoot menu > Advanced options in Windows RE

7. Desinstala la última actualización de calidad o función de Windows 11 para que tu PC pueda arrancar normalmente.

6. Uninstall updates by creating a batch file

Another advanced alternative is to prepare a batch script containing commands to uninstall the desired updates. Then, simply run it when you want to remove the updates.

1. Search Notepad search for it in Windows and open it.

Open Notepad

2. Write the following text in Notepad:

@echo off

wusa /uninstall /kb:2565063 /quiet /norestart

wusa /uninstall /kb:5028851 /quiet /norestart

END

Example code for uninstallation in batch script

Important note: Replace the numbers '2565063' and '5028851' with the KB numbers of the updates you want to delete. You can add more lines with the command wusa /uninstall /kb:XXXXXXX /quiet /norestart between @echo off and END.

3. Click on File > Save As.

Save batch file

4. In the save dialog box, place .one as a file extension, for example, uninstall_updates.bat.

.bat extension for batch file

5. To uninstall the updates, simply double-click the created batch file and let Windows run the commands automatically.

Batch file to uninstall updates

These are some of the most effective ways to manually uninstall updates in Windows 11. You can also consider setting up an automatic restore point to revert your PC to a previous state without the new updates. 🚀💻

Share this:
1FacebookLinkedInPinterestXRedditTumblrBlueskyThreadsShareChatGPTClaudeGoogle AIGrok
1
SHARE
Tags: EvergreenContentWindows11WindowsTips
Previous Publication

Total Autonomy: A Quick Guide to a Tireless Laptop 🔋

next post

tio, the hidden trick to mastering microcontrollers 🔥

MasterTrend Insights

MasterTrend Insights

Our editorial team shares a deep-dive analysis, tutorials and recommendations for getting the most out of your devices and digital tools.

RelatedPublications

Privacy in Windows 11 - Woman using a laptop at home configuring privacy options in Windows 11 with O&O ShutUp10++, showing security settings and data control on screen.
Windows

Privacy in Windows 11 with O&O ShutUp10++

June 21, 2026
59
Optional Windows 11 Features - Woman working on a Windows 11 laptop activating optional features in system settings; guide on when to enable or disable optional Windows 11 features in a modern office environment
Windows

Optional features in Windows 11: when to turn them on or off

June 21, 2026
65
Carpeta inetpub Windows: usuario revisando error en PowerShell tras eliminar carpeta del sistema, explicando por qué no debes borrar inetpub si usas IIS o servidor web en Windows.
Windows

inetpub folder in Windows: why you shouldn't delete it

May 2, 2026
140
Windows 11 local account; Woman using Windows 11 laptop showing locked “Sign-in” screen, illustrating how to create a local account in Windows 11 and avoid signing in with Microsoft.
Windows

Windows 11 Local Account: How to Avoid Microsoft

May 1, 2026
314
Windows 11 God Mode: Woman holding laptop with "God Mode" folder and advanced system options for configuration, administrative tools and PC optimization.
Windows

Windows 11 God Mode: What it is and when it adds value

March 19, 2026
179
PowerToys key features - User working on a laptop with Windows 11 and PowerToys, showing key productivity and security features that should be native to Windows.
Windows

PowerToys Key Features That Should Be Native in Windows

February 6, 2026
130
next post
Uncle - Two students programming on a computer with the word "uncle" on the screen, learning the hidden trick to master microcontrollers and improve electronics projects.

tio, the hidden trick to mastering microcontrollers 🔥

5 1 vote
Article Rating
Subscribe
Access
Notify of
guest
guest
0 Comments
Oldest
Newest Most voted
Online Comments
See all comments

Stay Connected

  • 976 Fans
  • 118 Followers
  • 1.4 k Followers
  • 1.8 k Subscribers
  • Trends
  • Comments
  • Last
🖥️ How to open 'Devices and printers' in Windows 11: 4 simple steps

🌟 How to open ‘Devices and printers’ in Windows 11: ¡Amazing trick!

June 21, 2026
Windows 11 Persistent Clock: Options for displaying a persistent clock, limitations and practical decisions, with blue background, Windows icon and minimalist analog clock.

Windows 11 Persistent Clock: Options, Limits, and Real Decisions

June 21, 2026
Ethernet not working in Windows 11: 9 easy tricks

Ethernet not working in Windows 11: 3-minute solution ⚡🌐

13 November 2025
How to save game in REPO

How to save game in REPO 🔥 Discover the secret to not losing progress

7 July 2025
Features of Gmail on Android: Save time with 5 tips

Features of Gmail in Android: you 5 tricks you did not know! 📱✨

12
Notebook motherboard repair: internal view with motherboard, cooling system, fans and key components to check in an open laptop

Notebook Motherboard Repair – Step-by-Step Diagnosis

10
Install Windows 11 Home without Internet

Install Windows 11 Home without Internet

10
How to backup drivers in Windows 11/10 in 4 steps!

How to backup drivers in Windows 11/10 It Prevents errors! 🚨💾

10
Privacy in Windows 11 - Woman using a laptop at home configuring privacy options in Windows 11 with O&O ShutUp10++, showing security settings and data control on screen.

Privacy in Windows 11 with O&O ShutUp10++

June 21, 2026
Optional Windows 11 Features - Woman working on a Windows 11 laptop activating optional features in system settings; guide on when to enable or disable optional Windows 11 features in a modern office environment

Optional features in Windows 11: when to turn them on or off

June 21, 2026
Saros Endings: A. Devraj in futuristic Soltari armor in a dark and dramatic scene, analysis of the main ending and secret ending of the video game.

Saros Endings: Analysis of the Main and Secret

June 14, 2026
AMD UDNA architecture for PS6 and Xbox Next, detail of next-generation GPU chip with advanced design for high-performance gaming consoles.

UDNA architecture in PS6 and Xbox Next: more than just numbers

May 4, 2026

Recent News

Privacy in Windows 11 - Woman using a laptop at home configuring privacy options in Windows 11 with O&O ShutUp10++, showing security settings and data control on screen.

Privacy in Windows 11 with O&O ShutUp10++

June 21, 2026
59
Optional Windows 11 Features - Woman working on a Windows 11 laptop activating optional features in system settings; guide on when to enable or disable optional Windows 11 features in a modern office environment

Optional features in Windows 11: when to turn them on or off

June 21, 2026
65
Saros Endings: A. Devraj in futuristic Soltari armor in a dark and dramatic scene, analysis of the main ending and secret ending of the video game.

Saros Endings: Analysis of the Main and Secret

June 14, 2026
97
AMD UDNA architecture for PS6 and Xbox Next, detail of next-generation GPU chip with advanced design for high-performance gaming consoles.

UDNA architecture in PS6 and Xbox Next: more than just numbers

May 4, 2026
136
MasterTrend Info logo

MasterTrend Info is your source of reference in technology: discover news, tutorials, and analysis of hardware, software, gaming, mobile, and artificial intelligence. Subscribe to our newsletter and don't miss any trend.

Follow us

Browse by Category

  • Gaming
  • Hardware
  • IA
  • Mobile
  • What's new
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

Recent News

Privacy in Windows 11 - Woman using a laptop at home configuring privacy options in Windows 11 with O&O ShutUp10++, showing security settings and data control on screen.

Privacy in Windows 11 with O&O ShutUp10++

June 21, 2026
Optional Windows 11 Features - Woman working on a Windows 11 laptop activating optional features in system settings; guide on when to enable or disable optional Windows 11 features in a modern office environment

Optional features in Windows 11: when to turn them on or off

June 21, 2026
  • About Us
  • Announce
  • Privacy Policy
  • Contact us

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

We've detected you might be speaking a different language. Do you want to change to:
es_ES Spanish
es_ES Spanish
en_US English
pt_BR Portuguese
fr_FR French
it_IT Italian
ru_RU Russian
de_DE German
zh_CN Chinese
ko_KR Korean
ja Japanese
th Thai
hi_IN Hindi
ar Arabic
tr_TR Turkish
pl_PL Polish
id_ID Indonesian
nl_NL Dutch
sv_SE Swedish
Change Language
Close and do not switch language
No result
See all results
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • pl_PLPolish
    • id_IDIndonesian
    • tr_TRTurkish
    • hi_INHindi
    • thThai
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
  • Gaming
  • Hardware
  • IA
  • Mobile
  • What's new
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

wpDiscuz
RedditBlueskyXMastodonHacker News
Share this:
MastodonVKWhatsAppTelegramSMSLineMessengerFlipboardHacker NewsMixNextdoorPerplexityXingYummly
Your Mastodon Instance