Logo

Enable or Disable Optional Windows Features

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

Option 1 – via Control Panel

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

Option 2 – via Command Prompt

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

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

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

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

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

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

Option 3 – via Windows Powershell

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

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

Get-WindowsOptionalFeature –Online

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

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

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

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

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

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

Option 4 – via an external installation source

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

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

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

Do You Need Help with Your Device?

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

Share this article:

You might also like

Specified service does not exist, 0x80070424
Every now and then, the Windows Installer can also encounter some problems or glitches. One of these problems is where the Windows Update Standalone Installer, Windows Defender as well as Windows Firewall throws an error message that says, “The specified service does not exist as an installed service, 0x80070424”. This type of error can actually affect various applications on your computer so you have to fix it as soon as you can. Although there is no clear reason for what really causes this error, there are various suggestions you can try to fix it.

Option 1 – Try to run the Windows Update troubleshooter

Windows 10 have various troubleshooters that can help you resolve many system issues. So if you’re dealing with errors “The specified service does not exist as an installed service, 0x80070424”, 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 2 – Try to reconfigure the Windows Time Service

  • In the Start Search, type “command prompt” and right-click on Command Prompt from the search results.
  • Then click on the “Run as administrator” option to open Command Prompt with admin privileges.
  • Now execute each one of the given commands sequentially and hit Enter right after you type each one of them.
    • net stop W32time
    • exe /unregister
    • exe /register
    • net start W32time
  • After executing the given commands above, wait until it says, “W32Time successfully registered”.

Option 3 – Try to restart related Windows services

  • First, type “command prompt” in the Start Search and right-click on Command Prompt from the search results.
  • Then click on the “Run as administrator” option to open Command Prompt with admin privileges.
  • Now execute each one of the given commands sequentially and hit Enter right after you type each one of them.
    • SC config wuauserv start= auto
    • SC config bits start= auto
    • SC config cryptsvc start= auto
    • SC config trustedinstaller start= auto
Note: The commands you’ve just executed will make sure that the required Windows services are available.

Option 4 – Try to download and install the Windows Update Agent

You might also want to download and install the latest Windows Update Agent as it could also help you resolve the “The specified service does not exist as an installed service, 0x80070424” error.

Option 5 – 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 and then check for updates on your computer and see if the error is resolved.

Option 6 – Try running the Windows Firewall troubleshooter

You could also try to run the Windows Firewall troubleshooter as it might also help you fix the problem. This could help in repairing and fixing Windows Firewall issues automatically. Check if it’s available for your Windows.
Read More
Quick Workarounds to Repair Error 126

What Is Error 126?

Error 126 is a very commonly occurring error that is often the result of damaged system files of Windows. They usually occur during the installation of some Windows program or application. When Error 126 is generated, it terminates the installation process almost instantly. It is important to take corrective measures immediately to ensure that no such problems are encountered again in the future.

Solution

Restoro box imageError Causes

There are a variety of conditions that may trigger Error 126. These conditions are listed below as follows.
  • Corruption of the service-related DLL file
  • Missing or damage service-related DLL file
  • Corrupt, damaged, or Misconfigured system files
  • Improper hardware or application installations or uninstallations
  • Existence of viruses, malware, adware, or spyware in the system
  • Corrupt or incorrect registry entries in the system files
When any of the above-listed conditions occur, the corrupt system files will go to the improper links or missing information. Eventually, the problems with the files will keep the applications or programs from responding in the usual manner. Whatever are the reasons for error generation, it is of utmost importance that the error is removed to ensure smooth functioning of the system.

Further Information and Manual Repair

There are many different ways this error can be rectified. However, the two most effective solutions are listed below as follows.
  • This solution is for the advanced user. Turn on the system and log on to it as the Administrator. Now click on the Start button. Now click on All programs -> Accessories -> System Tools. Here you will come across the option for System Restore. Click on it. A new window will appear. Select 'restore my computer to an earlier time' point. Now clock on Next. A list of restore points will now appear in front of you. Choose the latest restore point you come across from this list and click on ‘Next’. In the next window that opens, click on ‘Next’ again. This is the confirmation window. Once the restoration finishes, restart your computer.
  • This solution is for novice users. Download an Error 126 repair utility program. Install it on your system. Now use it to scan your system for errors. Find out if there is an option to fix/repair error. When you come across it, click on it as soon as the scan is complete. Restart your computer. Your system is now free of Error 126.
