Logo

Command prompt tips and tricks

Hello and welcome to errortools articles. Today we will talk about some great and awesome tips and tricks for the command prompt. Commands which can make your life easier and your workday more pleasant.

That being said let's dive in right into muddy waters and swim out with new knowledge.

Tip 1: Read Motherboard information

There are a lot of reasons why you would like to read information from your motherboard, maybe you would like to upgrade your BIOS, perhaps you would like to know the serial number, maybe even the version number. Well, you can, type the following code into the command prompt and you will receive all information about your motherboard.

wmic baseboard get product,version,serialnumber,product

Tip 2: Copy command output to clipboard

Getting information from the command prompt to a word processor, into an email or any other medium can be somewhat troublesome, usually, people tend to screenshot or write from a command prompt into another destination, which could induce errors, and let's be honest, it is not practical. You can copy command output directly into the clipboard ready for pasting it anywhere with | clip. So for example if you would like to paste the directory structure of your c drive command would look like: dir c: | clip, now output would be placed into the clipboard ready to be pasted anywhere needed.

Tip 3: Erase data permanently

When you delete data on your hard drive, what really happens is that files are marked with a marker which marks that space for new data writing, but the data itself is still present and can be brought back. This sometimes could impose problems but if you would type: cipher /w:c Windows will write random data over each marked file deleting it forever without means to be brought back.

Tip 4: Manage your IP address

If you would like to play with your IP address and do fancy stuff with it do the following:
ipconfig /release to release your IP address
ipconfig /renew to renew your IP address
ipconfig /flushdns to flush down DNS information and enjoy a new browsing start.

Tip 5: Check to see are packets reaching the desired location

You installed a new LAN printer, or a new switch, maybe you want to check if your new site is up and running. Use ping destination in order to see if TCP packets are reaching desired information, you can use it with a specific address like ping 192.168.1.1 or you can type a web address, for example, ping google.com and see if a connection can be established.

Tip 6: Get information about a specific command

So you learned some command prompt commands, but you do not know all of their configuration or switches? No worries, just type command/? to get a list of available switches for it. For example ipconfig/? will write you a list of available switches for ipconfig command.

Tip 7: Link and execute multiple commands one after another.

Let us say that for example, you would like to copy files into a different folder, then rename some and delete others and you need to do a couple of times. Instead of writing command after command once each one is finished link them with && and they will execute one after another.

Tip 8: Scan and repair files.

In order to scan files and repair broke or corrupted ones write in the command prompt: sfc /scannow. Please know that this command can take a long time since it is solely dependant on the number of files, their size, and the power of the computer.

Tip 9: Manage and configure your computer energy

Command powercfg will let you manage and see the power configuration of your computer. Just write powercfg/? and see what you need and want to change or get information about.

Tip 10: Associate files with applications

Windows already has some file associations defined, and some applications take over some type of files but if you want to take control into your own hand use assoc command. For example
assoc.txt= "APPLICATION NAME" will associate txt files with the provided application.

Tip 11: Hide files and folder.

Do you have some folder or file with information that you do not want to be seen when someone opens file explorer? Use attrib +h <name of file> and hide file or attrib +h /D <folder name> to hide folder.

Tip 12: Get a list of installed computer drivers

Want to know which drivers are installed in your system? Use driverquery and take a look.

Tip 13: Find and locate shared folders

have you shared a folder but forgot which one and where? Do not bang your head on the wall, we have a simple solution for you. just type in command prompt net share and see everything.

Tip 14: Run commands as an administrator

You do not have administrator privileges? Do you want to bypass common blockades?

runas /user:yourdomainadministrator command

That is all that we have for you today, I certainly hope you have found something useful here and that we have managed to teach you some valuable things.

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

Fix Windows Update Error Code 0x80246017
Updating your Windows 10 computer isn’t always as easy as it should be since there are times when you might encounter some errors along the way. One of these errors is the error code 0x80246017 that comes with the error message “WU_E_DM_UNAUTHORIZED_LOCAL_USER”. According to Microsoft, the cause of this particular Windows Update error is that “The download failed because the local user was denied authorization to download the content”. So if you got this error when you tried updating your computer, read on as this post will provide you some suggestions on how you can fix it. Before you troubleshoot the problem using the options given below, make sure that you are logged in as administrator. If you are already logged in as an administrator, follow each one of the options carefully.

