Logo

Installation failed in the SAFE_OS phase

If you are trying to install a Windows 10 upgrade but was interrupted with an error saying, “0x80070003 – 0x2000D, The installation failed in the SAFE_OS phase with an error during MIGRATE_DATA operation”, then you’ve come to the right place as this post will help you sort this problem out.

When you get this kind of error while trying to upgrade your computer, although there could be various reasons for this, the primary one is that when you upgrade from one update to another, something stopped the upgrade process to migrate the user data. To fix this error, you can try to run both the DISM tool and the System File Checker to automatically repair any corrupted system files. You could also try checking the free storage space of your primary drive and if you have any file lock apps like BitLocker, consider disabling them for they could also be the reason why you’re getting the error.

Option 1 – Run the DISM tool

Running the DISM Tool helps in repairing the Windows System Image as well as the Windows Component Store in Windows 10 which might be the reason behind the Windows Upgrade error 0x80070003 – 0x2000D. Using this built-in tool, you have various options such as the “/ScanHealth”, “/CheckHealth”, and “/RestoreHealth”.

  • Open the Command Prompt as admin.
  • Then type in this command: exe /Online /Cleanup-image /Restorehealth
  • Do not close the window if the process takes a while as it will probably take a few minutes to finish.
  • Once it’s done, restart your computer and then check if the issue is resolved or not on the next startup.

Option 2 – Run the SFC scan

The SFC or System File Checker scan could detect and automatically repair damaged system files that could be causing the Windows Upgrade error to appear. SFC is a built-in command utility that helps in restoring corrupted files as well as 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 and hit Enter.

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.
  • Reboot your PC.

Option 3 – Try checking the free storage space on your primary drive

The next option you can try to resolve the error is to see if you have enough free storage space on the primary drive because if you don’t then it’s probably the reason why you’re getting this error. To fix it, you need to free up some storage space by following these steps:

  • 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.
  • Now make sure that the Storage Sense feature is turned On then go 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
  • System created Windows Error Reporting Files
  • Thumbnails
  • Temporary Internet Files
  • Previous Windows Installation Files
  • Delivery Optimisation Files
  • DirectX Shader Cache

Note: Once you’re done freeing up space on your drive, try to run the setup file again.

Option 4 – Try disabling BitLocker and other file lock apps

If you are using BitLocker or other file lock apps, then it could be the reason why you’re getting the error. Usually, file lock apps don’t cause any kind of issue, however, if you have something that works on file level like BitLocker, you can try to disable it. Once you’ve disabled it, try to install the Windows 10 Upgrade again and after you do, enable BitLocker again. This should fix the problem.

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

Can’t type in Win apps, Search, Cortana, etc.
If you are typing inside the Search bar, Cortana, Taskbar, Windows 10 apps, etc., and then everything seems invisible then read on as this post will guide you in fixing this issue. At first, you might think that something is wrong with your keyboard but it really has nothing to do with it. The problem actually lies with the apps from Microsoft Store. Thus, if you can’t type anything in any of the apps from Microsoft Store in Windows 10, refer to the options given below to fix them.

Option 1 – Ensure that ctfmon.exe is running

Ctfmon.exe is a Microsoft process in Windows 10 that controls the Alternative User Input as well as the Office Language bar. In other words, it enables end-users to control the computer using on-screen keyboard inputs, speech, and even pen for various languages. It would be better if you launch the program once by going to the C:/Windows/system32 folder. Doing so will ensure that whatever API is needed for the keyboard typing to work properly again. You also have to make sure that its startup status is not disabled. In addition, you can also try the following steps, alternatively.
  • Open the Task Scheduler.
  • Then go to Microsoft > Windows > TextServicesFramework.
  • And on the MsCtfMonitor, right-click and enable the task.
  • Now restart your computer.
This will ensure that all the text boxes will start to work again. And if the task MsCtfMonitor is missing from the list of tasks, you can import it with the XML file from basics.net. Then download and create a task to run it each time you log in to your PC.

Option 2 – Use the Windows Store Apps Troubleshooter