Read More
3 ways to bypass TPM and install W11 anywhere
TPM 2.0 requirement for Windows 11 has produced a lot of discussions since it was announced. A lot of somewhat older hardware seems to be left behind with this decision from Microsoft. So naturally, when something like this is announced, especially when it is stated it is the must-have thing, people find a way to break it and to prove it is not the case. In that spirit, I am proud to present you with not one but three-way you can install Windows 11 on hardware that does not has TPM 2.0. Please note that by bypassing this you will not be able to use some Windows 11 features tied to modules like Device encryption, vTPM in Hyper-V, and all TPM-related services. I will cover methods from the most simple and straightforward ones to the more complicated using registry editor.

Windows 11 TPM installationBypass TPM with changing installation media

For this method to work you will need both Windows 10 ISO and Windows 11 ISO since it will require some file copying between them. You will also need Rufus or another tool to make a new installation media once files are copied All you have to do in this method is to go into your Windows 10 ISO and delete the install.esd, then just copy install.wim from Windows 11 installation media into the same place, and you are done. Make install ISO with Rufus and install Windows 11.

Change DLL on installation media method

For this method, you will need everything like in the previous one and the process is almost the same, but this time instead of migrating the whole installation file, we will just replace the appraiserres.dll file. Copy appraiserres.dll file from your Windows 10 installation media over the same file on Windows 11 installation and you are good to go.

Bypassing TPM via registry editor

If for some reason previous easy solutions have not worked for you do not lose hope just yet, there is one more way you can bypass TPM. In this given method you will not need Windows 10 installation media but the process is a little more complicated than previous ones.
  1. Create Windows 11 media installation
  2. Start the installation process
  3. Click the Next button.
  4. Select region, language, and time when asked. You can change these settings later.
  5. Click the Install now button.
  6. If your device was already activated, click the I don’t have a product key option to continue.
  7. Click the Next button. Select the edition of Windows. When you’re installing the OS on an existing device, Windows won’t activate if you select the incorrect edition.
  8. Click the Next button.
  9. Select the I accept the license terms option and click next.
  10. Select Custom: Install Windows only (Advanced)
  11. During the Windows installation screen, now you will see a message stating that the PC can’t run Windows 11 if you do not have TPM 2.0
  12. On this screen, press SHIFT + F10 to open Command Prompt window.
  13. Launch the registry editor, type regedit.exe in Command Prompt, and press ENTER
  14. Create a new key “LabConfig” by right-clicking on the Setup key and select New > Key under HKEY_LOCAL_MACHINE\SYSTEM\Setup.
  15. Type LabConfig and press ENTER.
  16. Right-click on the LabConfig key.
  17. Select New > DWORD (32-bit) value.
  18. Create two values: BypassTPMCheck and BypassSecureBootCheck.
  19. Set their DWORD32 value to 1.
  20. Press ENTER.
  21. Close the Registry Editor.
  22. Type exit in the Command Prompt and press ENTER or close its window.
  23. Press the back button in the Windows installation setup if it still says “This PC can’t run Windows 11”.
  24. Accept the terms & conditions.
  25. Select Custom: Install Windows only (Advanced) option and configure the partition with the current installation.
  26. Click the Next button.
  27. Finish Windows 11 installation
Read More
Fix Wi-Fi doesn't have a valid IP configuration

In today's time, Wi-Fi is a common occurrence, each household has it, on town squares, there are free Wi-Fi hotspots, etc. But sometimes when relaxing at home WI-Fi can fail on us and stop working. If this happens to you do not lose your mind because we have several troubleshooting help tips and ways to get it back quickly so you can continue with your browsing and using your internet.

wi-fi router

Restart the Router and Computer

Yes, we will start with this typical cliche in IT and tech in general. Surprisingly this method still proves over and over again to be true and effective. Over time some electric components simply start working a little bit differently, electrostatic electricity can accumulate on some parts and they can cause issues. By turning off the device and leaving it for some time you are discharging accumulated electrostatics and placing it again into normal working mode.

