Logo

Fix update error 0x8024ce0e in Windows 10

The Windows update error 0x8024ce0e can happen as a result of improper installation, a virus, or due to file corruption. Follow this guide to easily fix errors and continue with your work.

  1. Restart Windows

    As awkward as it seems this method actually works most of the time. Click on the start button and restart your system.

  2. Check hard disk space

    Of course, when installing updates there should be enough disk space for updates to be downloaded and installed. Check your disk space to see if there is sufficient available space.

  3. Disconnect external components

    External components can interfere sometimes with the update process, disconnect external hard drives, USB, and other devices, leaving only the keyboard, mouse, and core ones.

  4. Check devices in the device manager

    Open device manager and visually check to see if there is a device with a yellow exclamation sign next to it. If there is such a device, right-click on it and choose update driver.

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

Couldn’t open PDF in Edge Error in Windows
As you know, Microsoft Edge is the default web browser in Windows 10 operating system. It is a built-in browser that replaced the ancient Internet Explorer for its performance and features. Aside from being the default web browser, it is also set as a default PDF viewer in Windows 10. So if you open a PDF file, it will be automatically opened in the Edge browser even if you have installed a PDF reader on your computer. However, some users recently reported getting an error that says, “Couldn’t open PDF in Edge, Something’s keeping this PDF from the opening” when they tried to open a PDF file or view an internet link that has a downloadable PDF file in the Edge browser. If you are one of these users, read on as this post will help you troubleshoot the problem and fix it. This kind of error mostly occurs if you have installed other PDF viewers on your computer. They could be interrupting Edge while it tries to open the PDF documents. To fix it, check if Microsoft Edge is set as the default PDF viewer or you could also try to clear its browsing cache. In addition, you could also reset or repair Edge. For detailed instructions, refer to the given options below.

Option 1 – Check if Microsoft Edge is set as the default PDF viewer

The first thing you can do is to check if Edge is set as the default PDF viewer. If it’s not, you have to set it as one to fix the problem.
  • Open Control Panel and go to Default Programs.
  • Then click on the “Associate a file type or protocol with a program” option.
  • Next, select the PDF file option and click on Change program.
  • After that, select Microsoft Edge in the pop-up window and then select the “Always use this app to open .pdf” option.
  • Now click the OK button to set Edge as the default PDF viewer and then check if you can now open the PDF file in the Edge browser.

Option 2 – Clear the browser cache of Microsoft Edge

  • Open Microsoft Edge.
  • Then click on the three horizontal dots to open the menu.
  • From there, click on Settings. And under Settings, click the “Choose what to clear” button under the Clear browsing data section.
  • Next, check all the checkboxes and then click the Clear button to clear the browsing data in the Edge browser.
  • Restart Edge.

Option 3 – Reset, repair or reinstall Microsoft Edge via Settings

You can reset, repair or reinstall the Edge browser through Settings. If none of it helped, you can try the following:
  • Open File Explorer and then go to this path – C:/Users/YourUsername/AppData/Local/Packages
Note: Before you type in the path in the Address bar, make sure that you put your user account name in place with the “YourUsername”.
  • Tap Enter to proceed.
  • Next, look for the folder named “MicrosoftEdge_8wekyb3d8bbwe” then right-click on it.
  • Click on Properties and uncheck the option “Read-only” under the General tab in the Properties window.
  • Click on Apply and then OK to save the changes made.
  • After that, look for the MicrosoftEdge_8wekyb3d8bbwe folder again and delete it. And if a prompt stating “Folder Access Denied” appears on your screen, just click on the Continue button to proceed – doing so will delete most of the content inside the folder except for the folder named “AC”.
  • Restart your PC.
  • Now all you have to do is to re-register Microsoft Edge using PowerShell. In the Start Menu, search “Windows PowerShell”.
  • Right-click on Windows PowerShell from the search results and select the “Run as administrator” option.
  • Type in this command in the PowerShell windows and tap Enter – Cd C:/Users/YourUsername
Note: Once again, make sure that you key in your user account name in place of “YourUsername.
  • After that, type in this command and tap Enter – Get-AppXPackage -AllUsers -Name Microsoft.MicrosoftEdge | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml" -Verbose}
  • Restart your PC.