Option 1 – Try to check the status of some Windows Update Services

  • Tap the Win + R keys to open the Run dialog box.
  • Next, type “services.msc” in the field and hit Enter or click OK to open Services.
  • From the list of Services, look for the following services and make sure that their Startup type is as follows:
    • Windows Update – Manual (Triggered)
    • Background Intelligent Transfer Service – Manual
  • After that, check if the Service status of the listed services above is set to Running. If they’re not, click on the Start button to start these services and then check if you can now enable the Windows Update service or not.

Option 2 – Try to grant Full Control of the System Volume Information directory

  • First, tap the Win + X key combination and then select Command Prompt (Admin) from the given menu.
  • After opening Command Prompt with admin privileges, type the following command and tap Enter to execute it:
c md.exe /c takeown /f "C:System Volume Information*" /R /D Y && icacls "C:System Volume Information*" /grant:R SYSTEM:F /T /C /L
  • Once the command is executed, it will run a batch of tasks and will show each one of their statuses on the command line window and once they’re done, exit Command Prompt.
  • Now restart your computer and see if it fixed the problem or not.

Option 3 – Try to disable your antivirus program or Firewall

Disabling the antivirus program or Firewall or any other security software installed in your computer is always a good idea you can try when the Windows Update process does not go smoothly. So before you try updating your computer again, make sure to disable the antivirus or security program and once the Windows Update is done, don’t forget to enable the antivirus program back again.

Option 4 – Try running the DISM tool

You can try running the Deployment Imaging and Servicing Management or DISM tool to fix the Windows Update error. Using this built-in tool, you have various options such as the “/ScanHealth”, “/CheckHealth”, and “/RestoreHealth”.
  • Open the Command Prompt with admin privileges.
  • Then type in the following commands and make sure to hit Enter right after you type each one of them:
    • Dism /Online /Cleanup-Image /CheckHealth
    • Dism /Online /Cleanup-Image /ScanHealth
    • exe /Online /Cleanup-image /Restorehealth
  • After that, wait until the process is finished and do not close the window as the process will probably take a couple of minutes.
  • Once it’s done, restart your computer.

Option 5– Run the Windows Update Troubleshooter

If the DISM tool didn’t work in fixing the error, you could also try running the Windows Update Troubleshooter as it could also help in fixing any issues related to Windows Update including the Windows Update error code 0x80246017. 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 6 – Run Microsoft’s online troubleshooter

Running Microsoft’s online troubleshooter might also help you fix the Windows Update error code 0x80246017. 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.
Read More
Fix NVIDIA Control Panel Access denied
As you know, the NVIDIA Control Panel is the central control panel for all devices that run the graphics drivers manufactured by NVIDIA. This control panel comes bundled with the drive package itself which is why there is no need for users to download it or update it separately. However, recently, some users reported that when they tried to make changes to the configuration in the NVIDIA Control Panel, they were unable to do so and encountered an error message instead saying, “Access denied. Failed to apply selected settings to your system”. If you also got the same error message, then you’ve come to the right place as this post will walk you through fixing this error in the NVIDIA Control Panel. There are several suggestions given in this article to fix the error. You can try to run the file named “nvcplui.exe” as an administrator or restore the most recent version of the folder where the aforementioned file is located. You could also try to restart NVIDIA’s process or restart the NVIDIA Display driver service or update the NVIDIA drivers in your computer. For more details, refer to each one of the options given below.

Option 1 – Try running the nvcplui.exe file as an administrator

  • Tap the Win + E keys to open File Explorer and navigate to this path: C:/Program Files/NVIDIA Corporation/Control Panel/Client
  • After that, look for the exe file and right-click on it, and then select the Run as administrator option.
  • Next, select Yes if a User Account Control or UAC prompt appears.

Option 2 – Try to restore the most recent version of the folder

The next thing you can do to fix the error is to restore the most recent version of the folder where the nvcplui.exe file is located. Keep in mind that this option is tricky so you have to be careful.
  • Tap the Win + E keys to open File Explorer.
  • Next, navigate to this path: C:/ProgramData/NVIDIA DRS
  • From there, right-click on the DRS folder and select Properties.
  • After that, go to the Previous Versions, System Protection, or System Restore tab in the Properties window.
  • Now restore the most recent version of the contents inside that folder. This will revert the old working configuration of DRS.

