Trending December 2023 # Uninstall Office Update Using Command Line In Windows 11/10 # Suggested January 2024 # Top 16 Popular

You are reading the article Uninstall Office Update Using Command Line In Windows 11/10 updated in December 2023 on the website Kientrucdochoi.com. We hope that the information we have shared is helpful to you. If you find the content interesting and meaningful, please share it with your friends and continue to follow and support us for the latest updates. Suggested January 2024 Uninstall Office Update Using Command Line In Windows 11/10

Windows users can uninstall an Office update via the Programs and Features applet in Control Panel. But for one reason or another, you may not be able to use this applet for the task. In this post, we outline the specifics of why this is the case, and then show you how to uninstall Office Updates using the command line in Windows 11/10 in such cases.

Uninstall Office update using the command line in Windows 11/10

If a particular update breaks functionality in Microsoft Office installed on your Windows 11/10 computer, you can open the Control Panel and uninstall the Office update via the Programs and Features applet. However, there are requirements to remove Office updates, and you need to determine whether an Office update can be removed using the Control Panel. That said, the following are some examples of Office Updates that can’t be removed:

Service packs

Office Server product updates

Some updates to Office shared components.

Although not recommended or supported by Microsoft, you can uninstall Office updates that are marked as ‘Uninstallable’ by creating the Uninstallable registry key with the dword:00000001 value at the following location:

HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18ProductsOffice GUIDPatchesCompressed GUID

Read: How to uninstall Windows Updates marked as Permanent without Uninstall option

To use the Control Panel to remove Office updates, the computer running Microsoft Office must meet the following prerequisites:

Microsoft Windows Installer version 3.1 or later must be installed before you install the removable Office update.

The computer must be running newer versions of the Windows OS.

To determine whether you can remove an Office update via the Programs and Features applet, follow these steps:

Press the Windows key + R key to invoke the Run dialog.

In the Run dialog box, type chúng tôi and hit Enter.

Locate and select the update in the list.

Read: How to uninstall Programs not listed in Control Panel

If you can’t uninstall an Office update using the wizard, then you can do so via the Windows Installer command line. For example, to remove an update, run the command below:

msiexec /package {product_code} /uninstall "full_path_to_.msp_file" /qb

Where:

The product_code placeholder represents the product code GUID that is associated with the Office product that you installed an update on.

The full_path_to_.msp_file placeholder represents the full path of the update package (.msp file).

If you use the /qb switch, you’re prompted if an update isn’t removable with the message below.

Uninstallation of the patch package is not supported.

If you use the /passive switch, you aren’t prompted if an update isn’t removable.

Alternatively, the command below can be used to uninstall Office updates.

%windir%System32msiexec.exe /package {Office GUID} /uninstall {Update GUID} /QN

For the command syntax, you must determine the GUID of the installed Office version and the GUID of the update as detailed in this Microsoft documentation.

How to revert to a previous build number of Microsoft 365

In this case, you cannot uninstall or remove the Office update for these versions of Office installation. However, you can revert to a previous build number (from before the update) of Microsoft 365. To do this, follow these steps:

First, disable Office Updates as the Microsoft 365 installations are automatically updated in the background.

Next, open Command Prompt in admin mode.

Next, depending on your Office version, run the command below that applies:

Office 2023, Office 2023, Office 2023, and Microsoft 365

Office 2013 on Windows 32-bit

cd %programfiles%Microsoft Office 15ClientX86

Office 2013 on Windows 64-bit

cd %programfiles%Microsoft Office 15ClientX64

officec2rclient.exe /update user updatetoversion=BuildNumber

Once the command executes, the Checking for updates dialog will open shortly followed by the Downloading Office updates dialog. Once this dialog closes, the rollback has been completed and the Updates were installed dialog will now be displayed.

Now that you’ve disabled automatic Office updates, to not miss out on newly released security updates and other feature fixes or even new features, make sure to re-enable the updates at the earliest opportunity.

