Logo

Repairing a corrupt Group Policy in Windows

If you recently made some changes in your Windows 10 computer using the Group Policy Editor but they were not reflected and you got errors instead, it could be that your Windows computer wasn’t able to read the Group Policy file (registry.pol). To resolve this kind of issue, you have to repair the potentially corrupted Group Policy using the options given in this post.

.As you know, Group Policy is a feature in the Microsoft Windows Active Directory which allows an admin to make changes in the features on Windows PCs that are on the network. So if the modifications you just made weren’t successfully applied, then there could be something wrong with the registry.pol file on the client or it could also be that the Group Policy folder is missing.

To fix this issue in the Group Policy, you need to refer to the given suggestions below and make sure that you have admin privileges as you execute them.

Option 1 – Try to delete or recreate the missing registry.pol file

The entire settings of the Group Policy are stored in the registry.pol file so if it went missing, all the changes you make will not be reflected. The good thing is that you can recreate it but if the file exists and is corrupted, you need to delete it first before you recreate it.

  • First, go to the C:/Windows/System32/GroupPolicy/Machine location.
  • And from there, check if the registry.pol file exists or not. If it’s there, just delete it permanently by tapping the Shift + Delete keys.
  • Now it’s time to recreate the file. Just open Windows PowerShell with admin privileges by tapping Win + X + A keys.
  • After opening PowerShell, type this command: gpupdate /force
  • The command you entered will recreate the registry.pol file and will refresh the Group Policy. Restart your computer.

Option 2 – Try recreating the secedit.sdb file

The security settings of Group Policy are stored in the secedit.sdb file so if you made some changes to security and they weren’t reflected, you can try to delete and recreate the secedit.sdb file instead of deleting the Group Policy file. All you have to do is navigate to the C:/WINDOWS/security/Database folder and look for the secedit.sdb file and rename it or move it to another folder. After that, restart your computer. Once your computer has restarted, the secedit.sdb file will be created again.

Option 3 – Try to reset the Group Policy to default

You can also try to reset the Group Policy back to its default state. There are several ways you can do that. You can either use the gpupdate or the secedit command in the Windows PowerShell to do that. Resetting the Group Policy will resolve any issues that could be caused by its current settings.

Option 4 – Try to perform System Restore

System Restore can also help resolve the Group Policy issue. It could be that prior to the issue, you’ve made some changes in the system that might have affected the Group Policy. To undo these changes, perform System Restore.

  • First, tap the Win + R keys to open the Run dialog box.
  • After that, type in “sysdm.cpl” in the field and tap Enter.
  • Next, go to the System Protection tab then click the System Restore button. This will open a new window where you have to select your preferred System Restore point.
  • After that, follow the on-screen instructions to finish the process and then restart your computer and check if the problem is fixed or not.

Option 5 – Use the DISM tool

You can also try running the Deployment Imaging and Servicing Management or DISM tool. This tool will repair the Windows System Image as well as the Windows Component Store in your Windows 10 computer. So if there are any missing or corrupted folders and files, the DISM tool can restore and repair them. As a result, any system consistencies and corruptions will be fixed. To run this tool, follow these steps:

  • Tap the Win + X keys and click on the “Command Prompt (Admin)” option.
  • After that, input each one of the commands listed below sequentially to execute them:
    • Dism /Online /Cleanup-Image /CheckHealth
    • Dism /Online /Cleanup-Image /ScanHealth
    • Dism /Online /Cleanup-Image /RestoreHealth
  • Once you’ve executed the commands given above, restart your computer.

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

Intel & MS fixed DRM issue with alder lake
Due to its hybrid core technology, the Alder Lake line of processors had some DRM issues with some game titles where DRM protection software detected hybrid core design switching via manager as a hack attempt and prevented the game from working properly. Over 50 titles were affected by this issue, now only 3 remain still affected but it is being worked on them so that can be also resolved. alder lake drmIntel says that the remedy to the issue for these games is the scroll lock fix which can be done so by enabling Legacy Game Compatibility mode from the BIOS of your motherboard. When running the said games, you can press scroll lock to park the E-cores on Intel's Alder Lake Desktop CPUs to get rid of DRM issues. Certain motherboard manufacturers such as MSI and Gigabyte have made this even easier through software tools with which you don't have to access the BIOS. All you need to do is select a button in the tool which works on both Windows 11 and Windows 10 operating systems and you will enable compatibility mode.
Read More
Fix Windows Update Error Code 0x8e5e0147
As you already know, the Windows Update mechanism in Windows 10 is a bit complex as it depends on thousands of files and services in order to properly function. There are DLL files and services that support this mechanism’s proper functioning. And so if there is any malfunction with any of these files or services, it will result in some errors when running Windows Update. One of these errors is the error code 0x8e5e0147 which has the following error message: “There was a problem installing some updates, but we’ll try again later. If you keep seeing this and want to search the web or contact support for information, this may help – Error 0x8e5e0147” To fix this error, there are several methods you can try. You can run the Windows Update troubleshooter or reset the Windows Update components manually or clear the SoftwareDistribution folder and install the update manually. You could also reset the Windows Update Agent to default using a command in PowerShell.