Option 3: Restart the process of the NVIDIA Control Panel

  • Tap the Ctrl + Shift + Esc keys to open the Task Manager.
  • After opening the Task Manager, look for the process named NVIDIA Control Panel Application.
  • Once you found it, expand it and right-click on the NVIDIA Control Panel sub-process, and click on End Task.
  • Now try opening the NVIDIA Control Panel from the Start Menu and see if it now works fine or not.

Option 4: Restart the NVIDIA Display Driver Service

  • Tap the Win + R keys to open the Run dialog box.
  • Then type “services.msc” in the field and hit Enter to open the Windows Services Manager.
  • After opening the Services window, you will see a list of services. From there, look for services named “NVIDIA Display Container LS” and double click on it to open its Properties.
  • Now make sure that the service is Started. If it isn’t, you need to start it, otherwise, you need to Stop it and Start It again. You also have to make sure that the Startup Type is set to Automatic.
  • Do the same for the NVIDIA LocalSystem Container service.
  • Restart your computer and check if the problem’s fixed.

Option 5– Try updating the drivers from the official site of NVIDIA

If both the first and second given options didn’t work, you can also try updating the drivers from the official NVIDIA website. And in case you don’t know the type of Nvidia graphics card that your computer is on, follow the steps below:
  • Tap the Win + R keys to open the Run dialog box.
  • Next type in “dxdiag” in the field and click OK or hit Enter to open the DirectX Diagnostic Tool.
  • From there, you can see what type of Nvidia graphics card that your system is on.
  • Take note of your graphics card information and then look for the best drivers for your operating system. Once you’ve downloaded and installed the file, restart your PC.
Read More
Fixing To use System Restore you must ...
There are cases when you want to undo some changes you’ve made to your computer and to do that you have to perform the System Restore task. However, if you encounter an error that states “To use System Restore you must specify which Windows installation to restore”, when doing so, read on as this post will help you fix the problem. This kind of error in System Restore could be due to corrupted files in the system. There are also situations where you are not able to boot up once you encounter this error which could be a big problem. On the other hand, this error might have something to do with corrupted BCD files. Whatever the cause is, here are some potential fixes you have to try.

Option 1 – Try to run System File Checker offline

Like pointed out, since the error might be due to corrupted system files, you can try to run System File Checker offline. How? Refer to these steps:
  • You need to go to the Advanced Startup Options and from there select Troubleshoot.
  • Next, select the Advanced Options and then Command Prompt.
  • After opening Command Prompt, type the commands given below and tap Enter right after you type each one of them.
    • Cd /
    • Dir
  • If you can see the “Users” folder, that is your system’s drive. However, if you can’t see it, you can just change the drive-by assigning “D” as its alphabet volume.
  • Then execute this command where “C” is the system drive: sfc /scannow /offbootdir=C: /offwindir=C:Windows
  • Now repeat the given steps sequentially.

Option 2 – Try to run DISM tool

You can also run the DISM tool to repair the potentially corrupted system image. First, you have to check the health of the system like checking the integrity of the system files and Windows services. To run DISM, follow the given steps below sequentially.
  • Open Command Prompt from the Advanced Startup options.
  • After that, execute this command where “C:” is the system volume: DISM /Image:C:Windows /Cleanup-Image /RestoreHealth /Source:C:WindowsWinSxS
  • If you encounter an error after executing the given command, insert the Windows USB or DVD and then execute this next command where “E:” is the USB or DVD drive: DISM /Image:C:Windows /Cleanup-Image /RestoreHealth /Source:esd:E:SourcesInstall.esd:1 /limitaccess
  • In some cases, “install.esd” would be “install.wim” and in such case, you have to modify and execute this command: DISM /Image:C:Windows /Cleanup-Image /RestoreHealth /Source:wim:E:SourcesInstall.wim /limitaccess

Option 3 – Try to repair corrupted BCD