You might also try running the Windows Store Apps Troubleshooter as it can help in resolving issues with the Windows Store apps. This built-in tool can resolve most of the app-related problems. To use it, go to Settings > Update & Security > Troubleshooting > Windows Store Apps and from there, click the start the troubleshooter button. The Windows Store Apps Troubleshooter will scan the computer for any issues with the Windows store apps and will automatically fix them if it finds any.

Option 3 – Re-register all the Windows 10 UWP apps using PowerShell

  • First, make sure to close all the running applications on your computer.
  • Next, in the Start search, type in PowerShell and right click on the result, and select the “Run as administrator” option.
  • After that, type the following commands to re-register the Windows 10 apps. Make sure to hit Enter on each line:
    • reg delete "HKCUSoftwareMicrosoftWindows NTCurrentVersionTileDataModelMigrationTileStore" /va /f
    • get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "appxmetadataappxbundlemanifest.xml")}
    • $bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname
    • get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "appxmanifest.xml")}

Option 4 – Try to run the DISM tool

You can also run the DISM Tool as it helps in repairing the Windows System Image as well as the Windows Component Store in Windows 10. Using this built-in tool, you have various options such as the “/ScanHealth”, “/CheckHealth”, and “/RestoreHealth” which could help in fixing the problem.
  • Open the Command Prompt with admin privileges.
  • Then type in the following commands and make sure to hit Enter right after you type each one of them:
    • Dism /Online /Cleanup-Image /CheckHealth
    • Dism /Online /Cleanup-Image /ScanHealth
    • exe /Online /Cleanup-image /Restorehealth
  • Do not close the window if the process takes a while as it will probably take a few minutes to finish.

Option 5 – Run the System File Checker Scan

System File Checker or SFC is a built-in command utility that helps in restoring corrupted files as well as 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.
Read More
A Quick Guide to Resolving Uncdms.dll Error Code

Uncdms.dll Error Code - What is it?

Uncdms.dll is a Dynamic Link Library file and a crucial part of the Windows Desktop Search Software. It is used to search emails, documents, photos, videos, and folders instantly. However, the Uncdms.dll error pops on the screen, when the Windows Desktop Search Software fails to start. The error message is displayed in one of the following formats:
  • “Uncdms.dll cannot be found.”
  • “Windowssearch.exe – cannot find the component. This application has failed to start because uncdms.dll was not found. Reinstalling the application may fix the problem.”
  • “The file uncdms.dll is missing.”

Solution

Restoro box imageError Causes

Uncdms.dll error code may pop on your screen due to multiple reasons. These usually include but are not limited to:
  • Viral infection
  • Issues with Windows Desktop Search
  • Registry corruption
  • Uncdms.dll accidentally deleted during program un-installation

Further Information and Manual Repair

If you experience an Uncdms.dll error code on your system, fix it right away. This error is easy to resolve. You don’t have to be technically sound to resolve the uncdms.dll error code. Try the methods listed below to resolve without any hassle:

Method 1 - Check Your Recycle Bin and Restore the Deleted Uncdms.dll File

Since DLL files are shared files, there is a possibility that you accidentally deleted them while uninstalling some other program. To fix the issue, simply go to the recycle bin and look for the file. If you locate it, reinstall it. If you can’t, then it is advisable to download the Uncdms.dll file from a trusted DLL file website.

Method 2 - Uninstall and Then Re-install Windows Desktop Search

If the error code is related to issues with the Window Desktop Search application, then simply uninstall this software and re-install to resolve. To do this, click the start button, go to the control panel and then add/ remove programs. Now choose Windows Desktop Search from the list of programs and click Remove. After that, reboot your PC to activate changes. Now download the software and follow the same process and reinstall the Windows Desktop Search program on your PC. To activate changes, reboot. This will hopefully resolve the issue.

Method 3 - Update Windows

As this file is included in the service pack, try updating the Windows Utility to resolve the Uncdms.dll error code. To get started, click start and then go to the control panel, now choose Windows update. Follow the instructions to install Active X and then click install to update Windows Utility. Restart your system to bring the changes into effect.