Option 1 – Try to run the Windows Update troubleshooter

The first thing you can do to fix the Windows Update error code 0x8e5e0147 is to run the Windows Update Troubleshooter. 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 2 – Try to reset the Windows Update components

If by any chance that the third option didn’t work, you can also try resetting the Windows Update components as it could also help you resolve the Windows Update error. 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:/Windows/SoftwareDistribution/SoftwareDistribution.old
    • ren C:/Windows/System32/catroot2/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.

Option 3 – Try downloading and installing the Windows Updates manually

Windows Update error code 0x8e5e0147 might be due to a Windows Update that has failed. So if it is not a feature update and only a cumulative update, you can download the Windows Update and install it manually. But first, you need to find out which update has failed, and to do so, refer to the following steps:
  • Go to Settings and from there go to Update and Security > View Update History.
  • Next, check which particular update has failed. Note that Updates that have failed to install will be displayed under the Status column which has a label of “Failed”.
  • After that, go to the Microsoft Download Center and look for that update using its KB number and once you find it, download and then install it manually.
Note: You can also use the Microsoft Update Catalog, a service from Microsoft that provides a list of software updates that can be distributed over a corporate network. With the help of this service, it can be easier for you to find Microsoft software updates, drivers as well as fixes. Option 4 – Try to reset the Windows Update Agent Since you can’t update the Windows Update Agent on your Windows 10 computer manually, you can try resetting it instead and you can do it using the Reset Windows Update Agent tool which you can download from the official Microsoft website. This tool allows you to:
    • Scan all protected system file and replace the corrupted one’s (sfc /scannow)
    • Scan, detect, and repair corruptions in Windows system image
    • Clean up superseded components
    • Reset Windows Update components
  • Change invalid values in Windows Registry
  • Delete temporary files
Moreover, this tool also allows you to carry out these operations:
  • Open Internet Explorer settings
  • Search for Windows Updates
  • Explorer for local or online solutions
  • Restart your computer
Read More
How to send your PDF file to amazon Kindle
Kindle is, without doubt, a great piece of hardware, perhaps it is the closest thing to a book within the domain of digital devices. With its low price and usability, it has found itself in many homes and within the grasp of many readers in the world. You can buy digital books in the Amazon store for fraction of a regular price if it digital Kindle edition. You keep your library in the cloud and download just books you want to read on your device. In this article, we will explore how you can send your existing PDF or any other supported file that you already have to your kindle device so you can read it on it.

Before we begin, you should make sure the file you're trying to convert is compatible with the Kindle:

HTML RTF JPEG GIF PNG BMP or PDF The compatible file types cover most formats you're likely using, but if you find the document you want on your Kindle isn't compatible, there are a few ways to convert it. In the program it typically opens into, like Microsoft Word for .doc files or an image editing apps for .PNG ones, select 'Save As', and in the drop-down menu, see if any of the compatible options are available. If not, you could try a PDF converter tool. There are plenty of great paid options and a few good free ones too.

Transfering PDF