As mentioned, the error could also be due to corruption in BCD, and to fix it, you can use Bootrec.exe – a built-in command-line tool used to troubleshot issues related to boot up and Windows Startup. Before you run this tool, make sure that you have inserted a bootable USB or DVD into your computer. Once you have that covered, follow these steps:
  • You need to go to the Advanced Startup Options.
  • Then click on Troubleshoot.
  • Next, select the Advanced Options and then Command Prompt.
  • Once Command Prompt has been pulled up, enter each one of the following commands and in the sequence that they are given to rebuild BCD files and repair MBR files:
    • Bootrec /Fixmbr
    • Bootrec /FixBoot
  • After you execute the commands given above, you should see a confirmation message that says, “The operation completed successfully”.
  • Now type the “Bootrec /RebuildBCD” command to rebuild BCD.
  • Finally, close Command Prompt and then restart your computer to successfully apply the changes made.

Option 4 – Try to run the Automatic Repair Utility

You might also want to use Automatic Repair in fixing the error. To do so, follow the steps below.
  • You can start by creating and booting from a bootable Windows 10 USB Stick.
  • After that, click on Repair your computer located in the bottom left corner when you are on the initial Windows Startup screen.
  • Next, click on Troubleshoot, and then on the other screen, click the Startup Repair option.
  • Now select the operating system you want to repair. Once you do that, it will start to repair your operating system. Wait until the process is completed and then check if the problem’s now fixed.

Option 5 – Try to use the Windows Recovery Environment

If the four options given above didn’t help fix the problem, you could try running Windows Repair and a Windows bootable USB or DVD.
  • First, insert the bootable USB or DVD and boot into it, and select the “Repair your computer” option.
  • Next, once you see the manufacturer logo on your computer, tap the key to enter into Windows Recovery Environment.
  • After that, change the Boot sequence to DVD drive under the UEFI Firmware settings and restart your computer.
  • Once your computer has restarted, select the boot order and make changes accordingly as displayed in the BIOS.

Option 6 – Try running System Restore in Advanced Startup Options

Since you probably can’t boot into your Windows 10 computer, you can try to run System Restore again in the Advanced Startup Options.
  • 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 “exe /OFFLINE:C:Windows” and hit Enter to execute the command which will start the System Restore process.
Note: You need to replace “C” with the drive where Windows Installation is located.
Read More
USB Security key is not working on Windows
As you know, the USB security keys are a secure medium to validate a lot of components in a computer. They can be used to log in to Windows 10. Now with the advancement of APIs, you can authenticate across the website as well using the same key. However, there are times when it may not work and it could be caused by several factors. It could be due to corrupted or incompatible drivers or it could also be due to compromised integrity of the key, and many more. So if you happen to encounter an issue with the USB security key on your Windows 10 computer, then there are several potential fixes you can try. You can try toggling the Internet Options settings or reinstall the respective USB drivers. You could also try changing the PIN of the security key or disable the antivirus program on your computer or troubleshoot the web browser. Refer to the potential fixes provided below to fix the problem.

Option 1 – Try to toggle the settings of the Internet Options

  • In the Windows Search box, search for Internet Options to open it.
  • Next, go to the Security tab and drag the security slider to the lowest possible security for all the given zones.
  • After that, click on OK to save the changes made and close the Internet Options.
Note that this option is only a temporary measure as it can make your computer vulnerable. Make sure to press the Reset all zones to default level button.

Option 2 – Try to update or reinstall the respective drivers

If updating the drivers of the device did not fix the problem with the USB security key, you can try to update or reinstall the Universal Serial Bus Controller drivers instead of using the Device Manager. Refer to the following steps:
  • First, click the Start button and type “device manager”.
  • Then click on the “Device Manager” from the search results to open it.
  • From there, look for the “Universal Serial Bus controllers” option and then right-click on each one of the USB drivers and select the Update Driver from the menu.
Note: If it is a regular USB drive, then it will be listed as a USB Mass Storage Device but if you have a USB 3.0 device, then look for a USB 3.0 Extensible Host Controller.
  • Restart your PC and then click the “Search automatically for updated driver software” option.
Note: If updating the USB Controller drivers didn’t work, you can try to reinstall them instead.

Option 3 – Try to change the PIN of the security key

If the first two options didn’t work, you can try changing the PIN of the security key. There are instances when the PIN for the security key might have been corrupted. Thus, resetting it can help you resolve the problem.