Unplug your router and leave it for at least 30s like that, a full 1 min is recommended, and then plug it back. Turn it on and restart your computer in order to reboot addresses.

Reset DHCP

If simple have you tried unplugging it and plugging it back in did not work let us reset DHCP. Click on the start button and type in PowerShell, then click on Run as administrator. Once inside the PowerShell type in the following command followed by ENTER: ipconfig /release and after the command finishes, type in: ipconfig /renew also followed by ENTER key. Try the connection again.

Reset TCP/IP stack

The next thing that we will try if the previous one failed is to reset the TCP/IP stack to eliminate corruption of settings files. Like in the previous step, press Start and type in PowerShell and click on run as administrator. inside type in: netsh int IP reset and press ENTER key. Wait for the process to finish and reboot your PC.

Reset WinSock

WinSock is yet another part of Windows OS that is responsible for network communication and resetting it could solve the issue. Again go to PowerShell as described in previous steps and type in this time: winsock reset and press ENTER. Wait for the process to finish and restart your computer.

Other things you can try

Change TCP IP setting back to automatic if you have set manual Ip address on your computer.

Update your network driver via the manufacturer's website of your network adapter. There is a chance that somewhat updates are available to address some issues discovered.

Factory reset your router on the back by locating the reset button on it and pressing and holding it for around 10s.

Turn off your firewall and antivirus protection in order to eliminate it from blocking your internet access.

Read More
Nostalgic gaming with Retroid pocket 2
We have talked about gaming on old computers and have covered new and upcoming Steam deck handheld console. Today we are combining old gaming with a handheld console and our target of talk is Retroid pocket 2. This product is packed with really high-quality plastic and with some great features in it. retroid pocket 2So let's dive into this cool handheld in more detail and find out why we like it so much.

Good manufacturing quality

Plastic and overall manufacturing quality are really, really good. The battery is great, packing 4000mAh that can hold over 3 hours of nonstop gaming, and all buttons and joysticks are great. The screen is a 640 x 480 60Hz 3.5″ IPS screen (4:3 aspect ratio) that performs really great for its purpose, retro gaming. There is a Digital D-Pad and dual analog joysticks. The right joystick is the lower profile to avoid being accidentally moved when pressing the four gaming buttons. There are three buttons at the bottom which are Home, Start, and Select. On either side are good-quality stereo speakers. On the bottom of the device are a Micro SD Card slot and a 3.5mm headphone port. On the top of the device are Left and Right shoulder and trigger buttons. There are the power button and volume adjustments. There are a USB Type-C OTG port and a Micro HDMI output for connection to a TV.

Good technical statistics

Good, not great but then again since this is retro handheld you cannot really expect some crazy stuff like alder lake inside. So the console is punching ARM Cortex A7 CPU with 2 cores and a clock of 1.5GHz paired with ARM Mali 400-MP2 500MHz GPU. The console has 1GB LPDDR3 RAM memory and 8GB eMMC Storage where 5GB is freely available, the rest is taken for OS. As mentioned before the display is 640x480 resolution with a size of 3.5″. The battery is Lithium-Ion with a power of 4000mAh and on the handheld, there is a USB Type-C connector, 3.5mm headphone jack, and Micro-HDMI. It also has Wifi/Bluetooth 4.0

Retroid Pocket 2 OS and support

Pocket 2 comes with Android 6 but you can update its firmware to the 8.1 version on the official site that I would highly recommend. New versions of the handheld will come with 8.1 on it from the box. Having Android as OS opens many possibilities like you can download Android apps such as Steam Link, allowing you to play actual PC games on your Retroid Pocket 2. Not just that, if it does get a newer version of Android it could even have the ability to use xCloud, Xbox’s cloud gaming service. Of course, hardware will not be able to handle modern games but the option is still there and for some old PC titles available on steam like Commander Keen, for example, this is a great option. The console can emulate basically everything up to Dreamcast, including N64, PSP, and Playstation 1. It can emulate Nintendo DS also, but it can only do so with one screen. The only problem with this console is you will need to install and update Apps. You’ll need to learn about RetroArch, an app that lets you download emulators or cores to play games.