Read More
Mapped network drives are not working
When you have to connect to a drive that’s on a different computer or on external storage, that’s where the mapped network drives come in. Mapped network drives make accessing files a lot easier. However, there are times when it won’t work for some reason. Windows will notify you about the unavailability of mapped network drives in several ways. For one, Windows might display a red X on the network drives or it could be that its status will be unavailable when you try to use it from the Command Prompt or via a notification. It is recommended that you run a few scripts when you log in to your PC as it may so happen that the network drive takes more than usual to connect. Before you start troubleshooting the problem using the given options below, keep in mind that some workouts might only work under certain scenarios. You might need some network access at logon or you might need access to the Group Policy settings. So you need to choose what you prefer more. You can try the given workarounds below if the mapped network drives are not showing or connecting or working on your Windows 10 computer. These workarounds use scripts to make sure that you are connected to them as soon as you start to use your PC. As mentioned, before you can troubleshoot, you need to create scripts first. There are two scripts here namely MapDrives.ps1 which is executed by the second script named MapDrives.cmd and is done at a regular and non-elevated Command Prompt. Follow the steps below to get started.
  • You have to create a script file named “MapDrives.cmd” first and then save it on a place where the files are safe. To do that, open a text editor like Notepad and then copy and paste the following script:
PowerShell -Command "Set-ExecutionPolicy -Scope CurrentUser Unrestricted" >> "%TEMP%StartupLog.txt" 2>&1 PowerShell -File "%SystemDrive%ScriptsMapDrives.ps1" >> "%TEMP%StartupLog.txt" 2>&1
  • After that, save the file and name it “MapDrives.cmd”.
  • Next, create a script file named “MapDrives.ps1” and then copy and paste the following content. Just make sure to save both scripts in the same folder.
$i=3 while($True){     $error.clear()     $MappedDrives = Get-SmbMapping |where -property Status -Value Unavailable -EQ | select LocalPath,RemotePath     foreach( $MappedDrive in $MappedDrives)     {         try {             New-SmbMapping -LocalPath $MappedDrive.LocalPath -RemotePath $MappedDrive.RemotePath -Persistent $True         } catch {             Write-Host "There was an error mapping $MappedDrive.RemotePath to $MappedDrive.LocalPath"         }     }     $i = $i - 1     if($error.Count -eq 0 -Or $i -eq 0) {break}     Start-Sleep -Seconds 30 } Note: Now that you’ve created the script files, it’s time for you to proceed to the options given below.

Option 1 – Try creating a startup item

Note that this option only works on devices that have network access at login. So if it’s not there, the script will fail to reconnect the network drivers automatically. To create a startup item, here’s what you have to do:
  • Open the Startup folder located at %ProgramData%MicrosoftWindowsStart MenuProgramsStartUp.
  • From there, copy and paste the MapDrives.cmd.
  • After that, open the Scripts folder located at %SystemDrive%Scripts copy-paste MapDrives.ps1 and then copy and paste MapDrives.ps1 in there.
Note: After you complete the steps above, a log file named “StartupLog.txt” will be created in the %TEMP% folder. Now all that’s left for you to do is to log out of your computer and then log back in. This will ensure that the mapped drives are open.

Option 2 – Create a scheduled task

It is possible to create a scheduled task that runs as soon as you log in to your computer. To create a scheduled task, follow the steps below.
  • You have to copy the MapDrives.ps1 script file to the scripts folder of Windows located at %SystemDrive%Scripts.
  • After that, open the Task Scheduler and select Action > Create Task.
  • Next, type a name and description of the task in the General tab.
  • Then click on the Change User or Group button and select a local user group and click OK.
  • Now check the box labeled “Run with highest privileges” and switch to the Triggers tab.
  • From there, create a new trigger with the “At Logon” option in the Begin the task drop-down menu and then click OK.
  • After that, switch to the Actions tab and create a new action then choose to Start a program.
  • Next, type “Powershell.exe” in the Program/Script field, and in the Add arguments (optional) field, type the following:
-windowsstyle hidden -command .MapDrives.ps1 >> %TEMP%StartupLog.txt 2>&1
  • And in the Start in the (optional) field, type “%SystemDrive%Scripts” as the location of the script file.
  • Now under the Conditions tab, select the “Start only if the following network connection is available” option and then select Any connection and click OK.
  • Restart your computer or log off from your account and then log back in so that the task will be executed.

