Logo

Enable or Disable Optional Windows Features

As you know, Windows operating system comes with tons of features. Some of which are not intended to be used by normal customers or users directly which means that only a small percentage of the huge user base of the operating system leverages the use of such features. However, they’ve added some major value to the feature list of the operating system. You can find these features under the “Turn Windows Features on and off” option. This indicates that if you want to, you can just type in “Turn Windows Features on and off” in the search box and then enable any feature that you want to enable. Aside from that, there are other ways you can disable or enable the optional Windows Features in your Windows 10 computer.

Option 1 – via Control Panel

  • Open Control Panel and select Uninstall a Program.
  • After that, select the “Turn Windows features On or Off” option on the left side.

Option 2 – via Command Prompt

  • Tap the Win + X combination on your keyboard or right-click on the Start button and then click on Command Prompt (Admin). Alternatively, you can also type “cmd” in the Cortana search box and right-click on the Command Prompt icon, and select the “Run as administrator” option.
  • If a User Account Control or UAC prompt appears, click on Yes.
  • Next, type in the following command to see the list of the available features.

DISM /online /get-features /format:table | more

  • Now all you have to do is copy the name of the feature that you want to enable and for you to do that, you need to execute the following command:

DISM /online /enable-feature /featurename:[Enter the name of the feature here] –All

Note: Now if you want to disable a feature that’s already enabled in your computer, refer to these sub-steps:

  • First, you need to check what features are enabled, and for you to find out, enter this command: DISM /online /get-features /format:table | find “Enabled" | more
  • And if you want to check the detailed information about a particular feature, you can enter this command: DISM /online /get-featureinfo/featurename:[Enter the name of the feature here]

Option 3 – via Windows Powershell

As you know, the Windows Powershell is a very important tool in Windows 10, and a powerful one at that since you can do a lot of things using this command line. So while you use this tool you need to populate the list of available features first and then you have to download the feature your desired feature.

  • Search for PowerShell in the Cortana search box and then run it with administrator privileges.
  • Next, type in the following command to populate the list of available features:

Get-WindowsOptionalFeature –Online

  • After that, enter the following command to install any feature you want to enable from the list of available features:

Get-WindowsOptionalFeature -Online -FeatureName *Type feature name*

  • Now enter the following command to enable your desired feature:

Enable-WindowsOptionalFeature -Online -FeatureName “Type feature name” –all

  • And if you want to disable any enabled feature, just enter the following command:

Disable-WindowsOptionalFeature -Online -FeatureName “Type feature name”

Option 4 – via an external installation source

You also have the option to fetch the latest features from an updated offline source. The source could be an ISO any other type of image or just a folder. So you need to decide if you want to use Windows Powershell or Command Prompt.

  • If you want to use Command Prompt, just enter this command: exe /online /enable-feature /featurename:< /All /Source:<Enter the path of the feature here>
  • If you want to use Windows Powershell, use this command: Install-WindowsFeature –Source “<Enter the path of the feature here>”

Note: If you want to get the latest features, you need to get the latest version of the image of the operating system that you are trying to install the feature from.

Do You Need Help with Your Device?

Our Team of Experts May Help
Troubleshoot.Tech Experts are There for You!
Replace damaged files
Restore performance
Free disk space
Remove Malware
Protects WEB browser
Remove Viruses
Stop PC freezing
GET HELP
Troubleshoot.Tech experts work with all versions of Microsoft Windows including Windows 11, with Android, Mac, and more.

Share this article:

You might also like

How to change network from Public to Private

If you would like your computer to be discoverable on your network and use print and file sharing you will have to change your network profile on your computer from public to private.

computer network

Follow the provided guide step by step to change your network profile setting:

Switch to private profile in Windows 10

Locate the Wi-Fi icon in your system tray and click on it. Click on properties on your WI-FI network to open the network menu. Inside the menu in the Network profile section enable the Private option.

Your changes will be automatically saved.

Switch profile to private in Windows 11

Find the WI-FI icon in the system tray and right-click on it, then choose Network and Internet Settings. Network & Internet page with open, find your network name at the top and select properties.