Method 4 - Scan for Viruses and Repair the Registry

Whether the underlying cause of the Uncdms.dll error code is viral infection or registry corruption, it is advisable to download Restoro. It is an advanced and multi-functional PC Repair Tool integrated with 6 powerful utilities including antivirus and a registry cleaner. It scans and removes all types of viruses. The registry cleaning utility works simultaneously and removes all the unnecessary files corrupting the registry including cookies, temporary files, internet history, and junk files, and repairs it in seconds, thereby resolving the Uncdms.dll error immediately. Click here to download Restoro - PC Fixer
Read More
How to Patch Windows Error Code 45

Error Code 45 – What is it?

Error Code 45 is a common device manager problem that users encounter on any Windows 2000 and later operating system versions.

The error occurs when your Windows system fails to acknowledge the connected device by either stating that the device is not present or that it was previously attached to a computer.

The error pops up and appears on your computer screen with the following message:

“Currently, this hardware device is not connected to the computer” (Code 45)

Solution

driverfix boxError Causes

The error is prompted either due to a temporary system file malfunction or a problem in the Windows registry system files. In the latter case, it could be due to a damaged or corrupted Windows registry.

Further Information and Manual Repair

While it may appear that Error Code 45 is a serious threat to your computer, it cannot be farther from the truth. Error Code 45, unlike other error codes, is the easiest one to fix. Here is how you can do it.

Method 1 – Reconnect the device to your computer

Unplugging and plugging the USB cable of the device into the computer is the easiest way to solve the error.

Doing this will help refresh the system and increase the likelihood of the device driver files loading and function properly.

It is often only a case of reconnecting the device back to your computer which helps eliminate the error and does not require any particular resolution other than this.

Method 2 – Install DriverFIX

Although reconnecting the disconnected device is all you need to fix the error code, it is always safer to fix your Windows registry system files by using a program like DriverFIX.

DriverFIX, with its user-friendly approach to help you fix your PC issues, comes with an integrated database that detects which drivers you need to reconfigure within just a few seconds and downloads it automatically.

It further ensures that your drivers are installed in their entirety leaving no room for any corrupted or damaged registry.

It also has the added advantage of being able to backup and restores your files should there be the slightest possibility of system file damage.

Thus, registry damage can be averted by letting the software roll back the system files to an earlier healthy checkpoint. DriverFIX is the answer to fixing your PC error codes accurately and quickly.

Click here to download DriverFIX now!
Read More
iPhone Connects/Disconnects When Plugged In
If you own an iPhone, iPad, or iPod you might be aware of the phenomenon of connecting and disconnecting your device. In one moment device is connected and then it somehow loses connection and you have to plug in back again to be recognized. In this troubleshooting guide, we will address ways to eliminate this issue and to connect and have your devices working properly. We will go from the most common ones to the most uncommon so it is advisable to try solutions in order to how they are presented.
  1. Check cable

    The most common issue with this kind of behavior comes from a broken cable if you have the opportunity try another working cable to see if the device will behave differently. If everything is working fine with another cable, the issue is in the previous cable.
  2. Check USB ports and Cable Jack

    Usually, it is a cable issue, but it can also be a USB jack on cable or even a USB port on a PC, try putting the jack into another port to see if this will solve the issue.
  3. Check device settings

    From updates on your device comes a change of setting about privacy which can reflect on connection with the computer. In order to eliminate this, you will need to reset your device. Go to device settings and go to general Scroll down until you find the reset section and go into it In the reset, section click on reset location and privacy You will have to authenticate using your pin/passcode in order to complete the reset function Enter your passcode (or use any other authentication method you have chosen) and you can now reset the Location and Privacy settings. Click on reset Connect the device to PC and choose trust this device
  4. Update iTunes

    Outdated iTunes can also be a problem with this particular issue. Go to the apple website and download the latest version of iTunes or updating it via apple updater.