I hope you find this post informative.

Read: An error has occurred, Not all of the updates were successfully uninstalled

What is WUSA in CMD?

WUSA.exe is a native utility that is used to install standalone updates on Windows computers. Standalone updates are the kind of updates that are not available in Windows Update by default. It also can be used to install some problematic updates. To run this utility on your Windows 11/10 PC, simply open the command prompt, then type chúng tôi followed by the syntax for the action you want to perform, and hit Enter.

How do I uninstall Office updates on Windows 11?

You're reading Uninstall Office Update Using Command Line In Windows 11/10

Using Ftp Via Command Line (Cmd) On Windows 11

FTP, short for File Transfer Protocol, is a standard network protocol that allows users to transfer files from one host to another over a network, such as the internet. Despite the emergence of new cloud-based technologies and file sharing platforms, FTP remains a fundamental protocol in networking and is particularly useful in professional settings where large files need to be shared or when tasks need to be automated. In this article, we’ll explore in-depth how to use the FTP command lines on Windows 11 Command Prompt, offering a step-by-step guide on different commands and their uses.

Also see: How to Download an FTP File Using CMD in Windows 11/10

FTP is a time-tested protocol used for transferring files between a client and a server on a computer network. The client initiates a request, and the server then responds with the requested file or action. FTP works on a client-server model where the client can perform actions like downloading, uploading, renaming, and deleting files on the server.

Before starting, make sure you have the following:

An operational FTP server: This is the remote computer where your files will be uploaded or downloaded. It should be running an FTP server software.

The IP address or domain name of the FTP server: You’ll need this information to establish the connection to the server.

FTP credentials: These are your username and password used to authenticate your access to the FTP server.

Expert guide: How to Download All Files From a Website Directory Using Wget

While various third-party FTP clients exist, Windows 11, like its predecessors, has a built-in FTP client that can be accessed directly via the command line. To open it:

With the command prompt open, you’re all set to start using FTP commands.

Related resource: Downloading HTML from a Website

Here are the FTP commands you’ll use most often when interacting with an FTP server:

To connect to an FTP server, use the ftp command followed by the domain name or IP address of the server.

For example, ftp chúng tôi or ftp 192.0.2.0.

After a successful connection, the FTP server will prompt you to enter your username and password.

For instance, if your username is “john”, you would type user john and then enter your password when prompted.

To navigate to a different directory on the FTP server, use the cd command.

For example, cd documents would move you to the “documents” directory.

To list all the files and directories in the current directory, use the dir command.

To download or retrieve a file from the FTP server, use the get command followed by the filename.

For instance, get chúng tôi would download the file named “report.pdf”.

To upload or send a file to the FTP server, use the put command followed by the filename.

For example, put chúng tôi would upload the file “report.pdf” to the server.

You can rename a file on the server using the rename command, followed by the old filename and the new filename.

For example, rename chúng tôi newfile.txt.

To delete a file from the server, use the delete command followed by the filename.

For example, delete chúng tôi will remove the file named “unwantedfile.txt”.

To create a new directory on the server, use the mkdir command.

For example, mkdir newfolder will create a directory named ‘newfolder’.

To remove a directory from the server, use the rmdir command.

For example, rmdir oldfolder will delete the “oldfolder” directory.

When you’re finished with your FTP session, you can close the connection using the close command.

To exit or quit the FTP client altogether, use the quit command.

For better understanding, let’s walk through a simulated FTP session using the commands we just discussed:

220 FTP Server ready. 331 Please specify the password. 230 Login successful. 250 Directory successfully changed. 200 PORT command successful. Consider using PASV. 150 Here comes the directory listing. -rw-r--r-- 1 0 0 0 May 25 08:59 report.pdf 226 Directory send OK. 200 PORT command successful. Consider using PASV. 150 Opening BINARY mode data connection for chúng tôi (0 bytes). 226 Transfer complete. ftp: 0 bytes received in 0.00Seconds 0.00Kbytes/sec. 221 Goodbye.