To get a PDF on a Kindle, you're going to need to know your Kindle's email address. You'll need to head over to the Amazon website and sign in first. Select 'Your devices and content', click 'Manage Devices'. You should see a list of the books you have assigned to your Kindle account, above this list, in a toolbar should be some options - you'll currently be on 'Content', which should be followed by 'Devices', 'Preferences' and 'Privacy Settings'. Click on 'Devices', and in the next menu, select the option for the Kindle you want the document on. You'll be brought to a Device Summary page which tells you your Kindle email as well as the type of device it is. You now need to approve your personal email, so that when the Kindle receives your PDF, it knows to download this. Make sure the email you approve is the one you're planning to send documents to your Kindle from otherwise it won't work. To approve your email address follow the steps for finding your Kindle email address but instead of selecting 'Devices' in the top bar, click 'Preferences'. Scroll down this list until you find Personal Document Settings, and select this option so it expands into more options. From here, scroll down until you find 'Approved Personal Document E-mail List'. This list will show people who can email stuff to your Kindle, Below the emails is an option to 'Add a new approved e-mail address', which you should select. Enter your email address and click 'Add address' to get yourself approved. Head over to your email client of choice, attach the file to an email, and send the email to your Kindle email address. You're able to send multiple documents at once, so if you have loads of files you want on your Kindle, you don't need to send separate emails. If you're sending over a PDF file, you can ask Amazon to automatically convert the file into a Kindle one, which lets you annotate the sections and change the font size. Simply put the word 'convert' as the subject line and the rest will be handled for you. 'Sync Your Kindle'.
Read More
Problem running preinstall.cmd scripts
Setting up the Windows operating system in a computer can be quite a complicated task since there are a couple of things that take place in the background to ensure a full and protected setup of the operating system which includes a number of programs, scripts, and so on. They work together in the background to guarantee the integrity of the Windows operating system. However, there are times when this piece of code could also go wrong. As a result, you might encounter errors like the “There was a problem running preinstall.cmd scripts” error. “Preinstall.cmd” is a type of CMD file associated with Applications & Drivers developed by Gateway for the Windows OS. To fix the “There was a problem running preinstall.cmd scripts” error, there are several things you can try. You can try to download a new Windows installation image or create a new bootable drive as well as uninstall conflicting or incompatible programs. In addition, you can also run the Windows Update troubleshooter or reset Windows 10.

Option 1 – Try to download a new Windows installation image

Your first option to fix the “There was a problem running preinstall.cmd scripts” error is to download a new Windows installation image. You can get the official ISO files for the latest release of Windows 10. After you’ve downloaded the ISO files, you can use them to upgrade to the latest Windows 10 version.

Option 2 – Try creating a new bootable drive

  • Insert your USB drive into your PC.
  • Tap the Win + R keys to open the Run dialog box and type in “cmd” and tap Enter to open the Command Prompt. Alternatively, you can also search for “cmd” in the Cortana search box to open Command Prompt.
  • Once you’ve opened CMD, type in this command to open the DISPART utility – diskpart
  • After that, you should see a new black and white window that would say, “DISKPART>”.
  • Next, type in “list disk” in the command line and tap Enter to see the list of all the Storage devices as well as your hard disk connected to your PC. Here, you have to identify your disk’s number.
  • Type in this command where “X” is the disk number you have identified and then tap Enter – disk X
  • Type in this command and hit Enter to clear the table records and all the visible data on the drive – clean
  • Now you have to recreate a new primary partition of the drive so you’ll have to type in this command and tap Enter right after – create part pri
  • A new primary partition has been created so you have to select it by typing this command and tapping Enter – select part 1
  • Now you have to format it to make it visible to normal users by typing – format fs=ntfs quick
Note: If your platform supports the Unified Extensible Firmware Interface or UEFI, replace the “NTFS” with “FAT32” in the command on Step 10.
  • After that, type in this command and tap Enter after – active
  • Finally, type this command and hit Enter to exit the utility – exit
  • After you prepare the image for the operating system, save it to the root of your USB Storage device.

Option 3 – Try to uninstall conflicting programs

If you are using a computer made by Dell and got Windows 10 preinstalled in it, then you can try to uninstall the programs listed below and see if it fixes the problem.
  • Dell Encryption Management service
  • Dell Digital Library service

Option 4 – Run the Windows Update Troubleshooter

You might also want to run the built-in Windows Update Troubleshooter in Windows that could help you in resolving the “There was a problem running preinstall.cmd scripts” error. All you have to do is go to Settings > Update& security > Troubleshoot > Windows Update. From there, click on the Run the troubleshooter button and follow the next one-screen instructions that appear. After that, restart your computer and check if the error is now fixed or not by trying to install the update once again.

Option 5 – Run Microsoft’s online troubleshooter

Running Microsoft’s online troubleshooter might also help you fix the error. This online troubleshooter is known to help in fixing Windows Update errors, it scans your computer for issues that might be causing the problem and then fixes them automatically.

Option 6 – Try to reset Windows 10

  • Tap the Win key or click on the Start button located in the Taskbar.
  • Then click on the Power button at the bottom right portion of the screen.
  • Next, press and hold the Shift key on your keyboard and then click on Restart. This will restart your Pc into the Advanced Startup options.