Read More
Steam beta introduces no rollback game updates
The latest steam beta update has introduced code that will prevent downloading and installing previous game versions via the steam client. steamFor many people that are playing online games, this is not such a big deal since they always must have the latest version in order to play their games but for other ones, this has arrived as a bit of a problem. Many people preferred older game versions since often updates can change certain mechanics inside the game making it different as an experience or introduce some elements that not everyone likes. So far, people could use the steamDB site to find depo of the game versions you would like to play and download it but if this beta code goes live that will not be an option anymore. Now, playing old games without updates could also be used for nostalgic reasons and these people have also been cut off with this update. It is important to point that update is still in beta client only but users have already started to voice their opinions asking Valve not to place it live. In the end, it will all depend on Valve’s decision will they listen to their customers or decide to push updates on live service.
Read More
How to Fix CPU Not Compatible Error Message On Windows 10

CPU Not Compatible – What Is It

Some users wanting to upgrade to Windows 10 from Windows 7 or Windows 8.1 experienced errors with installation. One of these errors is CPU Not Compatible. When you click and run the “Get Windows 10” from your system tray bar, you’ll receive the “CPU is not compatible with Windows 10” error. When this happens, it might be good to check if there’s a bug or if your NX feature (a requirement for the Windows 10 installation) is enabled.

Solution

Restoro box imageError Causes

The “CPU is not compatible with Windows 10” error normally occurs when:

  • NX feature is not enabled
  • You experienced the Windows 10 bug

Further Information and Manual Repair

To successfully upgrade to Windows 10, your CPU must support Physical Address Extension (PAE), SSE2, and NX features. If any of these features are not activated on your system, it’ll cause the CPU not compatible error. However, some users still reported experiencing this error even though their CPU has these features activated. Normally, this is due to the bug that Windows acknowledged.

If any of these two scenarios apply to your computer, the following methods will help you fix the problem:

Method 1 – Check for bugs

The bug applies to some Windows 7 and Windows 8.1 systems. The bug occurs when the “Get Windows 10” app fails to recognize CPUs as being compatible. This produces a false negative result with a message, “Here’s why Windows 10 cannot be installed on this PC: The CPU isn’t supported”. To fix this bug, Microsoft released an update.

Unfortunately, the patch update (KB2976978 for Windows 8/8.1 and KB2952664 for Windows 7 SP1) to fix the bug may not be automatically downloaded to your computer. If this is the case, you need to verify first if the patch was installed correctly. To do this, follow the steps below:

  1. Click ‘Start’ and type in View Installed Updates. The “View installed updates” icon should appear. Click the icon.
  1. Go to the Search bar (Top right portion) then type the patch name for your system. Make sure that you type the correct patch name for your system since Windows 7 and Windows 8/8.1 have different names. If you find the patch, it means it’s already installed. You can now upgrade to Windows 10 without the CPU not-compatible error.
  1. But, if you can’t find it you need to install the patch manually.
  1. Go to Windows Update then click the “Check for Updates” button.
  1. Browse through the available updates and look for KB2976978 for Windows 8/8.1 or KB2952664 for Windows 7 SP1
  1. Download the right patch. You may need to reboot your system once it’s done.
  1. The downloaded patch should be applied after a day or two with the Windows Task Scheduler. Once the patch is applied, you can now upgrade to Windows 10.

Method 2 – Check CPU features and activate them if needed

A major requirement for Windows 10 upgrade is for the CPU to have Physical Address Extension (PAE), SSE2, and NX features enabled on your system. If you receive the CPU not compatible error, one possible cause is that any of the mentioned features are not available OR not enabled on your system. Here’s how you can fix this:

  1. Verify if your CPU supports the three instruction sets. You can use software that provides information like this. If all three are available, proceed to the next step.
  1. Go to your computer’s BIOS. To do this, reboot your computer. You will need to press a key specific to your computer’s manufacturer (usually it’s F12, F8, F2, or DEL).
  1. Look for the NX (No Execute Bit) settings. This is normally found in the “Advanced Configuration” menu, or something similar to this. Just take note that the NX setting can be named differently in BIOS. Some other names include EDB (Execute Disabled Bit), EVP (Enhanced Virus Protection), Execute Disabled Memory Protection or No Excuse Memory Protect.
  1. Once you’re in the NX settings, make sure that it’s enabled.
  1. Exit the BIOS and SAVE your changes.
  1. Boot your computer normally, then try upgrading to Windows 10 again through the “Get Windows 10” app found in the system tray.