On the WI-FI page, in the Network Profile Type section choose Private. As in Windows 10, your changes will be automatically charged, and you can start using them immediately.

Another way around

If you want to switch back to a public profile follow provided steps but disable the private option.

Read More
Fix 0x80071AC3, Volume is dirty error message
If you are trying to copy a folder or a file but encountered an error that says, “An unexpected error is keeping you from copying the folder. If you continue to receive this error, you can use the error code to search for help with this problem”, read on as this post will guide you on how you can fix this error. This kind of error is a CHKDSK error. It is the “Volume is dirty” error message with error code 0x80071AC3 which indicates that the CHKDSK operation on your computer did not go through due to some corrupted sector of your hard drive, data corruption, corrupted system files, malware infection, as well as improper installation of an application that left some residual folders and files and many more. To fix the Error 0x80071AC3, here are some potential fixes you can check out to resolve it:

Option 1 – Run the Check Disk utility

You can also run the Check Disk utility to fix the error when you connect your USB or external device.
  • In the Windows Search box, type “command prompt” and from the search results, right-click on Command Prompt and select “Run as administrator”.
  • After opening Command Prompt, type this command and tap Enter: chkdsk /r /f <PARTITION LETTER>
  • The command you entered will start to check for errors and fix them automatically. Else, it will throw an error message saying, “Chkdsk cannot run because the volume is in use by another process. Would you like the schedule this volume to be checked the next time the system restarts? (Y/N)”.
  • Tap the Y key to schedule Disk Check the next time your computer restarts.

Option 2 – Try to check if a particular volume is dirty and exclude it

The next thing you can do to fix the problem is to check if the particular volume is dirty and exclude it. To do so, follow these steps:
  • In the Start Search, type “command prompt” in the field and right-click on Command Prompt from the search results, and then select the “Run as administrator” option.
  • After opening Command Prompt with admin privileges, execute this command: fsutil dirty query <PARTITION LETTER>
  • After that, you will see either of the following results of the command you just executed:
    • “Volume <PARTITION LETTER> is dirty”
    • “Volume <PARTITION LETTER> is not dirty”
  • If you see the “Volume <PARTITION LETTER> is dirty” message, then you can just skip checking the drive for errors by executing this command: CHKNTFS /X <PARTITION LETTER>

Option 3 – Try to format the destination drive

If the first two options above didn’t work, then you might want to try formatting the drive can also help you resolve the error. To format it, follow these steps:
  • To get started formatting your drive, tap the Win + E keys and then go to the access page of the drive.
  • Next, right-click on the drive and select Format.
  • After that, uncheck the “Quick Format” option and then format your drive properly.
  • Now once the formatting process is finished, unplug the drive and plug it back in afterward.
  • Check if the error is already fixed. If the drive is not initialized, tap the Win + R keys and hit Enter.
  • After opening the Run dialog box, type “diskmgmt.msc” and hit Enter to open Disk Management.
  • From there, right-click on the drive volume and select initialize disk.
  • Next, select the correct partition type and proceed.
Read More
Patching Error Code 21

Code 21 - What is it?

Code 21 is a Device Manager error code that appears when you try to use a hardware device attached to your computer and the Windows prohibits you from using it.

This is due to the Windows experiences problems loading the device driver. This error message is displayed in the following format:

“Windows is removing this device. (Code 21)”

Solution

driverfix boxError Causes

Error code 21 means that Windows is in the device removal process and the device has not been completely removed. It occurs when you set a device to be removed and then select the same device to run on your system.

Upon your instructions, Windows start to remove that device and when you on the other hand try to use/access the same device that you selected for removal, it kicks up Code 21.

Further Information and Manual Repair

If you are experiencing error code 21 on your PC, it is advisable to resolve it immediately.

Though this error will not damage your system, but will significantly lower the performance of your PC which is definitely something you don’t want especially if you work on your computer daily and use it to perform important time-sensitive errands.

To repair and resolve, try the methods given below:

Method 1 - Wait for a Few Seconds and Then Press F5

This is one of the best and easiest ways to resolve code 15 on your system. Wait for a few seconds, and then press the F5 key. This will update the Device Manager view and the error will most probably go away.