In certain circumstances, FTP servers allow anonymous logins. Such servers are set up to allow users to log in with the username “anonymous” and typically use the user’s email address as the password. Anonymous FTP is usually read-only and is used for distributing files to the public. While this can make it easier for the general public to access files, it can also create potential security issues.

While FTP is an incredibly handy tool, its primary shortcoming is the lack of security. FTP does not encrypt data transmitted over the network, making it vulnerable to eavesdropping and data tampering. SFTP (Secure File Transfer Protocol), on the other hand, provides the same functionality as FTP but with added security. SFTP encrypts the data transferred over the network, protecting it from unauthorized access and manipulation.

FTP’s biggest risk lies in its lack of encryption. Any data transferred via FTP, including login credentials, is sent in plain text. This lack of security means any data sent via FTP can be intercepted and read by anyone who can access the network data, leading to data theft or corruption.

FTPS (FTP Secure) and SFTP (SSH File Transfer Protocol) were developed to address these security issues. Both protocols add an encryption layer to the data transfer process, thereby significantly improving the security of file transfers.

FTP, despite being one of the oldest protocols for transferring files over a network, remains an integral part of today’s IT world. Windows 11 continues to provide built-in support for this protocol via the command line interface, making FTP a handy tool for anyone who needs to deal with file transfers regularly. This guide gives you a comprehensive understanding of the FTP commands, their functionalities, and how to use them on Windows Command Prompt.

Remember, while FTP can be a powerful tool, it’s essential to be aware of its security limitations and take appropriate precautions to protect sensitive data.

How To Uninstall An Update On Windows 11

You can also uninstall an update using Command Prompt, PowerShell, WinRE, and Safe Mode.

UPDATED 6/13/2023: On Windows 11, you can uninstall any update through the Windows Update settings, using commands with Command Prompt or PowerShell, or booting into the Advanced options recovery environment or Safe Mode if the rollout is causing problems that prevent the computer from starting correctly.

Although Microsoft releases quality updates to fix problems and improve the experience of Windows 11, sometimes, they cause more issues than they solve. For example, it’s not rare to see a monthly update with bugs breaking features, drivers, compatibility, and other problems that can negatively affect the user experience.

However, whether the device was recently updated automatically or you installed an update manually, you have multiple ways to remove it and roll the system back to the previously known good working state.

In this guide, you will learn the steps to uninstall updates from Windows 11 in six different ways to bring the system back to a good working state.

Starting on version 22H2, Windows 11 brings the uninstall updates settings to the Settings app, removing the legacy settings from the Control panel.

To uninstall updates on Windows 11 22H2, use these steps:

After you complete the steps, the problematic update will be removed from the device.

In the original release of Windows 11, the option to remove an update is available through the Control Panel.

To uninstall a Windows 11 update, use these steps:

Open Settings on Windows 11.

Select the Windows 11 update to remove – for example, KB5027231.

Restart the computer.

To uninstall a quality update with Command Prompt, use these steps:

Open Start.

Type the following command to view the update history and press Enter:

wmic qfe list brief /format:table

Check the Windows Update history of your device, and identify the update by its HotFixID and InstalledOn information.

Type the following command to uninstall the update from your computer and press Enter:

wusa /uninstall /kb:KBNUMBER

In the command, replace KBNUMBER with the KB number corresponding to the update you are trying to uninstall.

This example removes the update KB5027231 from Windows 11:

wusa /uninstall /kb:5027231

Continue with the on-screen directions (if applicable).

After you complete the steps, the update will be removed from the computer running Windows 11.

To remove an update on Windows 11 with PowerShell commands, use these steps:

Open Start.

Type the following command to install the PowerShell module to update Windows 11 and press Enter:

Install-Module PSWindowsUpdate

Type Y and then A to accept and install the module, and press Enter.

Type the following command to view a list of the 20 most recent updates and press Enter:

Quick note: If the command doesn’t work, you may need to change the PowerShell execution policy. You can try this command: Set-ExecutionPolicy RemoteSigned. After changing the execution policy, you should be able to run the commands. After completing the steps, you can make the policy restricted again with the Set-ExecutionPolicy Restricted command.

Type the following command to select and remove the update with PowerShell and press Enter:

Remove-WindowsUpdate -KBArticleID KBNUMBER

In the command, replace KB NUMBER with the update number you want to block. This example blocks the KB5027231 update:

Remove-WindowsUpdate -KBArticleID KB5027231

Type A to accept and install the module and press Enter.

Once you complete the steps, the device may need to restart to complete the process.

If the above instructions do not work, the Command Prompt instructions should also work with PowerShell.

To uninstall an update using the Windows 11 Advanced options, use these steps:

Start the device in Advanced startup.

Quick tip: Depending on the severity of the problem, you can access the Advanced startup options in a few ways. You can use this guide to learn

Depending on the severity of the problem, you can access the Advanced startup options in a few ways. You can use this guide to learn all the methods to access Advanced startup and then continue with the steps below.

Sign in using your administrator credentials.

After you complete the steps, the computer will uninstall the most recent update, like KB5027231, from your device (if available).

To uninstall updates on Windows 11 from Safe Mode, use these steps:

Open Start.

Under the “Boot options” section, check the Safe boot option.

Choose the Minimal option to start Windows 11 in Safe Mode. Or you can select the Network option to boot Windows 11 with networking support.

Restart the computer.

Sign in to your account.

Use the “Windows key + R” keyboard shortcut to open the Run command.

Select the update to remove – for example, KB5027231.

Restart the computer.

The only caveat with this option is that Windows 11 will continue to boot into Safe Mode until you revert the changes.

After resolving the problem with the device, you can revert the changes using the same instructions, but in step 4, make sure to clear the Safe boot option. Also, many techniques exist to access the “Advanced Startup Options” recovery environment. You can refer to this guide to learn the different methods.

In addition to using Control Panel, while in Safe Mode, you can also use Command Prompt and PowerShell commands to remove updates from Windows 11.

How To Uninstall Onedrive App In Windows 10

Starting with Windows 8, every Windows system comes pre-installed with OneDrive app, a free cloud storage service from Microsoft. The story is nothing different in Window 10. If you are already using another cloud service like Google Drive or Dropbox, then chances are that you’ve already installed a relevant app to sync your files and folders with the cloud, and you may want to uninstall OneDrive from your Windows 10 system.

Uninstall OneDrive from Windows 10

Since there is no easy way to uninstall OneDrive from Window 10, we are going to use the Command Prompt to uninstall it. Before we do that, we need to close the OneDrive application.

Once the command prompt has been opened, enter the following command depending on your system architecture.

If you are using a 32-bit system, then use the command below.

%

systemroot

%

System32OneDriveSetup.exe

/

uninstall

If you are using a 64-bit system, then use the command below.

As soon as you execute the command, Windows will uninstall the OneDrive app for good. The Command Prompt won’t output any confirmation message, though.

In fact, if you open Windows Explorer, you can no longer find OneDrive in it. You can also try searching for it in the Start Menu.

Now you can also safely delete all the OneDrive folders in different locations if you don’t want to have any remnants. To do that, open Windows Explorer, select the “View” tab and then select the “Hidden Items” checkbox.

Once the hidden folders are revealed, open the “ProgramData” folder and delete the “Microsoft OneDrive” folder.

Now, head over to your User Profile folder and delete the “OneDrive” folder. In case you are wondering, the location will be something like “C:UsersyourUserName.”

In the same folder, open the “App Data” folder and navigate to “Local” and then to “Microsoft” folder. Delete the “OneDrive” folder. If you face any problems deleting the folder, then just restart your system and try again.

You’ve successfully removed the OneDrive remnants from Windows 10.

In the future, if you want to use OneDrive again, then you can easily reinstall it by executing the below command in the Command Prompt.