Retroid price

The last thing on the list is the price of the console itself. Going just under the 100$ mark this really makes it an affordable option for plenty of people that would like to experience retro handheld gaming or for ones like me, nostalgic gamers wanting to relive some era of playing games on the road.

Conclusion

Among Chinese handheld devices for retro gaming, Retroid Pocket 2 is really on top of what the market can offer. If you are looking for a great handheld retro console and are not afraid of little dive-ins into the OS and various configurations, Pocket 2 will reward you with plenty and wide emulation support.
Read More
Add names of applications in the taskbar
Microsoft is trying to make Windows into a personalized OS, more and more features and parts can be customized to user liking. From larger things to smaller ones nowadays you can almost personalize every detail of Windows itself. In this article, we will tackle how to bring back the names of running applications on the taskbar. Placing names beside icons on the taskbar is a pretty simple and straightforward task easily done. First, right-click the Taskbar and select Taskbar settings. In Taskbar settings, click the menu labeled Combine taskbar buttons. Select Never. That's it, now all of your running applications have a name beside them. If you change your mind, you can always undo it by selecting Always hide labels in the Combine taskbar buttons menu.
Read More
Setting up an FTP Server in Windows
File Transfer Protocol Server, also known as FTP Server, is a private or public service that can host files that can be accessed both locally and globally. It is a quick, flexible and seamless service that allows you to store any kind of files depending on the total size of the server. If you’ve always found an FTP server useful, then the good thing is you can now create your FTP server since Windows 10 now allows it. You can host this server locally and later on make it globally available via the internet. So if you are planning to set up an FTP server on your Windows 10 computer, read on as this post will guide you on how to do so.

To set up the FTP server, you need to configure it first and then configure the Windows Firewall for the connections to go through. For more details, refer to the following steps:

Step 1: You need to configure the FTP server on Windows 10.
  • In the Search box, type in “Turn Windows Features On or Off” to search for it.
  • Then click on the appropriate result which will open a mini window.
  • From this mini window, scroll down to the list and expand “Internet Information Services where you have to expand the FTP Server section.
  • Next, select all the checkboxes to enable all the entries under FTP Server and then click the OK button to apply the changes made.
  • And now, since your computer is now allowed to host an FTP server, you need to configure it. To do so, type “Internet Information Services (IIS) Manager” in the Search box and click on the appropriate entry.
  • Next, right-click on Sites under the navigation bar of Connections and select Add FTP Site. This will open a new window where you have to input some information about your FTP hosting.
  • Now enter the details and click on Next.
  • Upon clicking Next, you will be prompted to give some authentication details. Enter the following details in the screenshot below.
  • Now click on Finish. After that, you will get an FTP Server being hosted on your Windows 10 PC.
And now that you’ve successfully configured the FTP Server, the next thing you have to do is to allow connections from and to the FTP server. Refer to the next step below. Step 2: Configure the Windows Firewall for FTP connections to pass-through
  • In the Start Search, type “Allow an app or feature through Windows Firewall” and click on the related search result which will open a window with all the settings.
  • From there, click on the Change Settings button. This will display a list where you have to mark all the checkboxes for the FTP server to enable them in both the Private and Public configurations.
  • After that, click OK. This will allow you access to the FTP server on your local network.
Read More
Computer gets stuck on Preparing to configure
If you suddenly find your Windows 10 computer stuck on the “Preparing to configure” screen for quite a long time now after you run Windows Update, read on as you will be guided on how you can fix that issue in this post. During an update process, there’s a lot of things that go on in the background which is why Windows Updates take quite a while before it finishes. It can be at 25%, 50%, or even 100% but the only message you’re going to see on your screen is the “Preparing to configure Windows, Don’t turn off your computer”. However, if you notice that the Windows Update is taking a longer time than it’s supposed to, the first option is to wait some more but if it’s still the same, then there’s definitely something wrong. This kind of issue occurs when Windows Update fails to configure in short correctly download and install the update. When this happens, it will revert all the changes which are why you were advised to wait for a couple of hours. There are two possibilities why your computer is stuck on the “Preparing to configure Windows, Don’t turn off your computer” screen. The first one is that the Windows 10 operating system is installing any updates. The second one is when the user profile takes time to load or encounters an error. There are several options you can try to fix the problem. You can try running System Restore or boot your computer in Safe Mode or repair the corrupted profile via Registry Editor. You might also want to try using installation media to boot and repair your computer if the other options didn’t work.