Method 2 - Restart Your PC

Sometimes error codes may pop up due to temporary glitches. To resolve such errors, a simple reboot of your PC is enough. Shut down Windows and then restart your system.

This is most likely to resolve Code 21. However, if the error still persists then this means the underlying problem for code 21 is deeper than you think. Try method 3 to resolve.

Method 3 - Install DriverFIX

As mentioned earlier, the error code 21 may occur if you have selected a device to remove and then you try to reuse it.

To resolve, you may have to install the device again and the driver for that the reinstalled device. To reinstall the driver without any hassle, simply download DriverFIX.

It is a smart, user-friendly, and intuitive software program designed to resolve driver problems. The program is embedded with intelligent device identification technology which:

  • Automatically detects all the appropriate system drivers
  • Matches them with the latest available versions
  • And then updates drivers according to their compatible versions on a regular basis

Furthermore, it enables accurate installation and ensures that your system is running at its optimal speed.

Other features that this program boasts are full backup and restoration, safe USB management, and ejection.

If nothing works, you can try the full backup and restoration feature and restore your PC to its previous state when it was functioning properly before the error occurred.

DriverFIX creates a backup of all your files and data hedging keeps you from disasters like data loss. It restores the system to the time when it was working properly.

Click here to download DriverFIX on your system and resolve error code 21 today.

Read More
VideoDownload Converter removal guide

Video Download Converter is a potentially unwanted toolbar distributed by Mindspark Interactive network. This toolbar offers users the ability to download and convert youtube and other online videos.

While this may seem useful at the start, this toolbar monitors user browsing activity and records visited websites, clicked links, and even personal data, that it later uses to display injected ads through your browsing session. When the toolbar is installed, it will automatically hijack your home page and search engine setting them to MyWay.com. This search engine uses google to display your search results, however, it injects ads into the search results to generate ad revenue. Several anti-virus scanners have detected VideoDownloadManager as a Browser Hijacker, and are therefore not recommended to keep on your computer.

About Browser Hijackers

Browser hijacking is actually a form of unwanted software, commonly a browser add-on or extension, which then causes modifications in the browser’s settings. There are lots of reasons why you might experience a browser hijack; however commercial, marketing, and advertising are definitely the key purposes for their creation. Usually, it will force users to predetermined sites which are looking to increase their advertising campaign earnings. It may seem naive, but the majority of these sites are not legitimate and can pose a major threat to your online safety. Browser hijackers can also allow other harmful programs without your knowledge to further damage the computer. How to determine if your browser has been hijacked There are many symptoms that indicate the internet browser has been hijacked: the home page of your browser is changed suddenly; you find yourself constantly directed to a different web page than the one you intended; the main web browser settings are modified and unwanted or insecure resources are added to the trusted websites listing; unsolicited new toolbars are added to your web browser; you may find numerous pop-up adverts on your computer screen; your browser has instability issues or exhibits frequent errors; you can’t navigate to certain websites, such as computer security software related websites.

So how does a PC get infected with a browser hijacker?

Browser hijackers can enter a PC by some means or other, for example via file sharing, downloads, and e-mail too. Many web browser hijackings originate from add-on applications, i.e., toolbars, browser helper objects (BHO), or extensions added to browsers to provide them additional features. Some browser hijackers spread in user’s computers using a deceptive software distribution method called “bundling” (commonly through freeware and shareware). Some of the popular hijackers are VideoDownload Converter, Babylon Toolbar, Conduit Search, OneWebSearch, Sweet Page, and CoolWebSearch. Browser hijackers might record user keystrokes to gather potentially invaluable information leading to privacy concerns, cause instability on computers, drastically disrupt user’s browsing experience, and eventually slow down the PC to a point where it becomes unusable.

The best ways to remove browser hijackers