Option 3 – Use the Group Policy settings

You need this option if the mapped network drives are defined via Group Policy settings. You have to update the action of the drive maps to Replace. As a result, it will delete the existing mapped drive and create the mapping on each logon again. However, any settings on the mapped drive that are changed from the Group Policy settings will be gone on each logon. So if the changes don’t work, you need to run the gpupdate command together with the /force parameter in order to refresh the Group Policy setting quickly.
Read More
How to switch to Dark mode in Windows 11
Dark modeWindows 11 is coming soon, from its typical view and color scheme, Windows 11 will natively support dark mode. The dark mode is very popular in many applications today, some large companies like Adobe, Autodesk, and many more have already adopted a dark color scheme for their software so it is logical for others to follow and Microsoft is aboard for it. The dark mode itself has its benefits, for people who work on computer for longer period of time dark mode inside applications will throw less white and blue light on their eyes making workhours easier and pleasant on them. As a person who does indeed spend a lot of time in front of the screen, I would advise you to switch to dark mode regardless of the time that you spend with a computer, your eyes will be grateful.

Switching to Dark mode in Windows 11

  1. Open Windows 11 Settings by pressing ⊞ WINDOWS + I
  2. Click on Personalization on the left sidebar
  3. On the right side click on Color
  4. In color options click on the drop-down menu right next to Choose your color
  5. Select Dark
Your choice will be applied right away and you can safely close settings.
Read More
JBL Clip 4 Review, a small perfection

Portable small Bluetooth speakers are nothing new on the market, most of the time they have given the opportunity for music listening during picnics and walks in nature and also replaced some car speaker systems. The latest star in small portable speakers in JBL Clip 4, small in size, waterproof, and with an incredible high-quality sound.

JBl Clip 4

Performance and quality

Out of the box and after first look speaker looks great, it has excellent design and is very intuitive to work with. Everything is laid out logically and you can start using it right away without reading instructions.

The sound quality is surprisingly very good and clear. I must say I have not expected this clarity and power from a speaker of this size. The volume range is also incredibly good and will fill most needs even on small picnics outdoors where you can hear it loud enough. One thing to mention is that even on their loudness levels sound is still clear without distortion which, to be honest, is to be expected from someone like JBL.

Where you can take JBL Clip 4

You can take it where ever you want, Its size and clip make it perfect for beach and pool trips. Speaker is waterproof and gas IP67 rating, meaning that sand and dirt will not affect it either. Do not take this speaker to your diving adventures since that will break it but a depth around 1 meter underwater should be safe. After your trip do not forget to wash Clip 4 with clean water so all dirt, salt, and other stuff are properly cleaned for longer life of the device.

How long it will play?

JBL claims that the battery will last 10 hours of continuous play. Note that this is meant probably on the largest volume setting so when you use it on lower settings battery is lasting longer. Playing of course on low volumes will extend playback time even longer but here we come at one feature that I do not like, there is no indication of any kind how much battery is left in the speaker, the only indication is a red light when the battery is almost empty which means you could be outside at that point and did not know that low battery was there in the first place when you were packing. Some battery indication would be a great addon.

More stability for JBL Clip 4

The clip itself has been improved from the previous Clip 3 model, it is wider, it goes all the way around the casing, and feels overall better and more stable. Since the clip is now all around casing this means a wider opening can be made making it fit around stuff Clip 3 was not able to.

Conclusion

All in all, Clip 4 is an incredible speaker and one that would highly recommend, the price goes around 79 USD but it can be found even as low as 50 USD on discounts and promotions and if you manage to get one at that price it is a great buy. Sound is good, portability is great, dirt and waterproof are excellent and battery life is really good.

Read More
Five Ways of Fixing Error Code 37

What is Error Code 37?

Error Code 37 is a Device Manager Error Code that you may come across when you are unable to use an installed hardware device on your PC. It will pop up on your screen with the following display:

“Windows cannot initialize the device driver for this hardware. (Code 37)”

If you receive the above message, it means that your operating system was unable to acknowledge the drivers for a particular peripheral device.

Solution

