Logo

Fix System doesn’t have any USB boot option

Lately, some users reported getting an error that says, “System doesn’t have any USB boot option, Please select other boot option in Boot Manager Menu” when they tried to reinstall the Windows 10 operating system on their PCs or boot from an installation media. If you have the same problem, then this post should help.

This kind of error is applicable to multiple devices by various OEMs and is mostly due to the Secure boot being enabled, or the Legacy or CSM support being disabled. It could also be that the bootable USB device was not correctly made and so on. Whatever the cause may be, here are some suggestions you need to check out to resolve the “System doesn’t have any USB boot option, Please select other boot option in Boot Manager Menu” error and reinstall Windows 10 successfully.

Option 1 – Disable the Secure Boot in the BIOS

Disabling the Secure Boot in the BIOS settings is definitely recommended to resolve the error. To disable Secure Boot, here’s what you have to do:

  • First, boot your computer into Windows 10.
  • Next, go to Settings > Windows Update. From there, check if there is anything that you have to download and install if you see any available updates. Usually, OEMs send and update the list of trusted hardware, drivers, and operating systems for your computer.
  • After that, go to the BIOS of your computer.
  • Then go to Settings > Update & Security > Advanced Startup options. If you click on Restart Now, it will restart your computer and give you all the advanced options.
  • Next, select Troubleshoot > Advanced Options. As you can see, this screen offers you further options including System restore, Startup repair, Go back to the previous version, Command Prompt, System Image Recovery, and UEFI Firmware Settings.
  • Select the UEFI Firmware Settings which will take you to the BIOS.
  • From there, go to the Security > Boot > Authentication tab where you should see Secure Boot. Note that every OEM has its own way of implementing the options so it varies.
  • Next, set Secure Boot to Disabled and set Legacy Support to On or Enabled.
  • Save the changes made and exit. Afterward, your computer will reboot.

Option 2 – Try to reset the BIOS or the UEFI Settings

If updating the BIOS didn’t help in fixing Error 0199, you can try to reset the BIOS instead.

  • Start your computer and tap the F10 key during the booting process to enter the BIOS. If it does not work, you can try tapping the F1 or F2 key as well as the Del key.
  • Once you’re already in the BIOS, tap the F9 key to get the prompt to RestoreLoad default configuration now for the BIOS.
  • Next, click on Yes and then follow the next on-screen instructions that appear to set the BIOS back to its default settings.
  • Once you’re done restoring the default settings of the BIOS, restart your computer and then check if it now boots properly.

Option 3 – Make a proper bootable USB Drive/Stick

To make a proper bootable USB drive, you need to use the Windows Media Creation tool. The Media Creation tool in Windows allows you to use the ISO installation file to make a bootable device that you can use to install Windows on your PC. Note that this is kind of different from the usual installation process as it could erase your computer’s current settings and data on the primary drive. Thus, before you proceed, you need to backup all your data into some removable drive and then use the Media Creation Tool to make a bootable drive.

  • After making the bootable drive, you need to plug it into your computer and then reboot.
  • Next, tap the F10 or Esc key to open the boot options.
  • Now set the boot priority of the removable drive the highest. Once the setup comes forth, follow the next onscreen instructions and install Windows without any problems.

Option 4 – Try enabling Legacy or CSM boot support

If the Legacy or CSM boot support is disabled, then it’s no wonder why you’re getting an error. Thus, you need to enable it by following these steps:

  • Open Settings and go to Update & Security > Advanced Startup options.
  • Next, click on Restart Now to reboot your computer.
  • After that, select Troubleshoot > Advanced Options where, you will see more options such as System Restore, Startup Repair, Go back to the previous version, Command Prompt, System Image Recovery, and UEFI Firmware Settings.
  • From there, enable Legacy Support and then save the changes and exit. This will restart the computer.
  • Once your computer has restarted, check if the error is now fixed.

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