Certain kinds of browser hijackers can be easily removed from your PC by uninstalling malicious software programs or any other recently added shareware. However, many hijacking codes are not very easy to get rid of manually, since they go deeper into the operating system. Moreover, manual removal demands you to do many time-consuming and complex procedures which are very difficult to carry out for beginner computer users. You can go for automatic browser hijacker removal by simply installing and running reliable anti-malware software. Safebytes Anti-Malware has a cutting-edge anti-malware engine to help you prevent browser hijacker infection in the first place, and clean up any pre-existing issues. Together with anti-malware, a PC optimizer tool, similar to Total System Care, could help you resolve registry errors, remove unwanted toolbars, secure online privacy, and improve overall system performance.

What to Do if Malware Stops You From Downloading Or Installing Anything?

Every malware is detrimental and the magnitude of the damage will vary greatly depending on the type of malware. Some malware sits in between your PC and the internet connection and blocks a few or all internet sites which you want to visit. It would also block you from adding anything to your system, particularly anti-malware software. If you are reading this article, chances are you’re stuck with a malware infection that is preventing you to download and install the Safebytes Anti-Malware program on your computer. There are a few steps you can take to circumvent this problem.

Eliminate viruses in Safe Mode

In the event the malware is set to load at Windows startup, then booting in safe mode should prevent it. Just bare minimum required programs and services are loaded when you boot your computer into Safe Mode. Here are the steps you need to follow to take out viruses in Safemode. 1) After switching on the computer, press the F8 key before the Windows splash screen begins to load. This would invoke the “Advanced Boot Options” menu. 2) Make use of the arrow keys to select Safe Mode with Networking and hit ENTER. 3) When you are into this mode, you should have an internet connection once again. Now, utilize your web browser to download and install Safebytes Anti-malware. 4) Right after installation, run a complete scan and let the software remove the threats it detects.

Obtain the security program using a different browser

Some malware mainly targets particular browsers. If this sounds like your situation, employ another web browser as it could circumvent the virus. If you appear to have a trojan attached to Internet Explorer, then switch over to a different browser with built-in security features, such as Firefox or Chrome, to download your favorite anti-malware program – Safebytes.

Install security software on a USB drive

Here’s yet another solution which is utilizing portable USB anti-malware software that can scan your computer for viruses without the need for installation. Adopt these measures to use a USB drive to fix your corrupted computer system. 1) Download Safebytes Anti-Malware or Windows Defender Offline onto a clean PC. 2) Mount the pen drive on the same PC. 3) Double click on the downloaded file to run the installation wizard. 4) Choose a thumb drive as the location when the wizard asks you where you wish to install the application. Follow the on-screen instructions to complete the installation. 5) Transfer the pen drive from the uninfected computer to the infected computer. 6) Double-click the EXE file to run the Safebytes program from the thumb drive. 7) Click on the “Scan” button to run a full system scan and remove viruses automatically.

Detect And Remove Viruses With SafeBytes Anti-Malware

If you’re looking to purchase anti-malware for your computer system, there are lots of brands and applications for you to consider. Some of them are good and some are scamware applications that pretend as legit anti-malware programs waiting around to wreak havoc on your personal computer. Make sure you choose a company that builds industry-best anti-malware and it has attained a reputation as reliable. One of the recommended software by industry analysts is SafeBytes Anti-Malware, the most dependable program for Windows computers. SafeBytes anti-malware is really a powerful, highly effective protection tool made to help users of all levels of IT literacy in detecting and removing harmful threats from their PC. Using its cutting-edge technology, this application will assist you to remove several types of malware including computer viruses, trojans, PUPs, worms, ransomware, adware, and browser hijackers. SafeBytes has got a plethora of amazing features which can help you protect your computer from malware attack and damage. Here are some of the features you will like in SafeBytes. Active Protection: SafeBytes offers a completely hands-free real-time protection that is set to monitor, block and kill all computer threats at its very first encounter. It will continuously monitor your computer for hacker activity and also provides end-users with sophisticated firewall protection. World-class AntiMalware Protection: This deep-cleaning anti-malware application goes much deeper than most antivirus tools to clean out your computer system. Its critically acclaimed virus engine locates and disables hard-to-remove malware that conceals deep inside your personal computer. Fast Scan: SafeBytes Anti-Malware possesses a multi-thread scan algorithm that works up to 5 times faster than any other antivirus software. Web Protection: Through its unique safety ranking, SafeBytes tells you whether a website is safe or not to visit it. This will make sure that you’re always certain of your safety when browsing the web. Light-weight: This software is not “heavy” on the computer’s resources, so you’ll not find any performance troubles when SafeBytes is working in the background. 24/7 Support: You could get high levels of support around the clock if you are using their paid software. To sum it up, SafeBytes Anti-Malware is pretty great for securing your computer against all sorts of malware threats. There is no doubt that your PC will be protected in real-time once you put this software program to use. So if you’re looking for the best anti-malware subscription for your Windows-based PC, we suggest the SafeBytes Anti-Malware software program.