Option 4 – Temporarily disable Firewall and third-party antivirus

Firewall and antivirus programs are known to block the proper functioning of the USB security key. Thus, your antivirus or firewall programs might be the reason why you can’t download anything on your Windows 10 computer. To isolate the issue, you need to temporarily disable both the Firewall and antivirus programs and then check if you can now download anything from the internet. Do not forget to enable them again as disabling them can leave your computer vulnerable to cyber threats.

Option 5 – Try to troubleshoot the web browser

Troubleshooting your web browser can also help you fix the USB security key problem. You can do that by checking if your web browser supports the security key and you can do that by checking on the official website of your browser. You can also try to update your web browser to its latest version but if it didn’t help, you can try to reinstall it or switch to another web browser.
Read More
Fix DRIVER_CORRUPTED_EXPOOL Error
If you suddenly encounter the DRIVER_CORRUPTED_EXPOOL Blue Screen of Death error when using your computer, then there might be some issues with the device drivers on your Windows 10 computer. This kind of BSOD error can occur at any point while you are using your PC. Its main cause is due to some error in the System Pool where a driver becomes incompatible with the operating system or when the configuration files get corrupted for some reason. If you are one of the users who are currently inconvenienced by the DRIVER_CORRUPTED_EXPOOL error, worry not, as this post will give you some potential fixes that might help resolve the problem.

Option 1 – Perform a System Restore

Performing System Restore might help you in fixing the DRIVER_CORRUPTED_EXPOOL Blue Screen error. You can do this option either by booting into Safe Mode or in System Restore. If you are already in the Advanced Startup Options, just directly select System Restore and proceed with the next steps. And if you have just booted your PC into Safe Mode, refer to the steps below.
  • 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 2 – Run the Blue Screen Troubleshooter

The Blue Screen troubleshooter is a built-in tool in Windows 10 that helps users in fixing BSOD errors like DRIVER_CORRUPTED_EXPOOL error. It can be found on the Settings Troubleshooters page. To use it, refer to these steps:
  • Tap the Win + I keys to open the Settings panel.
  • Then go to Update & Security > Troubleshoot.
  • From there, look for the option called “Blue Screen” on your right-hand side and then click the “Run the troubleshooter” button to run the Blue Screen Troubleshooter and then follow the next on-screen options. Note that you might have to boot your PC into Safe Mode.

Option 3 – Update the Device drivers

The device driver installed in your computer might be incompatible with your operating system which is the reason why the DRIVER_CORRUPTED_EXPOOL Blue Screen error occurs. To fix that, you have to update your device drivers.
  • Tap the Win + R keys on your keyboard to open the Run dialog box.
  • After that, type “msc” in the field and hit Enter or click OK to open the Device Manager.
  • After opening the Device Manager, update all the outdated Device drivers on your computer.
  • Next, right-click on all the driver entries that are appropriately labeled, and then click the Update driver option.
  • Now restart your PC and check if the BSOD error is fixed or not.

Option 4 – Uninstall any faulty device drivers

  • Tap the Win + R keys on your keyboard to open the Run dialog box.
  • After that, type “msc” in the field and hit Enter or click OK to open the Device Manager.
  • From there, look for any device driver which has a yellow exclamation mark which indicates that something is wrong with them.
  • And then right-click on each one of them and click on Uninstall.
  • Once you’re done uninstalling the faulty drivers, restart your computer and allow your computer to reinstall the drivers you just uninstalled.

Option 5 – Try running the System File Checker

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

Option 6 – Try updating the BIOS

As you know, the BIOS is a sensitive part of a computer. Even though it is a software component, the functioning of the hardware depends on it largely. Thus, you must 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 in your computer.
  • Now restart your computer to apply the changes made.

Option 7 – Try resetting Windows 10