Rebuild Search Index in Windows 10
If by any chance your search result in Windows is misleading, missing, or incorrect then it is a high probability that your search index is out of date. To repair this issue follow this guide step by step. Please take note that rebuilding the whole search index can take a long time on some systems depending on the size of the index itself, CPU speed, HD speed, etc. Sometimes it can take even hours on large drives. First, press ⊞ WINDOWS + R to open the run dialog and type in it Control panel to open the control panel. keyboard with windows and r markedrun dialog with control panel typed in Once you are in the control panel, switch your view to large icons and locate Indexing options. Control panel with indexing options selectedInside indexing options, click on advanced. indexing options advanced button markedIn advanced options click on the rebuild and confirm. indexing options rebuild button markedLeave your computer to finish and your searches should be working fine now.
Read More
Lock folder with password in Windows 10
Hello and welcome everyone. In today's article, you will learn how to lock folder and content in it. Please be aware of few things:
  1. The method is shown here works, but you need to be careful and follow step by step or you will damage your files permanently,
  2. If you forget your password, you can not access your files anymore
  3. Your files altho protected can still show up in recent files of some applications
All of that being said, let us start with locking the local folder on the computer with the password. Go to the folder where you have files that you would like to hide and lock with a password. Enter the folder and create the new text file inside it. Skip the name for now and go inside it. Copy and paste the following code inside the file:
cls @ECHO OFF title Folder Locker if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Locker goto MDLOCKER :CONFIRM echo Are you sure u want to Lock the folder(Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock folder set/p "pass=>" if NOT %pass%==Your-Password-Here goto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Locker echo Locker created successfully goto End :End
Now locate this line of code in the document: if NOT %pass%==Your-Password-Here goto FAIL and replace Your-Password-Here with your password. !!! Write down somewhere your password, if you lose it you will lock the folder even for you !!! Save the file as FolderLocker.bat and double-click on it to execute it. If everything was done correctly, a new folder with the name: Locker Move files that you want to hide and protect inside that folder. Double click again on FolderLocker.bat The command prompt will appear with the question do you want to lock the folder, press Y, and press ENTER. The command prompt will close and the Locker folder will disappear. In order to unhide and access the folder, you will need to double click on FolderLocker.bat again but this time command prompt with ENTER your password will appear. Type in your chosen password and the folder is back. If you wish to hide and lock it again just double click on FolderLocker.bat again, confirm with Y and it is hidden again.
Read More
Fix Windows Cannot Find a System Image
If you have encountered the “Windows Cannot Find a System Image on This Computer” error while you are trying to restore a system image, then read on as this post will guide you in resolving this problem. A system image is basically a backup of your whole data in the system. For instance, it can be the backup data of your hard disk or the whole hard disk itself, or one of the volumes. This is really useful in some cases like when you are not able to get back into your system for some reason or when your system has been corrupted. In such cases, you can utilize this feature and get going safe and sound. However, not all things go the way as expected like when you make a system image of a drive for instance, or use that backup to restore data and you suddenly encounter the “Windows Cannot Find a System Image on This Computer” error. This kind of error occurs due to a number of reasons but worry not for your data is safe and you can fix this error easily. This error is most likely triggered by changing the name of the “WindowsImageBackup” folder. Renaming this folder will certainly be an issue since it is the one that stores all your data. Aside from renaming the WindowsImageBackup folder, renaming the sub-folders can also cause this error which means that renaming the sub-folders of the WindowsImageBackup folder can trigger the error. To fix this error, here are some suggestions that might help:

Option 1 – Try putting the WindowsImageBackup folder in the Root directory

Windows will have issues finding the WindowsImageBackup folder if it isn’t in the root directory of the drive so if it is not there, the “Windows Cannot Find a System Image on This Computer” error will pop up. When a folder is in a root directory, it means that it shouldn’t be stored within a folder but in the main directory instead.  Thus, you need to put the WindowsImageBackup folder in the root directory to fix the error.

Option 2 – Don’t add any sub-folders in the WindowsImageBackup folder

Another cause of the error is when you add sub-folders in the WindowsImage Backup folder. Adding any sub-folders in this folder will only trigger the error so you should leave the folder as it is and you must not make any modifications to it. So if you have added sub-folders in it, make sure to remove them right away.

Option 3 – Make sure that there is one system image per USB drive

The error can also appear if you’ve stored multiple images inside a single USB drive as it could confuse Windows and will trigger the “Windows Cannot Find a System Image on This Computer” error. Note that storing system images of different volumes of your hard disk in a single USB will prevent you from restoring your data.

Option 4 – Try renaming the System Image folder

If you’ve just changed the name of the System Image folder after you store it on a USB stick or other external device, then it’s no wonder why you’re getting the “Windows Cannot Find a System Image on This Computer” error. Windows search for the default name, “WindowsImage Backup” folder when restoring your data so if it is not able to find it, it throws up this error instead. To fix the error, you need to change the folder back to its default name which is “WindowsImageBackup”.

Option 5 – Check the WindowsImageBackup sub-folders

As mentioned earlier, renaming sub-folders in the WindowsImageBackup folder can trigger the error so if you have renamed sub-folders in this folder, you need to change them back to their default names so that you can restore your data peacefully.
Read More
A Guide to Resolving Error Code 35

Error Code 35 - What is it?

Error Code 35 is a typical Device Manager error. It indicates information missing to properly configure your device.  Error code 35 is usually displayed in the following format:

“Your computer's system firmware does not include enough information to properly configure and use this device. To use this device, contact your computer manufacturer to obtain a firmware or BIOS update. Code 35”

Solution

driverfix boxError Causes

The 2 common reasons for Device Manager error code 35 are:

  • Outdated BIOS
  • Mis-configured, corrupted, or outdated Drivers

No matter what the reason may be, it is advisable to resolve the problem immediately without any delay otherwise you will be unable to use your hardware device.

Further Information and Manual Repair

Below is the list of the most effective and easy to perform solutions to resolve error code 35 on your PC. These solutions do not require any technical knowledge or understanding. Simply follow the instructions to resolve this error code.

Method 1 - Update the BIOS

BIOS (Basic Input/Output System) is the embedded software on the computer’s motherboard.

Though not all PCs have the same BIOS manufacturer, but the steps for updating the BIOS are similar for all versions. Before you get started with the updating process, first identify your current BIOS version.

  • For this, go to the start menu and type msinfo32, and press enter.
  • Now click System Summary to view your BIOS version. Here you will see the version number and date.
  • Now check your PC motherboard manufacturer’s website to download the BIOS update for the model you own. Also, download any Read Me Files and documentation. These contain guidelines and precautions that you should know before you update.
  • Backup all your data and existing BIOS before you update the BIOS version. This will keep your data protected in case the attempt to update BIOS fails.
  • Also, when updating, make sure to use an uninterruptible power supply. Remember power outage or even a small power fluctuation can corrupt the BIOS which is something you don’t want.
  • Now it’s time to perform the update. Run the downloaded installer for the BIOS updating software. Double click on the executable file.
  • Look for a button names Update, Flash, or Run.
  • Click on it to start updating the new version
  • After the update is complete, your computer will restart automatically.

This will hopefully resolve the problem. However, if the error still persists then there is a possibility that the error code is related to outdated drivers. To resolve, try method 2.

Method 2 - Download Driver Assist to Update Drivers Automatically

Update drivers to repair error code 35 on your PC by simply downloading DriverFIX. This is a cutting-edge program deployed with an intelligent programming system.

It is compatible with all Windows versions.

It scans your PC for problematic drivers and updates them with the latest and compatible versions automatically and in a few seconds thereby repairing all Device Manager error codes including error code 35 generated due to outdated/corrupted drivers.

In addition to this, it updates all device drivers on a regular basis, so you don’t have to stress over and keep a track of what drivers on your PC need to be updated and when.

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

Read More
Fix igfxem.exe application error in Windows 10
When you get an igfxem.exe error in Windows, it is not really clear what does this means, usually, Windows throw us some code or we get a DLL error, rarely we get an EXE error. So what does this error means? Intel Graphics Executable Main Module, shortly called as IgfxEM module is a part of the Windows operating system. When you run Microsoft .NET Framework applications that use the AS/400 Data Queue ActiveX control (Mseigdq.dll) to read from and to write to IBM iSeries (AS/400) data queues, you may experience this error. In order to overcome this error and cope with it try the following things:
  1. Increase Virtual Memory

    Go to the Start Menu and click on Settings. Type performance. Choose Adjust the appearance and performance of Windows. In the new window, go to the Advanced tab and under the Virtual memory section, click on Change. At the bottom of the new window, check what the Recommended value is and how it compares to Currently allocated. If the current setting is significantly less than the recommended, uncheck the Automatically manage paging file size for all drives box at the top of the same windows and then click on Custom size. Enter the Recommended value in the Initial Size box, and a larger figure in the Maximum size box. Click OK to save the new settings.
  2. Download and update .NET framework

    Go to the Microsoft website and download the latest .NET framework. Once the download is complete, install the package following onscreen instructions.
  3. Reinstall INTEL graphic drivers

    Go to the intel website and download the latest graphic drivers for your graphic card model. Once the download is complete, install the package following onscreen instructions.
  4. Run SCF scan

    If all else fails, run command prompt and inside type sfc /scannow
Read More
Everything You Need to Know About Disk Partitioning

Disk partitioning is a concept that’s been around for so long, but is still only familiar to few. If done right, it can help get your computer in perfect order. 

Today we bring you a simple definition of disk partitioning, its pros and cons, and a quick tip on how to do it properly to reap its full benefit!

Definition and purpose

The simplest way to define disk partitioning would be: it’s exactly what it sounds like. It means taking a hard disk drive and separating it into different segments. These segments are called partitions. You can visualize it as cutting a cake into smaller pieces - not necessarily of the same size, though. 

So what is the purpose of these pieces?

Well, when you first get a hard drive, it’s basically just a bunch of unallocated storage space. Until there’s at least one partition, this space is unusable to your operating system. Once you create a partition, your OS will recognize it as usable storage space. 

You can choose to create a single partition and use it for all your files, from program files to personal data. A lot of off-the-shelf computers come with one primary partition like this and a small secondary one reserved for recovery purposes. 

Whether or not you want to split your disk into more than one segment is up to you. We would generally recommend it, though. The whole point of partitioning is for each segment to have its own purpose.

So treating all your storage space as a single unit containing different file types would be like constructing an office building with only one massive room for everything - day-to-day work, conferences, interviews, etc. And all of this for different departments of the company. You can see how this might get a little messy.

Creating multiple partitions eliminates the task of running several different types of files from the same place. This takes a heavy load off the entire process of accessing data.

Disk partitioning also brings a ton of other benefits to the table. An important disclaimer, though: there are disadvantages too. We will walk you through both sides to help you get an objective idea and make an informed decision.

Several 4TB hard disks in a unit.
Source: Kina on Unsplash

What are the benefits of disk partitioning?

1. Better file organization

This is the most obvious and perhaps the biggest advantage of partitioning your hard drive. 

As we already mentioned, partitioning allows you to create separate segments for different file and data types. You wouldn’t want to use the same partition for your system files and for games, would you? 

If organization and time management are important to you, then multiple partitions are the right solution. Searching for specific files will be much easier overall. Say you have one hard drive, but three partitions: C for the system files alone, D for multimedia files and documents, and E for games and apps. Your computer loads the system from C without interference from the other two, and you know exactly where to look when searching for a file.

2. Easy reinstallation

File management isn’t the only thing made faster and simpler thanks to partitioning. If you opt for creating multiple segments on your drive, reinstalling Windows will be easy peasy. 

That’s because all you need to do is format the partition your system is on. Then you reinstall the OS on it, and there you go. Now you have a clean installation, with all your files saved on other partitions intact. You can even make a copy of your system partition, so you can revisit the exact same installation in the future if you want. And the whole time your pictures, music, documents stay exactly where you left them. 

A laptop with list of apps on a desk.
Source: Andrew M on Unsplash

3. Possibility of using multiple file systems

By now you’ve understood that partitions function completely separately. This means that, if for some reason you need multiple file system capabilities, partitioning will allow that.

One segment could be used for, say, an NTFS file system, while another could run ext or APFS.

4. Running different OSes

You’re an avid Windows user but need to use Linux on the side? No problem. You don’t need to buy a separate computer or anything. The possibility of running different file systems also means you can use partitioning to run multiple operating systems.

Doesn’t that sound enticing? One machine for multiple totally different uses!

5. Backup and recovery made simple

Data loss can happen on any disk, partitioned or not. However, it’s much easier to get it back on a partitioned one. You know where you stored what, and each partition can be backed up exactly as it is. It’s also a lot faster to back up single partitions than entire hard drives.

Ultimately this also means a faster path to recovery. If you lose or accidentally delete important files and data, you might want to use a recovery tool like Recuva to scan for them and get them back. Recuva is even powerful enough to recover data from damaged hard drives. But no matter how powerful, scanning a whole drive is strenuous for any recovery tool. Scanning independent partitions is a lot more convenient than that, and will get you to your goal more efficiently.

6. Optimized performance

Now, let’s keep in mind that computer performance is influenced by a number of factors. Partitioning alone isn’t what makes it better or worse. However, it can contribute to optimization. It’s easier for your computer to scan, say, a 40 GB partition to fetch the system file it needs than scanning the entire capacity of your drive.

7. Improved security (possibly*)

Separate partitions can help make your system more secure. Firstly, they minimize file corruption. If one partition gets corrupted, the others should remain unaffected. And keeping in mind the previous point about backup and recovery, ‘fixing’ the damaged partition would be much easier than fixing the entire hard drive. 

Partitioning also improves security in terms of malware protection. A malicious attack on one partition is easier to deal with than malware on the whole drive. If your system partition gets infected, you can simply reinstall your OS and that should do the trick.

*Do keep in mind that partitioning can’t defend you against more advanced attacks. So make sure not to give in to a false sense of security.

What are the disadvantages of partitioning?

1. Data is still vulnerable

Yes, it’s easier to back up and recover data from independent partitions. And yes, partitioning may help protect separated files and data to a higher degree. But remember: everything is still on a single physical drive. So while digital errors and issues may be easier to deal with on partitioned drives, physical damage obviously won’t be.

If your hard drive is destroyed in some way, all data on it will be gone. That’s why, if you have crucial files on your PC, it’s important to give them the proper backup treatment before it’s too late.

2. Disbalance of space

Allocating storage space on separate partitions may be a little more tricky than you think. You may fill up one partition a lot faster than another. So on one side you’re struggling with space, and on another you have too much of it to spare. Imagine nearly filling up your system partition and then it turns out you need a lot more space for its updates than you thought.

That’s why you really have to be sure you actually have enough files of different types that you need help managing efficiently. Otherwise you’ll just create a struggle and disbalance in terms of storage.

3. Increased risk of error

If done incorrectly, partitioning can lead to more harm than good. Aside from space disbalance, there is an increased risk of incorrect partition sizes and formatting. Plus, human error is also a factor: in a moment of distraction, you may erase one partition when you meant another. Undoing such mistakes will definitely be tedious and time-consuming.

4. SSDs eliminate the need of partitioning

SSDs (solid-state drives) don’t function in the same way that HDDs do. They have faster read times and can organize files on their own. This quite literally eliminates the need for organization on your part.

Partitioning: yes or no?

The bottom line is that multiple partitions might not be necessary for the average user. But if you’re planning on storing many file types or different file and operating systems on the same PC, then you should give it a shot. It’s also an excellent solution for businesses, of course.

And if our pros and cons list isn’t enough to help you decide, you can always send us a message and we’ll help you make the right choice.

Decided to partition your hard drive?

If you’ve decided to give it a go, you definitely should make sure to do it right. 

The two most effective and reliable ways to partition are using the built-in options on Windows or investing in a dedicated partitioning tool, like the EaseUS Partition Master. Which one you'll opt for depends on your specific needs. 

Option 1 may be more suitable for users with at least some level of experience. In this case, you’d have to know exactly which steps to take without making errors. This is done in Disk Management on Windows 10/11. From there, you can select the partitions you’d like to split into different volumes of selected sizes.

If this is your first time partitioning, we highly suggest you either consult professionals for this or move on to option 2. The EaseUS partitioning software is specifically designed for beginners, with an intuitive interface helping you succeed in the process. All you need to do is pick the Partition Master package tailored to your needs and follow their guide

Each package offers technical support as well, and even free upgrades (to varying degrees based on your subscription). Plus, all of this is valid for not one, but two PCs.

It’s the perfect solution for a smooth and error-free partitioning process. If you want to organize your hard drives efficiently and make the most of all your space without doing irreparable damage, it’s definitely worth the investment.

Read More
Fix ERR_CONNECTION_RESET in Chrome
This post will help you fix the ERR_CONNECTION_RESET error in Google Chrome. This error indicates that the Chrome browser wasn’t able to establish a stable connection or that there really is no connection at all with the website you are trying to open. This error does not occur on all websites though. When you encounter this kind of error message you will see the following message on your Google Chrome browser:
“This website is not available, The connection to example.com was interrupted, Error 101 (net:: ERR_CONNECTION_RESET): The Connection was reset.”
Note: You need to follow the options given below to fix the ERR_CONNECTION_RESET error and make sure to reload the webpage each time you complete following each one of the fixes.

Option 1 – Check the Network Cables and restart the router then reconnect

Of course, the first thing you can try is to check if the network cables connected to your computer or router are properly connected. And if your computer is connected via Wi-Fi, you need to make sure to restart your router once. In addition, you can also forget the Wi-Fi your computer is currently connected to and then try reconnecting again to see if it would work.

Option 2 – Try removing the Proxy

Removing the Proxy might also help you in fixing the ERR_CONNECTION_RESET error in Chrome. Here’s how you can do it:
  • Tap the Win + R keys to open the Run dialog box.
  • Then type “inetcpl.cpl” in the field and hit Enter to pull up the Internet Properties.
  • After that, go to the Connections tab and select the LAN settings.
  • From there. Uncheck the “Use a Proxy Server” option for your LAN and then make sure that the “Automatically detect settings” option is checked.
  • Now click the OK and the Apply buttons.
  • Restart your PC.
Note: If you are using a third-party proxy service, you have to disable it.

Option 3 – Try to increase the Maximum Transmission Unit (MTU)

You can also try increasing the Maximum Transmission Unit to fix the error. To do so, follow these steps:
  • Open Settings and go to Network & Internet > Ethernet.
  • From there, take off the Active Wireless / Wired Network Connection.
  • Next, open Command Prompt as admin.
  • Then type the “netsh interface IPv4 set subinterface “Ethernet 4” mtu=1472 store=persistent” command and hit Enter to execute it.

Option 4 – Flush the DNS and reset TCP/IP

Flushing the DNS and reset TCP/IP could also help in fixing the ERR_CONNECTION_RESET error in Chrome. To do so, refer to these steps:
  • Click the Start button and 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, you have to type each one of the commands listed below. Just make sure that after you type each command, you hit Enter
    • ipconfig /release
    • ipconfig /all
    • ipconfig /flushdns
    • ipconfig /renew
    • netsh int ip set dns
    • netsh winsock reset
After you key in the commands listed above, the DNS cache will be flushed and the Winsock, as well as the TCP/IP, will reset.

Option 5 – Disable the AppEx Networks Accelerator feature

The AppEx Networks Accelerator is known to slow down network connections. Some users reported that it slows down the network speed by 70% up to 80% which is why you need to disable it. Here’s how you can do it:
  • Go to Settings and select Network & Internet and from there select Ethernet > Change adapter options.
  • Next, right-click on the network connection and select Properties.
  • Then look for AppEx Networks Accelerator and uncheck its checkbox.
  • Now click the OK button to save the changes and then check if the error is now fixed.

Option 6 – Delete the WLAN Profiles

Deleting the WLAN Profiles might be a good idea if you are not able to connect to the internet on your computer and if you’re using Wi-Fi. It could be that the networks that were connected previously have gone rogue which is why it is not connecting properly. And so deleting the WLAN profiles might help you in fixing the ERR_CONNECTION_RESET error.

Option 7 – Reinstall the Network Adapter Drivers

  • Tap the Win + R keys to launch the Run window and then type in the “devmgmt.msc” command and hit Enter to open the Device Manager window.
  • Under the Device Manager, you will see a list of drivers. From there, look for the Network Adapters and expand it.
  • Then right-click on each one of the Network drivers and select “Uninstall device”.
  • Restart your PC.

Option 8 – Try to disable the Wi-Fi Miniport

  • In the Cortana Search box, type “command prompt” then right-click on the search result and select “Run as administrator”.
  • After opening Command Prompt with admin privileges, type the commands listed below and hit Enter right after you key in each one of them.
    • netsh wlan stop hostednetwork
    • netsh wlan set hostednetwork mode=disallow
  • Now exit Command Prompt and tap the Win + R keys to open the Run dialog box.
  • Type “cpl” in the field and hit Enter to open Network Connections.
  • From there, look for Microsoft Virtual Wi-Fi Miniport and right-click on it, and then select Disable.

Option 9 – Start Chrome in Safe Mode

The same with Windows Safe Mode, starting Chrome in Sage mode will open the browser but without all the user settings and extensions. And then try opening the website you were trying to open earlier.

Option 10 – Reset Google Chrome

  • Open Google Chrome, then tap the Alt + F keys.
  • After that, click on Settings.
  • Next, scroll down until you see the Advanced option, once you see it, click on it.
  • After clicking the Advanced option, go to the “Restore and clean up the option and click on the “Restore settings to their original defaults” option to reset Google Chrome.
  • Now restart Google Chrome.
Read More
Enable or Disable Windows 10 Boot Log
Booting the Windows computer system includes loading it from the various boot devices such as drivers, network as well as USB drives when the computer is turned on. The instant the startup sequence is done loading the operating system the system hardware will be ready to perform some complex operations – in this process, the Boot Log in Windows 10 is a record that maintains the list of success or failure of many pieces of Windows 10 system during the booting process. In other words, the Boot Log is the one that keeps a record of all that has happened while loading from the computer storage system to the memory during the boot process. It is available for several devices like network, hardware devices, and the operating system which assist in detecting issues during the boot process and other issues with regards to troubleshooting. Through Boot Log, you’ll know which drivers were unloaded and loaded from the start of the system during the boot process. You have the option to either disable or enable this feature on your Windows 10 PC. Named as “ntbtlog.txt”, the log file lists all the successfully loaded processes and the unsuccessful ones during the boot process. It is saved to the drive C:Windowsntbtlog.txt. As mentioned, you can enable or disable this feature in two ways – the first one is by using the System Configuration or MSConfig while the second one is using the Command Prompt. In this post, we’ll show you how you can enable or disable Boot Log in Windows 10 either way.

Option 1 – Enable or Disable Boot Log using System Configuration

Enable Boot Log:
  • Tap the Win + R keys to open the Run dialog box.
  • Then type in “msconfig” and click OK to open System Configuration.
  • After that, go to the boot tab and check the checkbox labeled “Boot Log” under the Boot options so that you can enable the Boot Log feature.
  • Then click on OK to save the changes made.
  • Next, click on the Restart button in the prompt window to get started with the Boot Log process.
  • After restarting your PC, go to C:Windowsntbtlog.txt to open the boot log.
Note: As pointed out earlier, the log file contains a list of all the successfully loaded drivers and also the list of drivers that failed to load during the boot process and every time you restart the system, the boot log file will keep on updating and will eventually increase the list of entries. For you to locate the drivers and make your troubleshooting a lot easier, I advised disabling the boot log after troubleshooting. To disable the boot log using System Configuration, refer to the steps below. Disable Boot Log:
  • Tap the Win + R keys to open the Run dialog box.
  • Then type in “msconfig” and click OK to open System Configuration.
  • After that, go to the boot tab and unmark or uncheck the checkbox labeled “Boot Log” under the Boot options so that you can disable the Boot Log feature.
  • Then click on OK to save the changes made.

Option 2 – Enable or Disable Boot Log using Command Prompt

Enable Boot Log:
  • Go to the Start Menu and then type in “command prompt” in the search bar.
  • After that, right-click on the Command Prompt option and select the “Run as administrator” option.
  • After opening Command Prompt, type in “bcdedit” and tap Enter.
Note: You have to find the Identifier of the current operating system first to enable the Boot log. You can find it under the Windows Boot Loader section in the “Description” field and in this case, it’s Windows 10. You can also find the operating system identifier under the Windows Boot Loader section next to the field name identifier.
  • To check if the boot log entry is disabled or enabled, go check the “Bootlog” field under the Windows Boot Loader. And if it turns out that the “bootlog” entry is enabled, the entry will be “Yes”. Otherwise, the entry will be “No”.
  • Next, type in the following command with the operating system identifier to enable the boot log.
bcdedit /set {identifier} bootlog Yes
Note: In the command given above, make sure that you replace the given system identifier with your computer’s system identifier. For instance: In this example, the identifier was replaced with the actual operating system identifier as current.
bcdedit /set {current} bootlog Yes
  • Afterward, restart the system to start the Boot log process.
  • After the restart, go to C:Windowsntbtlog.txt to open the boot log.
Note: Every time you restart your computer, the boot log file will keep on updating which will increase the size of the log eventually. So if you want seamless and easier troubleshooting, it is advised to disable the Boot log after you troubleshoot. To disable it using the Command Prompt, here’s what you have to do. Disable Boot Log:
  • Go to the Start Menu and then type in “command prompt” in the search bar.
  • After that, right-click on the Command Prompt option and select the “Run as administrator” option.
  • Once the Command Prompt is opened, type in the following command and then tap Enter to disable the boot log feature.
bcdedit/ set {identifier} bootlog No
Note: In the command given above, you need to replace the given system identifier with your computer’s system identifier. For instance: In this example, the {identifier} was replaced with the actual operating system identifier as {current}.
bcdedit /set {current} bootlog No
  • Now close the Command Prompt.
Read More
Fix Copy & Paste issue in Windows 10
Copy & Paste function is an essential option in properly working Windows, from copying text to weblinks and many other sources like pictures and files it is one of the crucial features in Windows. When the copy and paste feature is not working we are somewhat left in Windows limbo, essentially Windows itself is working but without this specific feature it is very hard, almost impossible to get any work done, if you are an unfortunate user who has faced this particular issue do not worry, we have solutions for you.
  1. Update Windows

    Glitches come in various forms and sometimes they are introduced in updates, check to see if it is available Windows update and if it, download and install it, there is a very high chance that the next update will bring fixes for known glitches.
  2. Disable antivirus

    A good antivirus is an essential piece of software for any PC, however, sometimes it can interfere with the basic operations of windows itself. Disable it completely to see if copying and pasting will start to work, if this is a case, see can you somehow turn options off in antivirus or switch to another one.
  3. Run Check disc

    Corrupted applications and system files can cause issues with Windows functioning, the easiest way to solve this issue is to run build-in Windows Check disk utility and let it scan and fix potential issues.
  4. Run SFC

    If the check disk failed to fix the issue, run command prompt as administrator and type in sfc /scannow, file checker will go through all files and fix if it finds anything including corrupted system files. Reboot your system after the operation completes. Please note that an SFC scan can take a long time sometimes, do not interrupt the scanning process and leave it to finish.
  5. Restart rdpclip process

    Restarting rdpclip.exe can solve the issue. Open task manager and under process find rdpclip.exe, right-click on it and end it, then go to windows/system32 and search for rdpclip.exe and double click it. Please note that you will be able to find this process only if you are on a remote PC machine, on a local user machine rdpclip is not running.
  6. Rollback to the previous system restore point

    If this particular issue was introduced in the latest update and previous solutions have not worked, roll back to the restore point where everything was working as it should.
  7. Stop virtualization

    if you are using virtual software there is a chance that the shared clipboard feature is interfering with Windows, turn the Virtual machine off and try copy & paste again.
Read More
A Quick Guide to Fixing the Flash.ocx Error on Your PC

Flash.ocx Error - What is it?

To understand this error, first, it is important to understand what Flash.ocx actually is. Flash.ocx is basically a flash plug-in or ActiveX file that is responsible for the adobe flash player to work on the system. The Flash.ocx error triggers due to issues in the Adobe flash player.

Solution

Restoro box imageError Causes

The error Flash.ocx may occur due to many reasons. These include:
  • Flash player corruption
  • Corrupted and broken Active X components
To this error code is not fatal but nonetheless it is still advisable to fix it right away to avoid inconvenience when using Flash player. The inability to run the Flash Player smoothly will hinder you from watching videos on your PC and playing exciting web-based games.

Further Information and Manual Repair

To resolve this error on your system, you don’t have to hire a professional and spend hundreds of dollars. This error code is quite easy to fix. You don’t need to be technically sound to resolve this error code. Simply follow the methods give below to fix the Flash.ocx error code in a few minutes.

Method 1: Reinstall the Flash Player

If the error occurs due to the corruption of the Flash Player, then it is advisable to reinstall the player on your PC. However, before you do that first remove the previous versions of Adobe Flash Player on your system. If the previous corrupted version is not removed properly, then you will be unable to re-install it properly on your PC again. Go to the Add/Remove Programs and find the Flash Player and uninstall it. Make sure the files are also removed from the registry. Once you have successfully uninstalled the corrupted version, now go to the official website of Adobe Flash Player and download the utility from the website. Install it and run it on your system. If it works, then this means the error is resolved. However, if the error still persists, then try method 2.

Method 2: Download Restoro to Fix Active X components

Another reason for Flash.ocx error code can be broken or corrupted Active X components. If this is the issue, then the best way to resolve it is to download Restoro. This is a multi Reimagefunctional and advanced PC Fixer deployed with multiple high-performance scanners including Active X and Class scanner. The Active X and Class scanner perform an entire PC scans for corrupt and broken Active X entries along with missing software paths and invalid combinations. After the scanning process is complete, it repairs and restores the components back to normal. Thereby resolving the Flash.ocx error right away and ensuring smooth video browsing over the web. Restoro is an efficient and a safe program. It has a user-friendly interface and easy navigations. It can be used by all level of users. Besides the Active X scanner, it includes 5 more value-added utilities like a registry scanner and an antivirus to name a few. It is compatible with all Windows versions Click here to download Restoro on your PC and resolve Flash.ocx error code now!
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