Technical Details and Manual Removal (Advanced Users)

If you do not want to use malware removal software and like to remove VideoDownload Converter manually, you may do so by going to the Add/Remove Programs menu in the control panel and deleting the offending software; in cases of web browser extensions, you could uninstall it by going to the browsers Add-on/Extension manager. You may even want to reset your internet browser settings, and also delete temporary files, browsing history, and cookies. Finally, examine your hard disk for all of the following and clean your registry manually to remove leftover application entries following an uninstallation. Please keep in mind that this is for advanced users only and could be difficult, with wrong file removal causing additional PC errors. Furthermore, certain malware is capable of replicating or preventing removal. Doing this malware-removal process in Safe Mode is recommended.
Files: LOCALAPPDATA\VideoDownloadConverterTooltab\TooltabExtension.dll Folders: LOCALAPPDATA\Google\Chrome\User Data\Default\Extensions\ikgjglmlehllifdekcggaapkaplbdpje LOCALAPPDATA\Google\Chrome\User Data\Default\Local Extension Settings\ikgjglmlehllifdekcggaapkaplbdpje LOCALAPPDATA\Google\Chrome\User Data\Default\Sync Extension Settings\ikgjglmlehllifdekcggaapkaplbdpje LOCALAPPDATA\VideoDownloadConverterTooltab Registry: key VideoDownloadConverter at HKEY_CURRENT_USER\Software\ key VideoDownloadConverterTooltab Uninstall Internet Explorer at HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\
Read More
Mozilla VPN is here

The new thing from Mozilla is not a browser, it is a VPN!

Besides Firefox, Mozilla offers now Firefox Relay, an app helping you to mask your email and phone number, and a new Mozilla VPN.

mozilla vpn

Mozilla has recently announced a new subscription model that will let you use all products together for $6.99 per month. Although this is a little more expensive than the competition that goes around for $5 per month note that with this subscription you are having access to all services, not just VPN.

VPN will not only hide your IP address but will also make sure websites cannot access your real location and it encrypts all of your network activity. Relay will give you protection against spam, serving as a shield for your email and limiting spammers from access to your real email address and phone number. With Mozilla subscription will let you use both services.

Read More
How to Resolve Error Code 0xc00007b in Windows 8, 8.1

Error Code 0xc00007b – What is it?

When error code 0xc00007b occurs in Windows 8, users are unable to run gaming or multimedia programs on their devices. The message box will occur stating that error code 0xc00007b is present. This issue is usually related to software conflict associated with the use of a gaming program that has errors. It may also result when users use applications that are not compatible with the version of Windows they have installed on their machine.

Solution

Restoro box imageError Causes

Error codes on Windows devices can result from many reasons, including lack of proper PC maintenance, the presence of malware, and issues related to servers. In the case of error code 0xc00007b, it manifests itself on various versions of the Windows operating system when users attempting to run applications incompatible with their system or use the incorrect bit location. To correct these issues that may be causing error code 0xc00007b, users will need to use manual repair methods listed in this article. Failure to rectify this error code could result in others such as error code 0xc0000142.

Further Information and Manual Repair

The manual repair procedures listed in this article do not require extensive technical knowledge. Thus, even average Windows users will be able to apply these solutions in order to fix error code 0xc00007b in Windows 8. However, in case of difficulty applying the solutions listed below, contact a Windows repair technician.

Method One: Install Windows Updates