For 32-bit systems:

%

systemroot

%

System32OneDriveSetup.exe

For 64-bit systems:

As soon you execute the command, Windows installs OneDrive and you can configure it right away.

Vamsi Krishna

Vamsi is a tech and WordPress geek who enjoys writing how-to guides and messing with his computer and software in general. When not writing for MTE, he writes for he shares tips, tricks, and lifehacks on his own blog Stugon.

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Sign up for all newsletters.

By signing up, you agree to our Privacy Policy and European users agree to the data transfer policy. We will not share your data and you can unsubscribe at any time.

How To Use Nano Command Line Text Editor In Linux

Nano is a simple yet powerful command line-based text editor, very popular among beginner Linux users for its simple-to-use interface. As a command-line editor, it offers a lightweight alternative to more complex graphical text editors. In this article, we will explain how you can use the nano text editor in Linux, right from installing it to editing documents with it.

How to Install Nano in Linux

Generally, the nano editor comes preinstalled on most Linux distros. If you are not sure, you can check using the following command:

nano --version

After executing the command, if you see the nano version number in the Linux Terminal, this means it is installed, and you can proceed to the next section wherein we’ve described how to use the nano editor in Linux. If you get an error like “nano: command not found,” then use the commands below to install nano depending on your distro:

For Debian-based distros:

Install on Cent OS/RHEL-based distro:

sudo yum install -y nano

For Arch-based distros:

sudo pacman -S nano

For Fedora-based distros:

sudo dnf install nano

Nano Command: Syntax and Options

Using the nano command line editor in Linux is pretty straightforward. The basic syntax to use nano text editor is:

OptionsDescription-BTo save a file and back up the previous version of it by appending a tilde (~) to the current filename.-ETo convert the typed tabs into spaces.-LTo stop adding a new line after the original text.-NDisables automatic conversion of files from Mac/DOS format to Unix format-QTo match a part of the text using regular expressions-lDisplays the line number to the left of the text area-uTo save the file in Unix format by default.

How to Open/ Create a New File with Nano

To open a file with the nano command in Linux, use this syntax:

For example, to open the file “test.txt”, use the following command:

nano test.txt

For example, to create a new file with the name “test.py”, use this command:

nano test1.txt

When the nano command is executed, it first looks for the given file name in the mentioned directory. If the file is found, it opens the file, else creates a new file with the given file name.

How to Edit a File with the Nano Editor Cut Selected Text

To select the text, head over to the beginning of the word which you want to select and press “ALT + A.” Use the arrow keys to select the text as you need.

Once you have selected the desired text, press “CTRL + K” on the keyboard to cut the selected portion of the text.

Copy Selected Text

First, select the text using “ALT + A” and the arrow keys.

Once selected, use “ALT + 6” to copy the selected text to the clipboard.

Paste Selected Text

First, navigate to the place where you want to paste the selected text using the arrow keys.

Now, press “CTRL + U” on the keyboard to paste the text from the clipboard.

Search and Replace Text in Nano

Sometimes you need to search for some specific text inside a huge document and scrolling through it is not a viable option. Fortunately, the nano command comes with a search-and-replace utility, which can work on documents formatted with Linux, Windows, macOS, etc.

To search for a specific text, press “CTRL + W,” type the text you want to search in the new search bar at the bottom of the screen and hit the Enter key. If found, the cursor will get placed at the beginning of the searched word. To move on to the next occurrence of the searched term, use “ALT + W.”

To search and replace a specific text, press “CTRL + ” on the keyboard. Enter the search term and press enter. Then, enter the term you want to replace it with on the next prompt. The cursor will move to the first position it found the search term.

You can press either ‘y’ to replace this text or ‘n’ to skip the current match and move on to the next one.

The default nano command keybindings are different from the common keybindings, which the users may be accustomed to while working on other Linux GUI apps. To make things easier for beginners, the Nano text editor has a small cheat sheet right at the bottom of the screen (more on it later).