driverfix boxError Causes

Error Code 37 mainly occurs due to device driver corruption. However, there are other factors that can trigger this error code, some of which are the following:

  • Missing device drivers
  • Out-of-date device drivers
  • Presence of malware or spyware in the system
  • The particular device is not compatible with your PC

Device driver corruption or other data corruption is not uncommon and part of everyday PC use.

From an installation gone wrong to an unexpected shutdown, commonly generated data errors are considered the main culprit behind error codes.

Further Information and Manual Repair

Just like most PC error codes, Error Code 37 isn’t that difficult to get rid of. There are many DIY methods you can try to have your PC running smoothly in no time. Here are a few methods to resolve this issue:

Method 1: Restart your PC

It is possible that the display of the error code is merely due to a temporary issue with your peripheral device and not anything serious.

Therefore, the quickest and easiest method to solve the error code 37 is to simply restart your PC.

Method 2: Scan for Viruses

If restarting does not do the trick, a quick scan for viruses and removing them is another simple method you can follow to fix your PC.

Since the error code is due to corruption of data, viruses such as malware or spyware create error in your PC’s registry and eliminating them can help restore some of the corrupt data, which also speeds up your PC.

Method 3: Undo recent changes

A possible explanation for the error code may be the recent changes in your Device Manager or due to the peripheral device installation. You can thus undo the changes by either:

  • Remove or change settings of the installed peripheral device
  • Roll back the version of the driver to the one before the update.
  • Use System Restore to reverse the changes made in the Device Manager

Method 4: Manually uninstall and reinstall the drivers

If the above stated methods do not help in speeding up your PC and is still giving you an error code, you may want to manually uninstall and reinstall the corrupt or missing drivers. Here are the following steps:

  • Double-check if the installed external device is properly connected and working smoothly
  • Open Device Manager and double click on the device that is causing problems
  • When it opens, click on the ‘Driver’ tab and click ‘Update Driver’

Method 5: Use DriverFIX

However, updating the missing or corrupt drivers can be time consuming and may also require having a hardware documentation ready that contains specific details about the driver that you should download.

To avoid this time-consuming process, you can use DriverFIX software.

DriverFIX will help you to download the required driver without you having to waste your precious time and effort looking it up in a user manual. This latest software technology is embedded with its own database that tracks the missing or corrupt driver according to your PC’s motherboard version and specific details.

It is user-friendly, which means that it will relieve you from the frustration of such PC error codes appearing from time to time and enable your PC to work efficiently in no time.

Click here to download DriverFIX to resolve Device Manager error code 37 today!

Read More
How to Fix Ehshell.exe Application Error Code

Ehshell.exe Application Error - What is it?

Ehshell.exe is a type of .exe (executable file). This file functions as an essential component of the Microsoft Media Center.  By default, it is located in a subfolder of C:\Windows. Ehshell.exe application error is an error code that pops up when tasks in the Media Center freezes. The Ehshell.exe application error is usually displayed on the screen in the following format:
“ehshell.exe – Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process id=0xa18 (2584), Thread id=0xa24 (2596).”

Solution

Restoro box imageError Causes

Ehshell.exe application error is triggered when PC users perform repetitive tasks in Media Center on a Windows XP Media Center Edition. The computer stops to respond and the error message is displayed. This error occurs if users perform one or more of the following repetitive tasks in the Media Center:
  • Repeated resize, restore and minimize the Media Center Window
  • Schedule TV shows to record
  • Repeatedly change the channel while Media Center is in a window
  • Ehshell.exe file corruption due to malware infection or registry issues
Though this is not a fatal error, to avoid any kind of inconvenience, it is advisable to fix the error right away.

Further Information and Manual Repair

To fix the ehshell.exe application error on your system, you don’t have to hire a professional and spend hundreds of dollars on repair. Here are some of the best and most effective do-it-yourself methods that you can try to resolve this issue on your PC immediately.

Method 1 - Install the Latest Service Pack for Microsoft Windows

To repair the issue, install the latest Windows service pack. A service pack is basically a Windows update, often combines previously released updates that help make Windows more reliable. These are offered free of charge on Microsoft’s official website.  To get started, simply log on to Microsoft’s official website and download the latest service pack compatible with your Windows version. The installation process may take 30 minutes to install. And you will be prompted to restart your PC about halfway through the installation process. Once the Windows Service Pack is installed, the ehshell.exe application error will be fixed. If the error still persists, then try method 2.