One of the first manual repair methods you can attempt is to use Windows Update. This will enable users to access the latest updates for the version of Windows they have on their system. To update your system, follow the instructions below.

  • Step one: Open Start Menu, then select Settings
  • Step two: Select Update & security
  • Step three: Select Windows Update
  • Step four: Install updates if any are available

After you’ve completed the installation of the latest updates, reboot your machine then attempt to run the gaming application you were unable to open due to error code 0xc00007b. You should be able to run the application if Windows Update fixed the issue. However, if the error code reoccurs, proceed to the next manual repair method by installing Microsoft DirectX.

Method Two: Install Microsoft DirectX

Another important manual repair method relates to the use of DirectX, a free tool available to Windows users regardless of the version of the Windows operating system present on their PC. Visit Microsoft’s official website and search for DirectX End-User Runtime Web Installer. Ensure you access the latest version of the program, then click download.

The app enables Windows users to access high-speed gaming by providing a powerful platform for games and multimedia applications. Access to the latest version of DirectX can help users fix the issues causing error code 0xc00007b in Windows 8.

When the installation process is complete, reboot your PC, then proceed by checking if you are able to run your gaming applications. If you are still unable to run the applications the issue will need to be resolved via another manual repair method.

Method Three: Install Latest Version of .NET Framework

Access the latest version of Microsoft’s .NET Framework to complete the final manual repair method. Be sure to follow the steps listed below to download the latest version of the .NET framework. This is crucial as only the latest version of the framework is equipped with the necessary capabilities required to successfully address the issues causing error code 0xc00007b on your device.

  • Step one: Open your favorite web browser
  • Step two: Enter www.microsoft.com/net
  • Step three: Click Downloads
  • Step four: Select the latest version of the .NET Framework by clicking the framework at the top of the list. (Currently, the latest version is .NET Framework 4.6.2.)
  • Step five: Select preferred language, then download
  • Step six: Run software.

Restart your computer after you’ve downloaded the latest version of the .NET framework. Open the gaming application you were previously unable to run due to error code 0xc00007b.

You’ll be able to access all your gaming or multimedia programs if the issue was resolved via this manual repair method. Otherwise, you may need to reinstall the programs you are unable to run as there may be an issue with the program itself resulting in software conflict or the inability to run other gaming programs.

Method Four: Download an Automated Tool

If you wish to always have at your disposal a utility tool to fix these Windows 8 and other related issues when they do arise, download and install a powerful automated tool.

Read More
Fix One Drive Error: This is not a valid file name
As you know, Microsoft’s consumer cloud storage platform is none other than OneDrive. It is where users can save any of their files albeit it’s mostly used to store common files like documents and photos. However, there are times when you might encounter some problems when saving these files. Recently, some users reported that they had problems saving Word documents to OneDrive and if you experience the same issue, then you’ve come to the right place as this post will guide you on how to resolve it. According to users who encountered the problem, when they try to save Word documents on OneDrive, an error message appears instead stating, “This is not a valid file name”. This kind of error only occurs when the file is opened from within OneDrive for saving in a different folder. In other words, if the file is saved in the same folder, the error won’t pop up but if it is saved in a separate folder, that’s when the error appears. Worry not though for fixing this error is not complicated and won’t take too long. It seems that this error is due to the 259-character limitation when creating and saving files as far as the Office products are concerned. To resolve it, there are several workarounds you can check out. Before you proceed with these workarounds, make sure that you have a stable internet connection.

Option 1 – Try renaming the file with a shorter name

The first thing you can do to fix the problem is to rename the file with a shorter name. Just right-click on the file and select the Rename option from the menu and then type in the new name and click OK or tap Enter to rename the file.

Option 2 – Try renaming the folders where the file is located

Like what you did in the first given option, all it takes is a right-click but this time on a folder. Rename the folder with a different name and save the changes made and then check if you can now save the Word document on OneDrive.

Option 3 – Try moving the file to a folder with a shorter path

If the first two options didn’t work, you can try moving the file to a folder with a shorter path. Note that it is not the same as doing it locally on a Windows 10 computer so you have to right-click on the file and select the “Move to” option. After that, locate the folder where you want to move the file and select it and then click on the Move button to complete the task.