Note: Once you have access to the Advanced Startup options, you have to go to the setting which allows you to Reset your Windows 10 PC. All you have to do is select Troubleshoot > Reset this PC to reach the following screen Afterward, select either the “Keep my files” option and then proceed to the next on-screen instructions that follow to reset your Windows 10 computer without losing your files.
Read More
Arrows keys are not working in Microsoft Excel
As you know, Excel sheet is frequently acclaimed as one of the most useful software that allows users to create spreadsheets, crunch numbers as well as prepare a business report. Usually, tapping the arrow keys to move from one cell to another. However, there are times when you might experience trouble in tapping them – for instance, they won’t work when you tap them. This kind of problem can be quite frustrating since no matter what you do, especially when you tap the arrow keys, instead of a single cell, it moves the entire spreadsheet. If you are one of the users who experience this problem, worry no more for this post will guide you on what you can do to fix it. When arrow keys won’t function as intended in Excel spreadsheets, it could be due to unintended behavior of the Scroll key or it could be related to some issues with the keyboard driver. Whatever the cause is, here are some suggestions you can check out to fix it.

Option 1 – Try to disable the Scroll Lock

The first thing you can do to fix this problem with arrow keys is to disable the Scroll Lock. Although doing this is easy, newer laptops don’t actually come with it so if your keyboard does not come with a scroll key, all you have to do is tap the Fn key and disable Scroll Lock. Aside from that, you could also use the on-screen keyboard to turn off the Scroll Lock. You will see its status on the Excel sheet which will help you to double-check. Moreover, you could also tap the Shift + F14 keys to toggle off the Scroll Lock. To use the on-screen keyboard to turn off Scroll Lock, follow the steps below.
  • Tap the Windows key and type “on-screen keyboard” and then tap Enter.
  • Once the on-screen keyboard is opened, you should see that the Scroll Lock is on the “On” position since the ScrLk keys are in blue.
  • Like pointed out earlier, you can utilize the Scroll Lock indicator located in the status bar as well as disable or enable the scroll key by using this feature on Microsoft Excel.

Option 2 – Try turning on the Sticky key

If disabling the Scroll Lock did not fix the problem, you can try turning on the Sticky Key instead. A lot of users reported that this option fixed the problem for them. So you should try to turn on the Sticky key and to do that, follow the steps below.
  • First, type “control panel” in the Start Search and click on Control Panel from the search results.
  • Next, select the “Turn On Sticky Keys” option and click on OK.
  • After that, go back and uncheck the “Turn On Sticky Keys” option. This should fix the malfunctioning arrow keys on Excel.

Option 3 – Try running the Hardware and Devices Troubleshooter

The first thing you can do to fix the problem is by running the Hardware Troubleshooter. Although it won’t make much of a difference, there’s still a possibility that it could automatically fix the problem with these function keys. To use it, refer to these steps:
  • The first thing you need to do is click on Start and then on the gear-like icon to pull up the window for Settings.
  • After opening Settings, look for the Update and Security option and select it.
  • From there, go to the Troubleshoot option located on the left-hand side of the list.
  • Next, select Hardware and Devices from the list and open the Troubleshooter and run it. Once it is doing its job, wait for it to complete the process and then restart the system.
  • After the system restarts, check if the problem’s now fixed. If not, refer to the next option given below.

Option 4 – Update the keyboard driver

You can also update the keyboard driver to fix the problem. There are cases when an outdated or corrupted driver can fix the problem. To do so, follow the steps below.
  • Tap the Win + R keys to open the Run dialog box.
  • Then type “devmgmt.msc” in the field and hit Enter to open the Device Manager.
  • From there, look for the keyboard driver and click on it.
  • Next, right-click on the keyboard driver and select the Update driver option.
  • After that, click the “Search automatically for updated driver software” option to proceed.

Option 5 – Reinstall the keyboard driver

If updating the keyboard driver didn’t help, then you might want to reinstall it. How? Follow the steps below.
  • Tap the Win + R keys to launch Run.
  • Type in MSC into the box and tap Enter or click OK to open the Device Manager.
  • After that, a list of device drivers will be displayed. Look for the keyboard driver, right-click on it and then select “Uninstall device”.
  • After that, unplug the device and restart your PC.
  • Then plug your device back in. Assuming your device is connected to your PC, open the Device Manager again.
  • Next, click on the Action button and click the Scan for hardware changes button. That should fix the problem