To fix this BSOD error, you can try resetting Windows 10. Doing so won’t get rid of any file in your system – instead of erasing all your media files and documents, this reset option resets all the system settings and files.
Read More
Custom widgets in Windows 11 later
windows custom widgetsOriginally Microsoft has imagined its widgets menu as Microsoft-only widgets but it seems that they have changed their mind. Due to the latest leak, it seems that Microsoft will open the widgets menu to 3rd party developers as well but at launch, it will be only official widgets. It was hinted that later widgets menu will be open to developers who want to bring their own stuff into it. Distribution, date, and technology that will need to be used in order to create your widget have not been discussed nor leaked at a given time but in some way, I am very glad that at least some customization will be in Windows 11. It is funny and amusing how some things that were in Windows Vista are getting back like glass design, round corners, and widgets. Let’s just hope Windows 11 will be a better Windows than Vista was.
Read More
There’s no Incognito Mode in Chrome
As you know, just like other web browsers, Google Chrome offers Incognito Mode or private browsing which you can use to make sure that your browsing activities are not being tracked by any websites you visit and it also keeps targeted ads at bay. On the other hand, signing in to a website, even when in Incognito Mode is a different thing since that website can track your browsing activities. Thus, Incognito Mode is still useful especially if you want to browse the web safely and without getting tracked except when you log in to some site. However, there have been reports recently that Incognito Mode is missing in Chrome and users are clueless as to how or why it happened. If you are one of them, worry not for this post will walk you through what you can do if there’s no Incognito Mode in Chrome on your Windows 10 computer. This is an unusual and strange issue since the Incognito Mode in Chrome is available by default and you don’t have to do anything to enable it. It is possible that there might be corruption in the Windows Registry which caused the disappearance of Incognito Mode, worry not though for there are some tweaks you can apply to restore the missing Incognito Mode. To apply these tweaks, you need to create first a System Restore point, and then once you’re done, follow the instructions provided below carefully. Step_1: Tap the Win + R keys to open the Run dialog box and type “Regedit” in the field and then hit Enter to open the Registry Editor. Step_2: Next, after opening the Registry Editor, navigate to this path – ComputerHKEY_LOCAL_MACHINESOFTWAREPolicies Step_3: From there, look for ChromePolicies and locate the DWORD named “IncognitoModeAvailability” and double click on it. Step_4: Edit the value of the “IncognitoModeAvailability” DWORD by changing its value from 1 to 0 so you can enable Incognito Mode in Chrome. Step_5: Once done, exit the Registry Editor and restart your computer and then check if you can now see Incognito Mode in Chrome. On the other hand, there is also another option that allows you to force open your Chrome browser in Incognito Mode. All you have to do is set the value of the “IncognitoModeAvailability” key to “2” instead of 0. This can be useful especially if you always browse the web in this mode. But you need to remember that you won’t be able to go back to the normal mode once you do this. Here are what the values of the IncognitoModeAvailability DWORD actually mean:
  • 0 – Incognito mode is enabled by default
  • 1 – Incognito mode is disabled
  • 2 – Chrome is forced to always open in Incognito mode
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
Fix Windows Script Host in Windows startup
In case you don’t know, the Windows Script Host provides capabilities such as batch files but it also includes many other features like it can be used by a user manual as well as created by the operating system to automate the flow of operations in the system. However, there are a lot of errors that could take place in such a process. One of them is the following error:
“Script: <PATH of the VBS Script> Line: x Char: x Error: The description of the error. Code: xxxxxxxx Source: (Source of the error)”
At the time of writing, it isn’t clear yet what the root cause of the error really is but there are several potential fixes you can check out to fix it. You can try to run the System File Checker or set the default value for the .vbs key, or troubleshoot the problem in a Clean Boot State. You could also try to repair Install Windows 10 or scan your computer for malware. For more detailed instructions refer to the following options.

Option 1 – Try to run a System File Checker scan

  • In the Windows Start Search, type “command prompt” and right-click on Command Prompt from the search results, and then select the “Run as administrator” option.
  • After opening Command Prompt with admin privileges, type the “sfc /scannow” and tap Enter to execute it.
  • Once the scan is finished, restart your computer and see if the Windows Script Host error.

Option 2 – Try setting the default value for the .vbs key

  • Tap the Win + R keys to open the Run dialog box and type “Regedit” in the field and tap Enter to open the Registry Editor.
  • Next, navigate to this registry path: ComputerHKEY_CLASSES_ROOT.vbs
  • From there, double click on the default string and change its Value data to “VBSFile”.
  • Exit the Registry Editor and restart your computer for the changes to take effect.

Option 3 – Try troubleshooting the problem in a Clean Boot State