How to Save Files and Exit Nano Editor

How to exit Vim is a question that has been wreaking havoc in the lives of Linux users since its inception, as you don’t get any prompt even for basic tasks such as saving or exiting the editor. However, the nano command provides a small prompt to help users get around.

To save and exit the nano command screen and return back to the Linux shell prompt, simply press “CTRL + X” on your keyboard. If you have made any changes to the file, press ‘y’ to save the changes or press ‘n’ to discard them. You will then be asked if you want to keep the same file name or use a new name. Enter the new file name or press Enter to use the same file name.

To simply save and continue editing the document in Nano editor, press “CTRL + O” on the keyboard. Press the Enter key to use the same file name or enter the new name and then hit enter.

Nano Command in Linux: Keyboard Shortcuts

Here are some of the common shortcuts to use with the nano command that works on all operating systems, including Linux, Windows, macOS, etc:

Keyboard ShortcutDescriptionCTRL + AMoves the cursor at the beginning of the lineCTRL + EMoves the cursor at the end of the lineCTRL + YScrolls the screen up by a pageCTRL + VScrolls the screen down by a pageCTRL + GOpens nano command help windowCTRL + OSaves the current fileCTRL + WSearches for a specific text in the entire documentCTRL + KCuts the entire selected portion of text to the clipboardCTRL + UPastes the text portion from the clipboard into the documentALT + 6Copies the selected text to the clipboardCTRL + XExits the editorCTRL + _Lets you go to the specified line and column chúng tôi + AUsed to select textCTRL + GOpen help menu for nano

Frequently Asked Questions

Why do we use nano in Linux?

The nano editor is a simple easy-to-use command-line text editor, which can be handy for editing text documents on Linux distros.

Is nano easy to use?

Compared to Vim, the nano command line editor in Linux has a much easier learning curve and is easy for beginners to use in their daily workflow.

Fix: Can’t Update Spyware Protection On Windows 10/11/7

FIX: Can’t update spyware protection on Windows 10/11/7

640

Share

X

X

INSTALL BY CLICKING THE DOWNLOAD FILE

Try Outbyte Driver Updater to resolve driver issues entirely:

This software will simplify the process by both searching and updating your drivers to prevent various malfunctions and enhance your PC stability. Check all your drivers now in 3 easy steps:

Download Outbyte Driver Updater.

Launch it on your PC to find all the problematic drivers.

OutByte Driver Updater has been downloaded by

0

readers this month.

In order to address this, we provided the list of the most viable solutions. If you’re not seeing any definition updates for Windows Defender, move gradually through the list.

1. Check for updates

All chances are that you already tried this. As you already know, the Defender’s updates for virus and spyware protection come via Windows Update. However, as we already saw so many times before, these updates tend to misbehave. In order to surpass the automatic distribution (which is obviously failing in this case), you can navigate to Windows Defender Security Center and check for updates by hand.

Follow these steps to update Windows Defender via Security Center:

Open Windows Defender Security Center from the Notification area.

Choose Virus & threat protection.

Open Virus & threat protection updates.

If the error is persistent, follow the additional steps we provided below.

2. Make sure there’s no a third-party antivirus installed

Now, you already know that there’s no place for two antimalware solutions on Windows 10. Or any Windows iteration, for that matter. If you decide to place your trust in a third-party antivirus, Windows Defender will be disabled automatically. Now, if you, in the meantime, decide to use Windows Defender instead, it’s really important to delete all traces of the third-party antivirus which preceded it.

READ ALSO: Best Antivirus software to use in 2023 for your Windows 10 PC

So, a thorough clean up is necessary in order for Windows Defender to work without any issues. You can navigate around and clean the associated files on your own, or use a third-party tool which will do it for you. There’s a huge list of available Uninstallers and Cleaners, so we recommend checking our list of the best available tools.

These tools will clear all remaining files and, after a restart, Windows Defender should work fine. However, if that’s not the case, there are a few more things you can do.