Note: You could also completely uninstall the driver and go directly to the manufacturer’s website and download the latest driver for your hardware and then install it.
Read More
What to do if the Windows Wireless Service in Windows 10 is not running
When experiencing internet connection problems, most users run the built-in troubleshooter to fix the problem. However, you might come across another problem when instead of fixing the problem, the troubleshooter throws up an error message saying, “The Windows Wireless Service is not running on this computer”. After displaying this error message, the troubleshooter would exit. Usually, this kind of error indicates that Windows has failed to initialize the wireless service so it can start searching for broadcast signals and try to connect to them. So in this post, we have prepared some workarounds that might help you resolve the issue.

Option 1 – Try to check the WLAN Status

You have to make sure that the wireless service is enabled in your computer before you proceed to the other troubleshooting options below as this error could occur for a simple reason as the wireless capability is turned off from your PC either on some built-in settings or physically. This is why you need to make sure that Wireless is enabled. And if it turns out that it is disabled, you need to turn it back on and then reconnect to the wireless network again. You should now be able to connect to the internet without any issue.

Option 2 – Try to check the WLAN AutoConfig Service

The WLAN AutoConfig service is the one that provides the logic and functionality required to discover, connect and configure wireless networks with your PC. Aside from that, it also contains the module that allows your PC to be discoverable to other systems on a network. Thus, you need to verify if the WLAN AutoConfig service is on or not.
  • Tap the Win + R keys to open the Run dialog box.
  • And in the field, type in “services.msc” and hit Enter to open Services.
  • After opening the Services window, look for the entry named “WLAN AutoConfig” and then right-click on it and select Properties from the context menu.
  • Next, click on the Start button to turn on the service and then set the startup type as “Automatic”.
  • Then try to connect to your Wireless network again and check if the issue has been resolved.

Option 3 – Try to reset the Network Configurations

Resetting the Network Configurations can also help you in fixing the Windows Wireless service as the network settings often get disrupted or corrupted in a variety of different cases every now and then. Note that this module will reset all the network settings stored on your computer.
  • Tap the Win + S keys to open Search and then type in “command prompt” in the field.
  • From the search results that appear, right-click on Command Prompt and select the “Run as administrator” option.
  • After opening Command Prompt, copy and paste the following command and hit Enter to execute it:
netsh winsock reset
  • The command given will reset the Winsock data. Once it is executed, restart your PC for the changes to take effect and then check if the internet connection is now fine.
Note: Do make sure that the WiFi drivers are up to date. To do that, follow these steps:
  • Tap the Win + R keys to launch Run.
  • Type in devmgmt.msc into the box and tap Enter or click OK to open the Device Manager.
  • After that, a list of device drivers will be displayed. If you see a red or yellow sign that shows up against the driver, right-click on the driver’s name and select “Update Driver Software” or “Uninstall”. And if you find any “Unknown device”, you need to update it as well.
  • Select the “Search automatically for updated driver software” option and then follow the instructions to complete the process.
  • Restart your PC.
Note: You also have the option to go directly to the website of your graphics card manufacturer and check if there’s a new update – if there is, download it.

Option 4 – Perform System Restore

Recently, a lot of issues have resurfaced after users installed the latest Windows update. So the wireless service issue might also be related to it. To fix the problem, you can perform System Restore to roll back your Windows to the last time when it was working just fine. It automatically creates backups in time whenever you install a new update or periodically. Follow the steps below to perform System Restore.
  • Tap the Win + S keys to open Search and then type in “restore” in the field and select the topmost result.
  • Once you’ve opened the restore settings, click on System Restore located at the beginning of the window under the System Protection tab.
  • After that, a wizard will appear that will guide you through all the steps needed to restore the system. You can choose either the recommended restore point or a different one.
  • After you select the restore point, click Next to proceed to the next on-screen instructions.
  • Then select the restore point where the Windows Update was installed on your computer. If you have more than one restore point, you can just select the latest restore point and check the functionality from there. If it doesn’t work, you can just try another restore point.
  • Another prompt will appear and will ask you to confirm your actions. Click OK and wait for the system to be restored. Once it’s done, check if the problem’s now fixed.
Read More
How to fix windows 10 error code 0x80073712
Windows 10 has displayed one of the most efficient and user-friendly interfaces. However there have been many issues on the backend of this commonly praised operating system: For example, Windows Update is still a wonky and error-laded system application. One example of this error is Windows Update Error 0x80073712 which stands in the way of users just wanting to keep their PCs updated hassle-free. The error code 0x80073712 signifies that a file needed by Windows Update to function is either damaged, missing, or corrupted. However, this does not mean that your Windows version will forever stay as-is with no mode to update it. Windows Update Error 0x80073712 is perfectly fixable with the set of provided steps below and some of Windows’ built-in troubleshooting steps:

Solution 1: Open Windows Update Troubleshooter

  1. Open the Windows Update Troubleshooter by pressing the Window Key and  “S” keys simultaneously.
  2. Enter the word “Troubleshoot” in the search box and select the Troubleshoot result
  3. On the new window, select “Windows Update” to troubleshoot.
  4. Run the troubleshooter, then open Windows Update and try to install the update again.

Solution 2: Run the DISM tool

  1. Open the command prompt by pressing Windows Key and “S” key simultaneously
  2. Enter “cmd” in the search box. Right Click command prompt among the results and select “Run as administrator”
  3. In the Command Prompt window type the following and press the Enter key after every command
DISM.exe /Online /Cleanup-image /Scanhealth DISM.exe /Online /Cleanup-image /Restorehealth
  1. To close the Administrator: Command prompt window, type Exit, and then press Enter.
  2. Run Windows Update again.

Solution 3: Rename the Software Distribution folder

  1. Open the command prompt as previously mentioned
  2. Input the following command pressing Enter after every line net stop wuauserv net stop cryptSvc net stop bits net stop msiserver rename c:windowsSoftwareDistribution softwaredistribution.old net start wuauserv net start cryptSvc net start bits net start msiserver exit
  3. Restart the PC and run the updater if it works again.

Solution 4: Restart Windows Update Services

  1. Press the Windows logo key and R together to open Run -> Input services.msc -> and press Enter
  2. Search for the Windows Update service -> Check its status
  3. If it is not indicated, right-click on the service and select Start to force start your Windows Update
  4. If you see an error, locate the Startup Type option and set it to Automatic
  5. Now you should reboot your computer and see if your Windows Update is OK

Solution 5: Fix Registry Issues

If after all the aforementioned solutions, you still experience problems with Windows Update, the problem may lie in the registry that is either damaged or corrupted. You may choose to do manual editing of your Windows registry by opening your Windows registry editor. But doing so is risky as one wrong letter may do incalculable damage to your system. To do so safely for more inexperienced users., we recommend using a third-party registry cleaner/tools, many of which can be found online.
Read More
Windows computer doesn’t recognize second GPU
A lot of Windows users, use a second GPU for their computer systems, especially gamers above the dedicated graphics card. The operating system is set such that the dedicated high-end graphics card is set to default but there are times when the system does not recognize or detect the second graphics card. Even though every computer system comes with an integrated graphics card, for the most part, it is insufficient for graphics-intensive games and software which is why if you have an extra dedicated graphics card and your computer does not seem to detect or recognize it, then this post is for you. It could be that the dedicated graphics card has failed or it could also be an issue with the drivers and so on. Follow the suggested options below to resolve the problem.

Option 1 – Update your Graphics drivers

  • First, boot your computer into Safe Mode.
  • After that, tap the Win + R keys to launch Run.
  • Type in msc into the box and tap Enter or click OK to open the Device Manager.
  • After that, a list of device drivers will be displayed. From there, look for the Display Adapters and click on them.
  • After that, right-click on each entry under the Display Adapters and select the “Uninstall Device” option from the menu.
  • Now restart your computer.
  • After restarting your computer, go to the Settings app and Check for Updates in the Windows Update section.
Note: You also have the option to go directly to the website of your graphics card manufacturers like NVIDIA, Intel, or AMD and go to the section called Drivers then check if there’s a new available update – if there is, download and install it.

Option 2 – Update the BIOS

Take note that you have to be careful when modifying something in the BIOS. So if you don’t know much about it, it’s best if you skip on this option and try the other ones instead. However, if you are well-versed in navigating the BIOS, then follow the steps below.
  • Tap the Win + R keys to open the Run dialog box.
  • Next, type “msinfo32” in the field and press Enter to open System Information.
  • From there, you should find a search field on the bottom where you have to search for the BIOS version and then press Enter.
  • After that, you should see the developer and version of the BIOS installed on your PC.
  • Go to your manufacturer’s website and then download the latest version of BIOS on your computer.
  • If you are using a laptop, make sure that you keep it plugged in until you have updated the BIOS.
  • Now double click on the downloaded file and install the new BIOS version on your computer.
  • Now restart your computer to apply the changes made.

Option 3 – Try changing the GPU settings

  • Right-click on any empty space on your Desktop and select Graphics Properties. Note that the Graphics Properties screen depends on the graphics drivers installed on your computer and are system-specific as they may be different for other systems but they aren’t hard to find.
  • After that, make sure that the dedicated Graphics card is selected as Default under the Select Display drop-down.
  • If the Graphics card isn’t set as Default, set it and click Apply and Exit.