Method 3 – Force enabling NX Bit

If changing the settings in your BIOS doesn’t do the trick, your final option is to force enable the NX bit in your Windows system. However, this is only applicable IF and ONLY IF your CPU does support it. To force enable NX bit, do the following:

  1. Click Start and go to command prompt (Type “cmd” – no quotes) and press enter.
  1. Copy and paste the text below to the command prompt.bcdedit.exe /set {current} nx AlwaysOn
  1. Execute the command. You will need to reboot your computer once this is done.
  1. Download and install Windows 10

Method 4 – Use a trusted automated tool

If you still experience the error after doing the methods above, you might want to try a powerful and trusted automated tool to fix the job.
Read More
Apple M2 Chip review

Direct replacement for Apple M1 Chip is near. There were some M1 Chips versions like M1 MAX and M1 ULTRA that were upgrades of the existing M1 chip, but the new and upcoming M2 is something different and it is aiming to replace M1 completely.

apple m2 chip

Made in a 5-nanometer design, with 20 billion transistors and 100GB/s of unified memory bandwidth is meant to increase performance over M1. It has the same M1 8 core design with 4 high-efficiency cores and 4 high-performance ones.

All CPU and GPU cores are faster than their M1 equivalents and Apple states that when running M1 and M2 at the same power level M2 will perform 25% faster. The first version of the chip will place focus on power efficiency so if you are more on side of being a power user wait for the MAX or ULTRA version of M2.

Tech details of M2

M2 system on a chip like its predecessor M1 combines both CPU and GPU on a single chip with shared memory in order to increase performance compared to systems that have separate CPU and GPU. M2 so far has been only announced for MacBook Air and the 13-inch MacBook Pro that suppose to hit the market somewhere around July this year. Of course, we expect that M2 is included in future iPad series or Mac Mini series as well.

  • CPU Cores: 8
  • GPU Cores: Up to 10
  • Unified Memory: Up to 24 GB
  • Neural Engine Cores: 16
  • Number of Transistors: 20 billion
  • Process: Second Generation 5nm
Read More
How to Fix Missing MSVCR80.dll Error

Missing MSVCR80.dll Error - What is it?

Msvcr80.dll is a runtime dynamic link library file. This file is typically required to run programs written with Visual Studio. Msvcr80.dll error messages might appear when using or installing certain programs on your PC, that are dependent on the Msvcr80.dll file to run and load. This error message may appear on your computer screen in either of the following formats:
  • "Msvcr80.dll Not Found"
  • "This application failed to start because msvcr80.dll was not found. Re-installing the application may fix this problem."
  • "The file msvcr80.dll is missing."
  • "Cannot start [APPLICATION]. A required component is missing: msvcr80.dll. Please install [APPLICATION] again.
  • "APSDaemon.exe - System Error - MSVCR80.dll is missing from your computer."
  • "Cannot find [PATH]msvcr80.dll"

Solution

Restoro box imageError Causes

Msvcr80.dll error is a common Windows PC error. This error code may occur due to multiple reasons. These include:
  • Removal and corruption of Msvcr80.dll file
  • Registry issues
  • Viral infection
  • Hardware failure
  • Improper software installation
It is advisable to resolve this error code to avoid inconvenience. This error may hamper your ability to access and run your desired program.

Further Information and Manual Repair

Here are some of the best and easiest DIY solutions to fix the Msvcr80.dll error on your PC right away:

1. Check your Recycle Bin for the Missing Msvcr80.dll file or Download the Msvcr80.dll file from a Trusted Website