Option 1 – Perform System Restore

  • 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.
Note: If you can’t boot into the desktop of your computer, you can run System Restore in the Advanced Startup Options by following these steps:
  • Boot your computer into the Advanced Startup Options screen.
  • From there, you will see some options to troubleshoot when you can’t log in to Windows in the usual way.
  • Now select Troubleshoot > Advanced Options > Command Prompt.
  • After that, type “rstrui” and hit Enter to execute the command which will start the System Restore process.
  • Once it’s done, restart your computer.

Option 2 – Boot your computer in Safe Mode

You can try to tap the F8 key if you have it enabled in your Windows 10 computer, as you start your system to boot into Safe Mode. Once your computer is in Safe Mode, you can access the Start Menu and the Mouse and Keyboard. Aside from that, you can also access your files and other built-in tools in Windows such as Command Prompt, PowerShell, Computer Manager, Device Manager, Event Log Viewer, and many more. On the other hand, if you haven’t enabled the F8 key, you can just go to the Advanced Startup options to boot your computer into Safe Mode. Once you’re there, select Troubleshoot > Advanced Options > Startup Settings > Restart > Tap the number 4 key. After that, your computer will restart in Safe Mode. If you want to reboot into Safe Mode with Networking instead, you can tap the number 5 key and for Safe Mode with Command Prompt, tap the number 6 key. Once your computer is in Safe Mode, you can use any of the built-in tools to restore your computer or troubleshoot the problem that’s causing your computer to get stuck at the “Preparing to configure” screen.

Option 3 – Try to repair your corrupted profile via Registry

In this third option, you can try to repair the corrupted profile using the Registry but before you proceed, take note that you can only try this if you can boot into your desktop and if you can, make sure to create a System Restore Point and then follow the steps below.
  • Tap the Win + R keys to open the Run dialog box.
  • Then type “Regedit” in the field and hit Enter or click OK to open the Registry Editor.
  • Next, go to this registry key: ComputerHKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList
  • Once you’ve opened the registry key, you should see a list of all the user profiles on your computer. Now click on each S-1-5 folder and look for the “ProfileImagePath” entry and double click on it to check which user account it is related to. You will see a path like “CUsersACK” where “ACK” is the username.
  • You should know which of the user account is corrupted. Just look for a key named “RefCount” and change its Value data to “0” and click OK. And if it isn’t available, simply right-click on the right pane and create it.
  • After that, double click on the key named “State” and make sure that the Value data is “0” and click OK.
  • Exit the Registry Editor and restart your computer to apply the changes made.

Option 4 – Try to use installation media to boot and repair your computer

Another thing you can try to resolve the issue is to use the Windows installation bootable media so you can boot and repair the operating system. To use it, follow these steps:
  • You need to first create an installation media which has the dame version of the operating system installed in your computer.
  • After that, once you reach the Install Windows screen, click on the “Repair your computer” link.
  • Wait until the repair is completed and then shut down your computer
  • Now once your computer has restarted, check if it can now boot properly.
Read More
Cannot find the MS Software License Terms
Both the Windows 10 and Windows Server operating systems have a number of common system files that vary from the ones that support the installation, boot process, and other operations or tasks in the system. However, if any of these files get corrupted, it might cause some errors during the setup of the Windows 10 operating system. One of these errors is the “Windows cannot find the Microsoft Software License Terms” error.
“Windows cannot find the Microsoft Software License Terms. Make sure the installation sources are valid and restart the installation.”
The only option given when you encounter this error is to click on the OK button and nothing else and then the setup gets interrupted and won’t push through. To fix this error and proceed with the installation, you can try to get a new installation image or switch ports, or fix the CFG file. For more details, follow each one of the potential fixes provided below.

Option 1 – Try to get a new installation image