Method 2 - Scan for Malware

Ehshell.exe application error may also appear on your PC due to malware infection. Malware programs like viruses, Trojans, and worms deliberately give their malicious processes similar .exe file names, so it is hard to identify the malware. In such an event, it is advisable to download a powerful antivirus and scan your entire PC. Run it to remove all the hidden malware programs on your system. Once malware is removed, the ehshell.exe application error will be resolved.

Method 3 - Clean Registry

Sometimes .exe files can also get corrupt when the registry gets overloaded with unnecessary and obsolete files. If this is the underlying reason for the error code occurrence then it is advisable to download Restoro. This is a multi-functional and user-friendly PC Fixer deployed with a registry cleaner. It removed all the unnecessary files, cleans and repairs the registry in seconds thereby fixing all registry-related errors. Click here to download Total System Care and resolve the Ehshell.exe application error on your PC.
Read More
How to Fix Application Load Error 5:0000065434
When it comes to downloading and installing games in the Windows operating system, Steam is one of the well-known sources. You can find many big titles in Streams such as PUBG, Heaven Vaults, and a whole lot more. It is undeniably a great source of getting games in the Windows operating systems. However, just like other software, Steam is not immune to errors as you could encounter errors while using it. This isn’t caused by a bad code but also due to reliance on various factors in both respects to the software and hardware. One of these errors is the Application Load Error 5:0000065434. This kind of error can appear when you launch numerous game titles on your Windows 10 computer like Skyrim, Oblivion, Bully, Morrowind, Vortex, and many more. To fix this application error in Steam, you can try to copy the Steam executable file or use the Command Prompt. You could also try to verify the integrity of the game files feature or delete any conflicting files on your computer.

Option 1 – Try copying the Steam executable file

The first thing you can do to fix the error is to copy the executable file of Steam.
  • First, right-click on the desktop shortcut of steam located on your Desktop and click on the “Open file location” option.
  • After that, copy the executable file for Steam and navigate to the folder of the library of the games which is usually located in SteamSteamAppsCommon
  • Now paste the Steam executable file you just copied inside the folder of the game and see if it fixes the error or not.

Option 2 – Try to use the Command Prompt

  • In the Start Search, type “command prompt” and right-click on Command Prompt from the search results and then select the “Run as administrator” option.
  • After opening Command Prompt as administrator, execute the following command:
cd "C:Program Files (x86)Steamsteamappscommon" mklink "steam.exe" "C:Program Files (x86)Steamsteam.exe"
  • The command you entered will create a link between the executable file of Steam to the operating system. Once you see a message that states, “Operation completed successfully”, restart your computer.

Option 3 – Try to use the “Verify integrity of the game files” feature

The next thing you can do to get rid of the error is to use the “Verify integrity of the game files” feature. How? Refer to these steps:
  • Open Steam and right-click on the entry of the game where you encountered the error in the Library and then select Properties.
  • After that, navigate to the LOCAL FILES tab and click the “VERIFY INTEGRITY OF GAME FILES” button.
  • Wait for the process to be completed and see if the feature has helped in fixing the error or not.

Option 4 – Try to delete any conflicting files

The error might be caused by some conflicting files on your computer which is why you have to delete them. To do that, follow these steps:
  • Open the Documents folder and look for the folder created by the game that’s throwing the error. For instance, it could be stored in the “My Games” folder.
  • Next, delete the folder and then try to launch the game again and see if the error is now fixed.
Read More
Makecab.exe is running & consuming CPU
The Makecab.exe process that’s running on your Windows 10 computer is a program that compresses the Component-Based Servicing log or CBS log files and they can get really huge if they’re not compressed. As a result, it would utilize important space on your operating system although makecab.exe does not consume high CPU resources in doing so. However, there are times when it recreates thousands of instances of itself and could cause overconsumption of system resources which slows down your computer. So when the makecab.exe process causes high CPU usage in your system, this could mean that there is a failed Windows Update. In addition, the high CPU usage of the makecab.exe process could also mean that your computer is infected with a virus or malware. Whichever the case is, you can check out several possible solutions that are given in this post to resolve the problem.