Option 4 – Try making some changes in the document

You could also try to make some modifications to the document. Once you’ve done that, click the File tab and select the Save As option and then go to the folder where you want to save the file and tap enter.
Read More
Fix Error 0x800F0923 in Windows 10
In trying to upgrade your Windows 10 computer, you might have come across the error 0x800F0923. This kind of Windows upgrade/update error is caused by an incompatible driver or software that’s installed on your computer. Thus, to fix the problem, you need a working fix which you can choose from below. As mentioned, you can try updating the concerned application or software to its latest version to resolve the compatibility issue and in turn, fix error 0x800F0923. Note that depending on where you had installed the application, your steps will change. So if you have it installed directly from the website, refer to these steps:
  • Look for the built-in option to check the updates since the most application has this option.
  • You also have the option to go to the website of the application and check if there is a new version available. If there is, download and update the app.
On the other hand, if you have downloaded the app from the Microsoft Store, here’s what you have to do:
  • Open the Store and click on the three dots located at the top-right of the window.
  • Next, click the Download and Updates option.
  • From there, check if there is an update available for the store. If there is, update it.

Option 2 – Try to uninstall the application or software

If updating the app or software to its latest version didn’t help and you’re still getting the error 0x800F0923 every time you attempt to install the Windows Updates, you may have to uninstall it. You will need to use the usual Program and Features to uninstall it if you have downloaded it from the website.
  • In the search box, type in “control” and then click on Control Panel (desktop app) among the search results.
  • After that, select Programs and Features from the list which will give you a list of all the programs installed on your computer.
  • From there, look for the concerned program and select it and then uninstall it.
Note: If you have downloaded the app from the Windows Store, you can simply right-click on it from the application list and then uninstall it.

Option 3 – Try to disable your antivirus program

Disabling the antivirus program or any security software installed in your computer is always a good idea you can try when the Windows Update process does not go smoothly. So before you try updating your computer again, make sure to disable the antivirus or security program and once the Windows Update is done, don’t forget to enable the antivirus program back again.

Option 4 – Try to run the Windows Update Troubleshooter

Running the built-in Windows Update troubleshooter could also help you resolve the Windows Update error 0x80073712. To run it, go to Settings and then select Troubleshoot from the options. From there, click on Windows Update and then click the “Run the troubleshooter” button.

Option 5 – Try to do the Update in a Clean Boot state

Putting your PC in a Clean Boot state can also help you install Windows Updates or Upgrades without any trouble because, during this state, you can start the system with a minimum number of drivers and startup programs that will surely help you in isolating the root cause of the issue.
  • Log onto your PC as an administrator.
  • Type in MSConfig in the Start Search to open the System Configuration utility.
  • From there, go to the General tab and click “Selective startup”.
  • Clear the “Load Startup items” checkbox and make sure that the “Load System Services” and “Use Original boot configuration” options are checked.
  • Next, click the Services tab and select the “Hide All Microsoft Services” checkbox.
  • Click Disable all.
  • Click on Apply/OK and restart your PC. (This will put your PC into a Clean Boot State. And configure Windows to use the usual startup, just simply undo the changes.)
  • After that, try to install the Windows Updates or upgrade again.

Option 6 – Try running Microsoft’s online troubleshooter

You also have the option to run Microsoft’s online troubleshooter which could help you fix Windows Update errors including the error 0x800F0923.
Read More
How to Fix Windows 10 Error 0x8000222

Error Code 0x8000222 - What is it?

Error Code 0x8000222 is an error that occurs during the installation process for Windows 10. It is also present in past versions of the software, going all the way back to Windows 7 and even affecting Windows software products, including Microsoft Word, PowerPoint, and other items in the Microsoft Office Suite.

Common symptoms include:

  • Inability to complete the installation process for new versions of the operating system, Microsoft Office programs, or other Windows-based software

While there are several factors that can contribute to the appearance of Error Code 0x8000222 during the installation process, most of these factors can be addressed using a few high-level methods. These methods do require some advanced knowledge and computing skills, so if you are unable to complete the steps below successfully or do not have confidence in your ability to undertake these methods on your own, contact a qualified computer repair service that is familiar with the Windows 10 installation process.