Option 4 – Try disabling the driver for the integrated Graphics card

  • Tap the Win + R keys to open the Run dialog box.
  • Next, type “devmgmt.msc” in the field and hit Enter to open the Device Manager.
  • From there, expand the list of Display Adapters and then right-click and select Disable device for the Integrated Graphics card. However, if the dedicated Graphics card fails, the display won’t work so you need to restart the system and enable it.
Read More
Fix 0x8000ffff error in Windows 11
Error 0x8000ffff prevents you from using the Microsoft store. Altho it is not a critical error that will break Windows, it is annoying enough that will require fixing so we can use the store once again and install apps when we want to. Interesting thing is that this error was present inside Windows 10 as well causing some annoyance, you think Microsoft would learn, and then you see reality. Anyway, we have not come here to bash Microsoft, we came to solve errors. 0x8000ffff errorSo there are several problems that can cause this error like issues with accessing the Microsoft servers, corrupt system files, settings being misconfigured, malware infections, or conflicting applications. We will cover all solutions for each scenario taking approaches from most simple solutions to more complex ones. Follow the guide and let's fix this annoyance.

Wait for Microsoft's servers to become accessible

Yes, just wait. If the problem is tied to Microsoft servers having heavy load or being temporarily down there is not much you can do except for their tech team to resolve the issue. Go to Twitter or Facebook and check the Microsoft page to see if anyone else has this issue, if several people are reporting the same error then it is due to server problems. In this case, the only thing you can do is to wait.

Run troubleshooter

If servers are working fine then the issue is within your system so let's get down to fixing. Most simple and easiest solution is to let Windows try and resolve the problem by itself. We will use troubleshooter for this, Windows's integrated fixing solution: Press ⊞ WINDOWS + I to open the settings app Click on System in the left panel, then on Troubleshoot on the right Click on Other troubleshooters In most Frequent section find Windows Update and click on the Run button Wait for the troubleshooter to finish and follow on-screen instructions

Clear Store cache

If the troubleshooter has not found the issue or was unable to repair it, the next step is cleaning the Microsoft store cache in order to eliminate corrupted or partial cache files. Press ⊞ WINDOWS + R to open the run dialog In run dialog type in: wsreset and press OK or press ENTER A black screen will appear and it will not give any kind of feedback about progress, so it might seem like Windows has frozen, but do not panic nor try to do anything, this kind of behavior is normal, just wait for the process to finish and once it is done Microsoft store will launch with the cleared cache.

Disable Proxy

Proxy setting can interfere with establishing a connection to the store servers and if previous solutions have not worked we will check proxy next. Press ⊞ WINDOWS + R to open the run dialog Inside run dialog type: inetcpl.cpl and hit ENTER or press OK button Inside Internet Properties click on the Connections tab and then on LAN settings Uncheck the box next to Use a proxy server for your LAN and click on OK

Turn off antivirus

If nothing worked so far, turn off your anti-virus software, there is a slight possibility that your antivirus is misconfigured or preventing the system from accessing the store. Turn off antivirus and firewall to make sure that this is not an issue.

Delete the software distribution folder

So, we have tried a lot of things, and the error still persists? Let's then go to the next step and delete the software distribution folder in order to be remade new so we can eliminate corruption in the folder itself. To do this follow the guide: Press ⊞ WINDOWS + S to open the search menu Inside search type in Windows terminal, right-click on the terminal and click on Run as administrator. Confirm with YES on UAC prompt pop up Inside terminal press CTRL + SHIFT + 2 to open command prompt inside command prompt type in: net stop wuauserv and press ENTER Then type in: net stop bits followed with ENTER Next press ⊞ WINDOWS + R to open the run dialog Inside run dialog type in C:\Windows\SoftwareDistribution and press the OK button or ENTER File Explorer will open and you will find yourself inside SoftwareDistribution folder. Press CTRL + A to select all files inside Press on the delete icon or press DEL, confirm with YES Once all files are deleted, the system will redownload new ones.

Enable Cryptographic service

Windows 11 has come with a cryptographic service that aims to make your computer more secure but if the service is turned off it can be the cause of 0x8000ffff error. In order to turn this service back ON, follow the guide: Press ⊞ WINDOWS + R to open the run dialog In run dialog type in services.msc and press ENTER or click on the OK button In the list find Cryptographic Services and double click on it Inside properties click on Startup type dropdown menu and select Automatic from the list Click on the Start button to run service and then on the OK button to save the changes