3. Restart services

Restarting the dedicated service for Security Center might help, as well. If Windows Defender is active, this service should automatically start with the system. However, due to a minor bug, certain system services tend to stop. Also, by restarting the service at hand, you’ll restart the system application, and this just might get Windows Defender going.

Here’s where to find the service and how to restart it:

Type services in the Windows Search bar, and open Services from the list of results.

Navigate to “Security Center” service and make sure it’s running.

4. Run SFC

When the built-in system resources start failing, the troubleshooting steps we commonly use on third-party applications are out of the reach. What we can do instead is employing the built-in tools. One commonly-used tool for addressing system errors is System File Checker also known as SFC. This tool runs through a command line and it verifies the integrity of system files.

Here’s how to run SFC in Windows 10:

In the command-line, type sfc/scannow and press Enter.

Wait until the procedure ends and restart your PC.

Try updating Windows Defender’s virus and spyware definition again.

5. Use CMD to enforce the updates

Expert tip:

Follow these steps to enforce Windows Defender updates with Command Prompt:

In the command-line, copy-paste the following lines and press Enter:

MpCmdRun.exe -SignatureUpdate

After that, press Enter again to update signatures and restart your PC.

6. Check Group Policy

As we already said, when you install a third-party antivirus, Windows Defender automatically disables. The system will see to it. However, if you’ve changed your mind, getting back to Windows Defender can, for some users, be quite a chore. Namely, in order to re-establish Windows Defender, you’ll need to confirm that the feature is enabled in the Group Policy Editor.

Here’s what you’ll need to do:

Type group policy in Windows Search, and open “Edit group policy“.

Navigate to: Computer Configuration/Administrative Templates/Windows Components/Windows Defender Antivirus.

Make sure the “Turn off Windows Defender Antivirus” is disabled or not configured.

If you can’t access the GPE, there’s still a way to re-enable Windows Defender. You can navigate to Registry Editor and make some needed changes. However, please do be careful, as these are the risky grounds and a misuse can lead to critical system damage.

Follow these steps to tweak Defender-related Registry settings:

Navigate to: HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindows Defender.

Change its value to 0 (zero) and exit Registry Editor.

7. Download updates manually

If the issue is persistent and Windows just won’t comply, you can try to update the virus and spyware database manually. Namely, all latest definitions are stored online, on a dedicated website. You can navigate there and download fitting definition updates, depending on your OS version (Windows 10 or Windows 8/8.1) and the system architecture.

Follow these steps to install updates for Windows Defender manually:

Navigate to the official site with definition updates, here.

Scroll down and download the proper version suiting your system’s version and architecture.

Install it like any other application and restart your PC.

8. Reset PC to factory values

Finally, if you’re still unable to resolve the issue at hand after all previous steps, we suggest restoring Windows to its default values. This is much better than the reinstallation, as you get to keep your files. This is more of a refresh for the system and it’s a viable last resort if system features are giving you a hard time.

Follow these steps to reset your PC to factory settings:

Press Windows key + I to open

Settings.

Choose

Update & Security.

Select

Recovery.

Choose to

keep the files and continue with the resetting procedure.

That’s it. We hope this was an informative read and that you’re now able to update Windows Defender without issues. You need that definition up-to-date at all the times, so it’s quite dangerous to neglect it.

RELATED STORIES YOU SHOULD CHECK OUT:

Still experiencing troubles? Fix them with this tool:

SPONSORED

Some driver-related issues can be solved faster by using a tailored driver solution. If you’re still having problems with your drivers, simply install OutByte Driver Updater and get it up and running immediately. Thus, let it update all drivers and fix other PC issues in no time!

Was this page helpful?

x

Start a conversation

Update the detailed information about Uninstall Office Update Using Command Line In Windows 11/10 on the Kientrucdochoi.com website. We hope the article's content will meet your needs, and we will regularly update the information to provide you with the fastest and most accurate information. Have a great day!