Solution

Restoro box imageError Causes

There are a few different issues that can cause Error Code 0x8000222 to arise during the installation process on your Windows operating system. The first is a corrupted file in your system library or dynamic link library, also called the DLL. The second is interference by your proxy, firewall, or antivirus software that inhibits the machine from being able to access the files that it needs to successfully complete the installation of your Windows operating system or software.

Further Information and Manual Repair

To address and resolve Error Code 0x8000222 on your Windows operating system, regardless of the version of the software that you are using, there are a few steps that you can take. Keep in mind that these steps do require some advanced skills and knowledge about your computer, so if you don’t believe that you can undertake these steps on your own or if the following methods do not fully resolve the issue on your device, talk to a qualified computer repair technician for assistance.

Here are the best ways to address Error Code 0x8000222 on your Windows machine:

Method One:  Fix Your DLL Dependencies Registry

Before implementing this method, make sure that a proxy is not active on your computer. To check to see if there is an active proxy, simply press the Windows key together with the “R” key and type in the command “cmd”, then when the prompt opens up, type in the following command:  “netsh winhttp import proxy source=ie”. From the box that follows, if you see a message saying that there has been an error writing in the proxy settings and that access has been denied, it means that you can turn off the proxy setting in your Internet Explorer and the error will go away on its own.

If you do not have an active proxy, it is time to check and see whether your DLL dependencies are properly set up. To do so, open up the command prompt again by pressing the Windows key and “R” key at the same time and typing in “cmd”. Once the command prompt is active, simply typing in “regsvr32 Officevalidator.dll”, then attempt to resume your installation once it has been complete.

In some cases, you may need to restart your computer before attempting the Windows installation process.

Method Two:  Turn Off Firewalls and Antivirus Software Before Installing

If the above method did not successfully resolve the problem, you can go into your control panel and turn off any firewalls or antivirus programs that may be interfering with your ability to complete the Windows installation process. Depending on the programs that you use for your antivirus needs, you may need to restart your computer before you reattempt to do the installation process.

You should be able to turn your firewall and antivirus programs back on once the installation process has run through to completion.

In most cases, taking the steps above will fully resolve the appearance of Error Code 0x8000222 on your Windows 10 machine.

Method Three: Use An Automated Tool

If you wish to always have at your disposal a utility tool to fix these Windows 10 and other related issues when they do arise, download and install a powerful automated tool.

Read More
Hive ransomware on Exchange servers

Hive ransomware has been targeting Microsoft exchange servers lately vulnerable to ProxyShell security issues in order to deploy various backdoors. Once the backdoor has been placed various attacks can be performed including but not limited to network reconnaissance, stealing admin accounts, taking valuable data, and even installing and deploying file-encrypting algorithms.

hive ransomware

ProxyShell wide abuse

ProxyShell is a set of three vulnerabilities in the Microsoft Exchange Server that allows remote code execution without authentication on vulnerable deployments. The flaw has been used in past by various ransomware like Conti, BlackByte, Babuk, Cuba, and LockFile.

Security vulnerabilities have been reported to be fully patched on May 2021 but how Hive was able to still be successful in exploiting PowerShell and infiltrating into the system there seems to be still some unpatched and open issues.

Hive

Hive has gone a long way since it was first observed in the wild back in June 2021, having a successful start that prompted the FBI to release a dedicated report on its tactics and indicators of compromise.

In October 2021, the Hive gang added Linux and FreeBSD variants, and in December it became one of the most active ransomware operations in attack frequency.

Last month, researchers at Sentinel Labs reported on a new payload-hiding obfuscation method employed by Hive, which indicates active development.

Read More
1 2 3 171
Logo
Copyright © 2023, ErrorTools. All Rights Reserved
Trademark: Microsoft Windows logos are registered trademarks of Microsoft. Disclaimer: ErrorTools.com is not affiliated with Microsoft, nor claims direct affiliation.
The information on this page is provided for information purposes only.
DMCA.com Protection Status