Option 1 – Try to delete log file using File Explorer

The CBS log files could reach up to 20GB size and so if you delete them, it would help in saving space in your computer and since they’re not much of use, deleting them won’t negatively affect the system at all. To delete the CBS log files, all you have to do is open the File Explorer and then go to C:/Windows/Logs/CBS and from there, open the CBS log files and delete them all. Doing so should ease the load in the makecab.exe process since it no longer has to compress the CBS log files. As a result, the process would be more relaxed. After that, you can restart your computer and check if the problem’s now fixed.

Option 2 – Try deleting the log file via Command Prompt

You can also try to delete the log files using an elevated Command Prompt. Refer to these steps to do so:
  • Type “command prompt” in the Windows Search bar and then right-click on the related search result and select the “Run as administrator” option.
  • Next, type the following command and hit Enter to execute it:
del /f %windir%logscbs*.log
  • Restart your computer afterward once the command has been executed. This should end the high disk usage by makecab.exe, if not, proceed to the next given options below.

Option 3 – Uninstall any suspicious programs you’ve installed recently

If you have recently installed some programs on your Windows 10 computer, and since then you’ve experienced high CPU usage brought on by makecab.exe, then you might want to uninstall those programs.
  • Tap the Win + R keys to open the Run dialog box
  • Then type “appwiz.cpl” in the field and hit Enter to open the Programs and Features in Control Panel.
  • From there, look for the suspicious programs you’ve installed, select them and then click on Uninstall to remove them.
  • After that, restart your computer and try to install the latest version of the program again. It should work now. If not, proceed to the next available option below.

Option 4 – Try running Disk Cleanup

You might want to run the Disk Cleanup utility as it is a useful tool that could delete temporary and useless files on your computer.
  • Tap the Win + R keys to open the Run dialog box and then type “cleanmgr” in the field and hit Enter to open the Disk Cleanup window.
  • After that, select the drive you want to clean.
  • Now click OK to clean the disk and restart your computer.

Option 5 – Try to run System File Checker scan

System File Checker or SFC is a built-in command utility that helps in restoring corrupted files and missing files. It replaces bad and corrupted system files to good system files. To run the SFC command, follow the steps given below.
  • Tap Win + R to launch Run.
  • Type in cmd in the field and tap Enter.
  • After opening Command Prompt, type in sfc /scannow
The command will start a system scan which will take a few whiles before it finishes. Once it’s done, you could get the following results:
  1. Windows Resource Protection did not find any integrity violations.
  2. Windows Resource Protection found corrupt files and successfully repaired them.
  3. Windows Resource Protection found corrupt files but was unable to fix some of them.
  • Restart your PC.

Option 6 – Try scanning your computer using Windows Defender

As mentioned, the high CPU usage of makecab.exe might be caused by some malware or virus in the system and so to eliminate it, you have to scan your computer using security programs like Windows Defender.
  • Tap the Win + I keys to open Update & Security.
  • Then click on the Windows Security option and open Windows Defender Security Center.
  • Next, click on Virus & threat protection > Run a new advanced scan.
  • Now make sure that Full Scan is selected from the menu and then click the Scan Now button to get started.
Read More
Fix Windows Update Error 0x80244007
Getting errors while trying to update your Windows 10 computer is not an uncommon occurrence. Although some of them are easy to fix, there are others that need a lot of time and research in order to resolve. One of these tough Windows Update errors is Error 0x80244007. This kind of Windows Update error halts the process of Windows Update and a simple system restart won’t help much to fix it. When you encounter this Windows Update error, you will see a description that says, “SOAP client failed because there was a SOAP fault for reasons of WU_E_PT_SOAP_* error codes”. One of the main causes of such an error is that Windows was not able to renew the cookies for Windows Update. To fix this error, here are some suggestions that might be useful.

Option 1 – Clear up temporary or junk files