If you receive the error message ‘missing Msvcr80.dll file’ then first check the recycle bin. It is possible that you may have unknowingly deleted the Msvcr80.dll file while uninstalling a program from the PC. Remember dll files are shared files. These files are used by a number of programs on your PC to run and load. There is a possibility that the program you uninstalled shared the same file to run on your PC. So, when removing that program from your PC it could have also deleted the Msvcr80.dll file. Therefore, check your recycle bin to restore the missing file. Nonetheless, if in case you are unable to locate the missing Msvcr80.dll file, then try downloading it on your PC. However, when doing so, make sure you download the file from a reliable dll download website.

2. Uninstall and Reinstall Apple iTunes Program

This error commonly pops up when running Apple iTunes on your PC. To resolve this issue, and ensure smooth access to Apple iTunes, here’s what you need to do: uninstall from Windows the following programs in this order: Apple iTunes, Software update, Apple Mobile device support, Bonjour, application support, iCloud and mobile me. Skip over software that you haven’t installed already on your system. When uninstalling the programs, if you have two entries of the same software, then uninstall the older version first and then the newer one. To do so, go to Applet in the Control Panel.  It is called programs and features in Windows 7, 8, and Vista and add/remove programs in Windows XP. Once all Apple software is uninstalled, the next step is to download the latest version of iTunes from Apple. After the software is downloaded on your system successfully, run it. This is most likely to resolve the issue.

3. Scan for Viruses

If the issue still persists, then the underlying cause could be related to malware invasion. Therefore in such circumstances, it is advisable to scan for viruses and malware with a powerful antivirus on your PC and remove them right away. Please note, using an antivirus may slow down your PC performance.

4. Perform Registry Scan and Repair

When the registry is overloaded with unnecessary and redundant files like junk files, cookies, invalid entries, and bad keys, it gets corrupted easily thereby generating errors like Msvcr80.dll errors. To resolve this issue, you must perform a registry scan and repair it with a powerful registry cleaner. Whether the cause of the issue is a viral infection or the cause is related to registry problems, the best way to resolve the issue without compromising the speed of your system is to download Restoro. This is an advanced, cutting-edge, and multi-functional PC repair tool. It is compatible with all Windows versions. This software is embedded with multiple PC repair and performance-boosting utilities such as a registry cleaner, an antivirus, and a system optimizer. It has a high functional intuitive algorithm and a user-friendly interface. The registry cleaning feature detects all registry issues, wipes unnecessary files, cleans and repairs the corrupt registry and damaged dll files. The antivirus utility scans for all types of malware, viruses, Trojans, and spyware and removes them immediately. While the system optimizer module helps boost your computer’s performance to its optimal level.  In just a few simple clicks, the Msvcr80.dll error is resolved. To get started, click here to download Restoro on your PC today!
Read More
What to do if the Windows 10 Control Panel is not opening
The Control Panel is one of the most important tools in Windows which allows users to control and change various settings. However, there are cases when it experiences some problems like when users aren’t able to open it. Recently, a lot of users complained about not being able to open the Control Panel. To be more specific, users were able to open it but only lasted for a second, and then it’s gone. This is not just some issue you can ignore as this will prevent you from accessing some major settings in your computer and you won’t be able to perform some important task without it. According to security experts, this issue is most likely caused by a bug in the Windows Update. If you have installed an update recently, then it’s most likely the culprit. Aside from the Windows Update, there are also other things that can cause this issue. Some of them are the IDT audio panel and a control panel file that causes conflicting issues with the control panel that leads to this problem. Aside from these aforementioned cases, the Windows Error reporting services could also be one of the causes of this issue. As you can see, since there are a lot of possible causes for this problem, this post prepared a lot of options as well which you have to check out. Follow each one of them and see which one worked best for you.

Option 1 – Try updating your Windows 10 PC

If you haven’t updated your PC to the latest version of Windows 10, then you should. A lot of users found that the issue with the Control Panel was fixed right after they updated their Windows 10 PCs. This is probably because Microsoft has probably released a fix on one of the latest updates.

Option 2 – Try uninstalling the IDT Audio Panel