Run SFC scan

SFC is an internal Windows tool for fixing corrupt system files, application will scan all system files and repair ones that are corrupted. To run an SFC scan do the following: Press ⊞ WINDOWS + S to open the search menu Inside search type in Windows terminal, right-click on the terminal and click on Run as administrator. Confirm with YES on UAC prompt pop up Inside terminal press CTRL + SHIFT + 2 to open command prompt inside command prompt type in: SFC /scannow and press ENTER Wait for the whole process to finish and reboot your system

Run DISM scan

Similar to SFC, DISM scan will scan your system Windows image and if required it will repair it. Press ⊞ WINDOWS + S to open the search menu Inside search type in Windows terminal, right-click on the terminal and click on Run as administrator. Confirm with YES on UAC prompt pop up Inside terminal press CTRL + SHIFT + 2 to open command prompt inside command prompt type in: DISM /Online /Cleanup-Image /RestoreHealth and press ENTER Wait for the whole process to finish and restart your computer
Read More
Fix Msvcr120.dll_clr0400.dll Missing Error
DLL files have certain functions that help the programs in the computer run properly. One of these DLL files is the Msvcr120.dll_clr0400.dll. This particular DLL file is responsible for the extraction of the required resources during the installation of a program and is used when the program is launched or when games are launched in the C++ language. However, a number of users recently reported that they’ve encountered an error that says, “Msvcr120.dll_clr0400.dll is missing” when they tried to install an application or when they tried opening an application. This kind of error could be due to several factors. It is possible that the DLL file is corrupted or there are some programs that interfere with the DLL file. On the other hand, it is also possible that it has been infected by a virus. To resolve this error, here are some potential fixes you need to check out:

Option 1 – Run System File Checker scan

The first thing you can do to fix the error is to try running the System File Checker or SFC scan. System File Checker is a command utility built into your computer that helps restore corrupted files and missing files. Refer to the following steps to run it:
  • Hit the Win + R keys 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.
  • Reboot your computer.

Option 2 – Troubleshoot the missing Msvcr120.dll_clr0400.dll error in a Clean Boot State

You can also troubleshoot the isDone.dll error in a Clean Boot state. It could be that there are some third-party applications in your computer that are preventing the application from getting installed and to isolate this possibility, you need to boot your computer in a Clean Boot State and then try installing the program again. Putting your computer in this state can help you identify which program is the culprit and thus isolates the problem. In a Clean Boot state, your computer will start using only the pre-selected minimal set of drivers and startup programs. Note that you have to disable and enable one process at a time.
  • 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” check box 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” check box.
  • 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 you’ve set your computer into a Clean Boot State, make sure that you’re signed in as administrator and then try to install the application again.

Option 3 – Try to re-register the problematic DLL file

You can also try to re-register the DLL to resolve the problem. The Regsvr32 tool is a command-line utility that can be used to register and unregister OLE controls like DLL and ActiveX (OCX) controls in the Windows operating system. Follow the steps below to use it.
  • Open Command Prompt as admin from the WinX menu.
  • Next, type the following commands in the elevated Command Prompt and hit Enter to execute the command. This will re-register the affected DLL file using the Windows operating system tool, regsvr32.exe.
    • exe /[DLL file]
    • exe [DLL file]
Note: Replace “[DLL file]” with the name of the DLL file that was pointed out in the error.
  • After you execute the given commands, you should see a message saying, “DllRegisterServer in vbscript.dll succeeded” if the Regsvr32 tool was able to run successfully. After that, try to install the program again and see if it now works.

Option 4 – Try to replace the DLL file with a trusted source

  • First, you need to get the new DLL file from another computer with preferably the same file version number.
  • After that, you need to boot your PC into Safe Mode and navigate to the paths listed below and then replace the file using a USB drive or other external storage devices.
    • x86: This PC > C:WindowsSystem32
    • x64: This PC > C:WindowsSysWOW64
  • Next, type “cmd” in the Cortana search box and right-click on Command Prompt, and select “Run as administrator” to open it with administrator privileges.
  • Now type the “regsvr32 ntdll.dll” command and hit Enter.
  • Restart your PC and check if the error is now fixed.

Option 5 – Scan your computer using Windows Defender

The DLL file might also be infected with malware or virus and to eliminate it which could explain why you’re getting the “Msvcr120.dll_clr0400.dll is missing” error. Thus, 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
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