The error could be caused by some temporary or junk files in your computer and so you need to clear them up to fix the problem. You can achieve that using the Storage Sense feature.
  • Open Setting > System > Storage from the WinX Menu.
  • From there, you will see a list of all the local and connected storage devices along with the details on the free space. Make sure that Storage Sense is on.
  • Next, find a link that says “Free Up Space” and click it to open.
  • After that, a screen which is the built-in program in Windows 10 will appear and will scan your computer for the following junk files so you can free up disk space:
    • Windows Upgrade Log Files
    • The system created Windows Error Reporting Files
    • Thumbnails
    • Temporary Internet Files
    • Previous Windows Installation Files
    • Delivery Optimisation Files
    • DirectX Shader Cache
  • Choose the files you want to get rid of and then click on the remove files option. Note that you’ll have an idea of the total size as you select any of the junk files listed above.
  • Now go to the “Free Up Space Now” section and click the Clear Now button. This will get rid of all the temporary or junk files in your computer and should hopefully fix the Windows Update error 0x80244007.

Option 2 – Try running the Windows Update troubleshooter

Windows 10 have various troubleshooters that can help you resolve many system issues. So if you’re dealing with Windows Update errors like Error 0x80244007, you can run the Windows Update troubleshooter to resolve it. 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. After that, follow the next on-screen instructions and you should be good to go.

Option 3 – Try to reset the Windows Update components

If by any chance that the second option didn’t work, resetting the Windows Update components could also help you resolve the problem. How? Refer to the following steps:
  • Open Command Prompt with admin privileges.
  • After that, type each one of the following commands and hit Enter after you key in one after the other.
    • net stop wuauserv
    • net stop cryptsvc
    • net stop bits
    • net stop msiserver
Note: The commands you entered will stop the Windows Update components such as Windows Update service, Cryptographic services, BITS and MSI Installer.
  • After disabling WU components, you need to rename both the SoftwareDistribution and Catroot2 folders. To do that, type each one of the following commands below and don’t forget to hit Enter after you type one command after the other.
    • ren C:WindowsSoftwareDistribution SoftwareDistribution.old
    • ren C:WindowsSystem32catroot2 Catroot2.old
  • Next, restart the services you’ve stopped by entering another series of commands. Don’t forget to hit Enter after you key in one command after the other.
    • net start wuauserv
    • net start cryptsvc
    • net start bits
    • net start msiserver
  • Close Command Prompt and reboot your PC.
Read More
Fix Windows defender 0x800700AA Error
Windows defender error 0x800700AA, service can not be started comes when the user is trying to run Windows defender scan on their system. This kind of behavior happens for two reasons mostly, third-party application conflict or corrupted system files. In this article, we will tackle both scenarios and provide you with solutions in both cases.

Third-party application conflict

In this rare scenario when Windows defender can not start scan due to conflict with installed service or application in the system solution is quite simple. Restart your PC into safe mode and run the scan from there. In a safe mode environment, minimum drivers and services are only loaded eliminating any conflicts that might occur when everything is booted. If Windows defender can not run the scan in safe mode and you get the same 0x800700AA error then you can eliminate application conflict as a reason and move to the next solution which will tackle corrupted system files. If you, however, managed to run a scan then you have a rare third-party application conflict, you can boot normally into windows and try to eliminate one by one to see which one is causing the issue. The safest bet would be to start with security software because most of the time that is what causes conflicts in running services and applications.

Corrupted system files

If the previous solution has not provided you with results then you have system file corruption that needs to be fixed. Move from one solution to another as presented below:
  1. Run SFC scan

    SFC scan is a built-in Windows tool for solving corrupted system files issues, it is fully automated and does not require from the user any kind of knowledge or information. To run it and scan the system do the following: Press ⊞ WINDOWS + X to open the secret menu Left-click on the command prompt (admin) In command prompt type SFC /SCANNOW and press ENTER Wait for the process to finish, do not interrupt it and once it is done, restart your computer
  2. Run DISM scan

    DISM scan is similar to SFC scan but it tackles different types of system file corruption and it is recommended to run it also after SFC has been completed. Please note that for DISM scan to be successful you will need a stable internet connection since DISM will replace corrupted files with new ones downloaded from Microsoft. To run it do the following: Press ⊞ WINDOWS + X to open the secret menu Left-click on the command prompt (admin) inside command prompt type: exe /online /cleanup-image /scanhealth followed by ENTER, then type: Dism.exe /online /cleanup-image /restorehealth also followed with ENTER. Leave scan to finish and reboot your PC
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