For some users, uninstalling the IDT Audio Panel from their PCs did the trick. You can also try doing the same thing to fix the vanishing Control Panel. According to these users. The IDT audio panel was the one that’s causing the issue. To uninstall the IDT audio panel, here’s what you have to do:
  • Tap the Win + R keys at the same time to open the Run dialog box.
  • Then type in “appwiz.cpl” in the field and tap Enter to open the “Uninstall or change a program” screen of the Control Panel.
  • From there, look for the IDT audio panel, select it and then select the Uninstall option and follow the next on-screen instructions that appear.
Note: If you are unable to locate the IDT audio panel or you simply can’t access the Uninstall or change program screen or you can’t keep Control Panel open for a long time, here’s what you can do:
  • Tap the Win + R keys at the same time once again to open the Run dialog box.
  • And in the field, type in “devmgmt.msc” and hit Enter to open the Device Manager.
  • After opening the Device Manager, look for the “Sound, video and game controllers” option and double-click on it.
  • From there, locate the IDT audio panel or “IDT High Definition CODEC” and select Uninstall and follow the next instructions that appear.

Option 3 – Try deleting or renaming IDTNC64.cpl

IDTNC64.cpl is a control file in the control panel. However, it might be the one that’s causing the problem as it could be conflicting with the control panel. As a result, the control panel crashes after a second or more. Many users have fixed the problem by either renaming or deleting this file – the safer option would be is renaming it.
  • Tap the Win + E keys to open File Explorer.
  • In the address bar located at the top, type in “C:\Windows\System32” and tap Enter to open this folder.
  • From there, look for the IDTNC64.cpl file, right-click on it and select the Rename option.
  • You can name the file anything you want but it’s better if you rename it to “oldcpl”.
  • After you rename the file, try opening the Control Panel again. It should work fine now.

Option 4 – Try to disable the Windows Error Reporting Service

As mentioned earlier, the Windows Error Reporting Service is also known to cause the issue so some users disable it and got the issue fixed.
  • Tap the Win + R keys.
  • In the field, type in “MSConfig” and hit Enter to open System Configuration.
  • After opening System Configuration, go to the Services tab and look for the Windows Error Reporting Service and uncheck its checkbox.
  • Click the Apply button and click OK. You should now see a date in the Disable Date column. Then check if the Control Panel is now working properly if not, restart your computer and check once more. That should fix the problem.

Option 5 – Try opening Control Panel via Run

This option is more of a workaround than a solution as it does not really fix the issue with the Control Panel but rather helps you in accessing the controls at the very least.
  • Tap the Win + R keys to open Run.
  • Type in “appwiz.cpl” in the field and tap Enter to open the Uninstall or change program screen of the Control Panel.
  • Next, copy and paste “Control panel all control panel items” on the address bar located at the top-mid part of your screen. You must not type the given address and simply copy and paste it. After that, you will see a list of control panel controls you can use.
Read More
Diablo 2 Resurrected facing server issues
It has been some time since the release of Diablo 2 resurrected and overall reception was pretty good. People are enjoying the old classic game in hi-def. resolution and with new and improved visuals. Sadly some server issues are present still until this day and somewhat spoil the experience for players. diablo 2 server statusThe greatest lag and server crashes are pinpointed to game-creating events. When a player creates a new online game, the server needs to pull a lot of details from the database and make a game, due to some legacy code present this process takes some time and it is demanding a bit on the server-side, and although code was optimized to cater to more modern approach some legacy code still remains. Another thing that was spotted to affect performance itself is player behavior, to be more specific, modern gamer behavior. Where players find good builds and runs on the internet and then go to farm-specific areas or bosses for loot or experience points, which in return boils down to making plenty and short runs that are made by creating games and after run eliminating them. Now pair that with the previous statement about legacy server and database code and you can add 1 and 1 and see how this might be an issue. A lot of short games over legacy code are placing games in a state it was not designed for back in 2001 and therefore we have issues. Sadly solutions without completely rewriting the whole code are not very promising and they include rate limiting, which will prevent players to create many games in succession in a short period of time and maybe even login queues to drop a load on servers. Blizzard reached to people in the whole company, even old diablo 2 developers to ask for advice and they say that they are working on solutions so they could lift limitations and have everything running fine.
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