It is possible that there might be some issues with the installation image. It could be corrupted or was modified illegally. Or it could be that the bootable storage device created might have damaged sectors or installation. To resolve this problem, you need to download a fresh copy of the Windows 10 installation image using the Windows Media Creation tool or simply use the ISO image separately and then build a bootable USB.

Option 2 – Try to switch Ports

The error might be caused by the connection to the USB port. It could be that the port is unstable due to a number of factors that resulted in the interruption of the installation process. To fix this problem, you can try switching the USB port or if you are using an optical drive, you can get an external USB optical drive or connect it to another port internally and see if it fixes the problem.

Option 3 – Try to fix the CFG file

If none of the first two options worked, then you might want to fix the CFG file. This file is a configuration file format used for storing settings. All you have to do is download the CFG file. Once you’ve downloaded this file, copy this file to the root of your bootable drive and then check if it fixes the error. If not, then try to copy the same file inside the “/sources/” folder inside the root of the drive. This should fix the error.
Read More
How to Fix The Rtl70.bpl Error on Your System

Rtl70.bpl Error - What is it?

To understand Rt170.bpl error code, it is important to have a good understanding of .bpl files first. BPL is the abbreviation of Borland Package Library. BPL is a developer file format used by Borland. It contains dynamic link libraries which are used for constructing Borland programs. BPL files are most commonly used for Borland Delphi programs. Delphi competes with Visual Basic as an offering for an object-oriented visual programming approach to application development. There are many programs/applications on your system that use rtl70.bpl file format to run successfully on Windows PC. The rtl70.bpl error occurs when this file gets damaged or corrupted. It fails to execute the command and run the application on your system. When your computer experiences this problem with this file, the following error messages are likely to appear:
  • rtl70.bpl is not responding
  • Runtime error: rtl70.bpl
  • Symantec User Session has encountered a problem and needs to close. We are sorry for the inconvenience. Application Name: rtl70.bpl
This error code exposes you to system freeze, crash, abrupt system shutdowns, blue screen of death errors, and it also reduces your PC performance.

Solution

Restoro box imageError Causes

The potential causes of rtl70.bpl error code includes:
  • DLL file was damaged due to viral infection or spyware
  • DLL file was overwritten by an incompatible version
  • Poor program installation
  • Too many invalid and obsolete registry entries stored in the RAM
  • Related Registry entries are corrupt

Further Information and Manual Repair

Here are some of the best yet simple solutions for you to resolve rtl70.bpl error on your PC:

1. Reboot Your PC

Sometimes this error can be resolved by simply restarting your system. Try rebooting your system and running .bpl supported program. If the program runs after you reboot your PC, then that’s great! But you should keep in mind that this is a temporary solution. The error may reappear anytime soon. So, it is advisable to consider a long-term solution for repairing the error code for the longest time.

2. Uninstall and then Reinstall the Program Causing the Error

If the error occurred after a certain program installed on your system,  it is advisable to uninstall it and then reinstall the program. Simply go to the control panel, select Add/Remove program option and uninstall the program that you recently installed that could be triggering the rtl70.bpl error code. Now reinstall and run it on your system. If the error is resolved, then this means the poor installation was the cause. If not, then this means the cause of the error is related to the registry.

3. Registry Restore to Fix rt170.bpl error

There are two ways to go about it. The first one is to click on the start menu, type registry editor, and press run. This will open the registry editor. Now click on the computer option then click file and import. This helps restore the registry but it is possible that the problem might persist. The error code may pop up again. Also, if the registry is damaged due to viral infection, then this solution may not work and you may still experience the error on your system. Then you will also have to download an antivirus which may further reduce the speed of your PC. However, the best way to restore the registry and to get rid of the error code for the longest time is to download Restoro. This is a new, user-friendly, high and multi-functional repair tool that functions as a registry cleaner and a system optimizer. It cleans the registry by scanning and removing all the unnecessary and obsolete files saved in RAM such as junk files, internet history, invalid registry entries, and more. It also repairs the damaged dll files and restores the registry thereby resolving the rtl70.bpl error. Restoro is easy to use, safe, efficient, and compatible on all Windows versions. To get started and resolve the rtl70.bpl error code in just a few seconds on your system click here and download Restoro.
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