Setting your computer in a Clean Boot State can help you diagnose and later troubleshoot the problems in your computer. During this state, the system will start with a minimal number of drivers and startup programs that help in isolating the problem with the interfering software. To put your computer in a Clean Boot State, follow the given steps below.
  • Log onto your computer 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.)
  • From there, start to isolate the problem by checking which one of the programs you installed recently is the root cause of the problem.

Option 4 – Try to repair install Windows 10

  • First, you have to click this link and then click the Download Tool Now button.
  • Next, click the “Use the tool to create installation media (USB flash drive, DVD, or ISO file)…” option and follow the next given instructions on the screen.
  • Now select the ISO file option in step 5.
  • After that, you should now have an ISO file.
  • Next, go to the location where you’ve downloaded the ISO file.
  • Then right-click on the Windows 10 ISO file and select the Open with option and then select File Explorer.
  • Now click on “setup.exe” and follow the next instructions that appear on the screen. When asked, you have to select either Nothing (clean install) or Keep personal files only option. Take note that you must not select the “Keep personal files, apps, and Windows settings”.

Option 5 – Try scanning your computer using Windows Defender

It is possible that your computer is infected with malware which could be why you’re getting the Windows Host Script error. Thus, you need to scan your computer using Windows Defender.
  • Tap the Win + I keys to open Update & Security.
  • Then click on the Windows Security option and open Windows Defender Security Center.
  • Next, click on Virus & threat protection > Run a new advanced scan.
  • Now make sure that Full Scan is selected from the menu and then click the Scan Now button to get started.
Read More
Fix 0xc000014C Boot Configuration Data error
If you receive the error code 0xc000014C while you boot up your computer, then this post might be of help. This kind of error usually points to the Registry of your computer that might be corrupted. As a result, the operating system was not able to read the BCD file and throws the 0xc000014C error. The error code 0xc000014C is triggered when your computer encounters an error in the first booting sector. You might receive any of these error messages:
“Info: An error occurred while attempting to read the boot configuration data.” with File: as “BootBCD” “File: Windowssystem32configsystem Info: Windows failed to load because the system registry file is missing or is corrupt” “Info: The Boot Configuration Data for your PC is missing or contains errors.”
To fix the error code 0xc000014C when booting your computer, you can check out the suggestions provided below.

Option 1 – Try running System Restore in Advanced Startup Options

Since you probably can’t boot into your Windows 10 computer, you can try to run System Restore again in the Advanced Startup Options.
  • 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.

Option 2 – Try to rebuild the BCD files

You can also try rebuilding the BCD files to resolve error 0xc000014C for corrupted Boot Configuration Data
  • You can start by booting into the installation environment for Windows 10 from an installation media.
  • After that, click on Repair your computer and on the blue screen, select Troubleshoot and then select the Advanced options menu.
  • From there, select Command Prompt and once you open it, enter each one of the commands given below by sequence.
    • bootrec /FixMbr
    • bootrec /FixBoot
    • bootrec /ScanOS
    • bootrec /RebuildBcd
  • Once you’re done executing the commands given above, type “exit” to close the Command Prompt window and then restart your computer and see if it fixed error code 0xc000014c.

Option 3 – Try restoring the default and uncorrupt Registry Values

This option is a bit tricky as you have to be sure about what you are doing here. However, if you are not sure, you might want to seek out a technician to fix the problem for you. But if you can handle it, then carefully follow the steps below.
  • You have to first physically remove the hard drive of the computer that’s not booting up. You can refer to it as Hard drive 1 and Computer 1, respectively.
  • After that, you need to have another computer which you can refer to as Computer 2, and refer to its hard drive as Hard drive 2. Make sure that this second computer is working properly.
  • Next, you have to attach Hard drive 1 to Computer 2 with the Hard drive 2 attached as well.
  • After that, boot Computer 2 from Hard drive 2 where Hard drive 1 will act as the second storage unit.
  • Then navigate to the following location in the System Partition of the Hard drive 2.
C:/Windows/System32/config/RegBack
  • From there, you have to replace all the files. Once you’re done, shut down your computer and then take out the Hard drive 1 from Computer 2 and put it back to Computer 1 as the only hard drive.
  • Now boot your computer normally and check if the problem is fixed.
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