Logo

OOOOPS it seems that this page does not exist :(

Instead of feeling bad why don't you try our automated software ...
... or check some of our articles and tutorials.
Mapped network drives are not working
When you have to connect to a drive that’s on a different computer or on external storage, that’s where the mapped network drives come in. Mapped network drives make accessing files a lot easier. However, there are times when it won’t work for some reason. Windows will notify you about the unavailability of mapped network drives in several ways. For one, Windows might display a red X on the network drives or it could be that its status will be unavailable when you try to use it from the Command Prompt or via a notification. It is recommended that you run a few scripts when you log in to your PC as it may so happen that the network drive takes more than usual to connect. Before you start troubleshooting the problem using the given options below, keep in mind that some workouts might only work under certain scenarios. You might need some network access at logon or you might need access to the Group Policy settings. So you need to choose what you prefer more. You can try the given workarounds below if the mapped network drives are not showing or connecting or working on your Windows 10 computer. These workarounds use scripts to make sure that you are connected to them as soon as you start to use your PC. As mentioned, before you can troubleshoot, you need to create scripts first. There are two scripts here namely MapDrives.ps1 which is executed by the second script named MapDrives.cmd and is done at a regular and non-elevated Command Prompt. Follow the steps below to get started.
  • You have to create a script file named “MapDrives.cmd” first and then save it on a place where the files are safe. To do that, open a text editor like Notepad and then copy and paste the following script:
PowerShell -Command "Set-ExecutionPolicy -Scope CurrentUser Unrestricted" >> "%TEMP%StartupLog.txt" 2>&1 PowerShell -File "%SystemDrive%ScriptsMapDrives.ps1" >> "%TEMP%StartupLog.txt" 2>&1
  • After that, save the file and name it “MapDrives.cmd”.
  • Next, create a script file named “MapDrives.ps1” and then copy and paste the following content. Just make sure to save both scripts in the same folder.
$i=3 while($True){     $error.clear()     $MappedDrives = Get-SmbMapping |where -property Status -Value Unavailable -EQ | select LocalPath,RemotePath     foreach( $MappedDrive in $MappedDrives)     {         try {             New-SmbMapping -LocalPath $MappedDrive.LocalPath -RemotePath $MappedDrive.RemotePath -Persistent $True         } catch {             Write-Host "There was an error mapping $MappedDrive.RemotePath to $MappedDrive.LocalPath"         }     }     $i = $i - 1     if($error.Count -eq 0 -Or $i -eq 0) {break}     Start-Sleep -Seconds 30 } Note: Now that you’ve created the script files, it’s time for you to proceed to the options given below.

Option 1 – Try creating a startup item

Note that this option only works on devices that have network access at login. So if it’s not there, the script will fail to reconnect the network drivers automatically. To create a startup item, here’s what you have to do:
  • Open the Startup folder located at %ProgramData%MicrosoftWindowsStart MenuProgramsStartUp.
  • From there, copy and paste the MapDrives.cmd.
  • After that, open the Scripts folder located at %SystemDrive%Scripts copy-paste MapDrives.ps1 and then copy and paste MapDrives.ps1 in there.
Note: After you complete the steps above, a log file named “StartupLog.txt” will be created in the %TEMP% folder. Now all that’s left for you to do is to log out of your computer and then log back in. This will ensure that the mapped drives are open.

Option 2 – Create a scheduled task

It is possible to create a scheduled task that runs as soon as you log in to your computer. To create a scheduled task, follow the steps below.
  • You have to copy the MapDrives.ps1 script file to the scripts folder of Windows located at %SystemDrive%Scripts.
  • After that, open the Task Scheduler and select Action > Create Task.
  • Next, type a name and description of the task in the General tab.
  • Then click on the Change User or Group button and select a local user group and click OK.
  • Now check the box labeled “Run with highest privileges” and switch to the Triggers tab.
  • From there, create a new trigger with the “At Logon” option in the Begin the task drop-down menu and then click OK.
  • After that, switch to the Actions tab and create a new action then choose to Start a program.
  • Next, type “Powershell.exe” in the Program/Script field, and in the Add arguments (optional) field, type the following:
-windowsstyle hidden -command .MapDrives.ps1 >> %TEMP%StartupLog.txt 2>&1
  • And in the Start in the (optional) field, type “%SystemDrive%Scripts” as the location of the script file.
  • Now under the Conditions tab, select the “Start only if the following network connection is available” option and then select Any connection and click OK.
  • Restart your computer or log off from your account and then log back in so that the task will be executed.

Option 3 – Use the Group Policy settings

You need this option if the mapped network drives are defined via Group Policy settings. You have to update the action of the drive maps to Replace. As a result, it will delete the existing mapped drive and create the mapping on each logon again. However, any settings on the mapped drive that are changed from the Group Policy settings will be gone on each logon. So if the changes don’t work, you need to run the gpupdate command together with the /force parameter in order to refresh the Group Policy setting quickly.
Read More
System Restore gets stuck or hangs up
As you know, System Restore is a useful tool in Windows operating system that helps users in fixing system issues by undoing any recent changes to the computer that may have caused the problem. However, there are times when you might encounter some issues when running this tool and one of these issues is when System Restore suddenly gets stuck or hangs up on initializing the restoration of the Registry in Windows 10. If you encounter a similar problem, read on as this post will guide you on what you can do in such cases. There are several things you can do when you face this kind of problem in System Restore. First, you can try to wait it out, give it more time to load, which should not take longer than 5 minutes. And if it’s still stuck after that time, give it another hour. However, if nothing changed after an hour, then you need to troubleshoot the problem further. Keep in mind that you must not interrupt System Restore by shutting it down abruptly, it could result in an unbootable system. To get started in troubleshooting the problem, you need to follow each one of the suggestions offered below.

Option 1 – Try to use the Windows Recovery Environment

The first troubleshooting option you need to try is to simply tap the power button for about 10 seconds. This is what you have to do when you have to interrupt System Restore or reset your Windows 10 computer. Tapping the power button for 10 seconds will perform a hard shutdown and once your computer shuts down, restart your computer again and follow the steps below but before you do that, make sure that you have 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 2 – 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 on 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 3 – Try to run System Restore in Safe Mode

If you 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 Safe Mode.
  • After that, select an option > Troubleshoot > Advanced Options > Startup Settings > Restart.
  • Once your computer has restarted, tap the F6 key to enable Safe Mode with Command Prompt and to run System Restore from there.
  • Now in Command Prompt, type the “rstrui.exe” command to run System Restore in Safe Mode. This will help in fixing the problem since it would be safer to perform System Restore of the computer.
Read More
How to Fix Error 80070103 in Windows 10

Error Code 80070103 –What is it?

Error code 80070103 affects Windows users who attempt to access the latest updates for hardware drivers using Windows Update. Windows 10 users who are affected by this error code will be unable to complete the upgrade process. This error code usually occurs due to the Windows Update attempts to download an incompatible version of a driver or a driver that is already downloaded on one’s device.

Solution

Restoro box imageError Causes

The cause of error code 80070103 in Windows 10 is usually easy to determine. This is due to the fact that the error code only affects users who attempt to access updates related to hardware drivers. In such cases, the error code will only occur if the Windows Update website or tool on your machine attempts to install a driver that is already present on one’s machine or the version of the driver is unsuitable for one’s machine due to lower compatibility.

Further Information and Manual Repair

Manual repair methods are very effective in helping Windows users fix problems related to error code 80070103 as well as other errors. These repair methods can usually be implemented by users with very limited technical skills. In some cases, however, you may need to contact a Windows repair technician, i.e. if you have problems following the manual repair method instructions provided or if the repair methods prove unsuccessful.

In the case of error code 80070103, the problem can be rectified by either hiding the update or reinstalling the hardware driver. Windows users can hide an update on the Windows Update website or via Windows Update within their machine’s Settings. However, users will need to contact their device manufacturer to reinstall hardware drivers in most instances. See below for further details regarding these manual repair methods.

Method One: Hide the Update

In the case where you are informed via an error message box that a driver, for instance, your graphics driver, is incompatible you may need to consider hiding the update to prevent error code 80070103 from reoccurring on your machine.

The incompatible issues will come about when the Windows Update website attempts to download a driver that is already on the device or one with a lower compatibility. When you hide the update, it is in essence, preventing Windows Update from offering this driver in the future. To complete this manual repair method, follow the steps below:

  • Step one: Visit the Microsoft Update site 
  • Step two: Select Custom on the Welcome page after completing the scan for the updates process
  • Step three: Select Hardware, Optional.
  • Step four: Open the second update for the graphics card, then select Don't show this update again check box.
  • Step five: Review and install updates.

You may also complete this process by opening Windows Update within your computer’s settings, then selecting the Optional update or available link. Once you’ve done this, you may then select the updates you would like to install and hide the update that has resulted in the occurrence of error code 80070103.

Method Two: Reinstall Hardware Driver

In the case where you need to install a hardware driver, you will need to contact the manufacturer of your device. Once you’ve contacted the manufacturer or visit the manufacturer’s official website, you can then install the latest device drivers manually. Read the instructions for the installation of the latest drivers carefully. This will ensure you avoid any problems and improve your chances of successfully fixing error code 80070103.

After you’ve contacted your device manufacturer and completed the process of reinstalling the hardware driver, check Windows Update to see whether or not error code 80070103 has been rectified. If the problem was related to your hardware driver and you successfully reinstalled the driver, the error code will not reoccur when you attempt to download the latest updates for your hardware drivers.

However, you may need to take another approach if this manual repair method fails to fix error code 80070103. For instance, consider getting help from a Windows repair technician who is equipped with the skills and expertise necessary to offer a detailed inspection of your machine. Though the error code is related to one’s drivers, the fact that a Windows error code occurred may mean that your system needs a thorough evaluation as other issues may be present.

Method Three: Download an Automated Tool

If you wish to always have at your disposal a utility tool to fix these Windows 10 and other related issues when they do arise, download and install a powerful automated tool.

Read More
Chrome features that you need to use

Google Chrome is the most used browser in the world with the most user downloads. Most users are using browsers how it is, open it up and just surf but Chrome offers more than just plain surfing. Here we are presenting you with some interesting features that most users do not use but should.

google chrome

Use Omnibox to search inside websites

Chrome's Omnibox, also known as the address bar got its name because it can do much more than just search the internet. You already probably know that just by typing any word you will search the internet with Google or another search engine of choice.

You can also set specific keywords inside Chrome settings to tie them with specific websites, for example, you can tie the letter E with errortools, and then just by typing E windows error you will search term windows error on website errortools. There are some already predefined things and you can add anything you want so this is a great feature in order to speed up your work skipping part of actually opening the site.

Search the internet for selected text

On any webpage, you can simply select any text and right-click on it to get a new menu entry that will say search Google for "your selected text" and by clicking on it you will automatically search the net for the selected term.

Grouping tabs

When we surf the internet some of us tend to have plenty of open tabs and over time they can clutter and shrink in width making the surfing experience an unpleasant one.

Chrome has tab groups and you really need to start using them since you can organize much better all the tabs, even color-code them.

Search all open tabs

On top right part on title bar right next to minimize button there is small arrow pointing down, once you clik on it all opened tabs will be displayed by name as a listand by clicking on it you will automatically switch to it.

Change download location

Google Chrome has its default download destination but you can change that destination and even turn on option to be asked where you would like your download to be saved each time.

Live Captions

YouTube has cations for its videos but Chrome itself has live caption option in order to provide you with automatic AI captions for any type of video or audio on any website. If you are struggling with following what is being said try this awesome option.

Extensions

Using extensions in Chrome is awesome, specialy if extensions are usefull but if you go incognito they are not active. There is an option in Chrome to turn on the extensions even in incognito mode and even better, you can even choose which ones you want to be active, you do not need to turn all of them.

Read More
How to Fix MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED error in Windows 10
If you are using a Windows 10 PC that has different processors clubbed together, chances are you might encounter an error saying, “MULTIPROCESSOR CONFIGURATION NOT SUPPORTED” during a Windows upgrade or software installation. This error is actually caused by a bug check with a value of 0x0000003E. This error also indicates that the processors in your computer are asymmetric in relation to one another. So if you want to upgrade you need to have all the processors of the same type and level. But worry not for this guide will help you in fixing this error. The MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED error can occur in several cases such as during an installation of Windows 10, or when the driver is loaded, or when Windows Start or Shutdown and the chances of you getting a blue screen is very much high. To fix this error, refer to the options given below and make sure to follow them carefully.

Option 1 – Try to disable the Hyper-Threading in your BIOS

Hyper-Threading in the BIOS lets a processor (multi-threaded) run various tasks in a simultaneous manner. To disable this, here’s what you have to do:
  • Restart your computer and boot into it right after. To do that, tap the F2 key.
  • Once you’re in the BIOS, locate the Hyper-Threading option which should be located under the Performance section along with other options like Multi-core support, Rapid Start technology, and many more.
  • Disable Hyper-Threading and then make sure to save the changes and exit BIOS.
Note: Although Hyper-Threading is only used when necessary, there are some OEMS that don’t have the option to disable it and if that’s the case, you need to try other options given below.

Option 2 – Try to disable the Virtualization in the BIOS

Virtualization in the BIOS allows users to run a single physical resource such as the server or storage device to appear that it is running as multiple logical resources. It is also properly termed as “HYPER-V”.  To disable it, refer to these steps:
  • Boot into the BIOS as you did earlier.
  • Then look for the Security options.
  • After that, from Security options, look for Virtualization Technology or VTX among the options given.
  • Then turn it off and restart your computer.
Note: Although Windows 10 offers features such as the Device Security for Core Isolation and Memory Integrity, if you turn them off at the software level, it will not help at all. If you’re able to resolve the error, you can do some further research and see what software or hardware you can use to further help you.

Option 3 – Try checking if there are any BIOS updates available for your PC

Updating the BIOS may help you resolve the MULTIPROCESSOR CONFIGURATION NOT SUPPORTED error. You can just go to the OEM’s website as they offer utility software that can download BIOS firmware and update it without any problem. BIOS updates usually offer enhancements and fixes to some issues like this one.
Read More
How to Fix Error Code 0x80070005 in Windows 10

Error Code 0x80070005 – What is it?

Error code 0x80070005 is also known as the “Access Denied” error code because it prevents Windows users from accessing updates on their machines. This error code exists due to a lack of permissions on one’s system files or registry, permissions which are necessary for the updates via Windows Update to complete successfully. Error code 0x80070005 affects multiple versions of the Windows operating system including Windows 8, 8.1, and Windows 10.

Solution

Restoro box imageError Causes

The lack of files or registry permissions which result in the presence of error code 0x80070005 on your device may occur based on several reasons. The most common of these relates to the existence of malware programs on your machine. Malware can disrupt and change system files which are required for the update process to occur. Thus, this error code requires a systematic approach to first find missing or corrupt files, as well as cleaning up malware programs that could be preventing your machine from accessing updates.

Further Information and Manual Repair

Windows 10 users can repair error code 0x80070005 by implementing manual repair procedures. These procedures include the installation of tools like SubInACL.exe which enable users to access information about registry keys and files, thus detecting issues that may be preventing them from completing the update process in Windows Update.

These manual repair methods are listed below with clear instructions that even average Windows users can understand and follow. However, if you attempt the procedures and experience any issues that prevent you from successfully fixing error code 0x80070005, contact a Windows repair technician. Also, consider downloading an automated tool since these tools often help users fix PC performance issues that cause error codes to occur within various versions of the Windows operating system.

Method One: Log on as Administrator to Install Updates

By logging on as an administrator, Windows users may be able to access updates via Windows Update and thereby fix error code 0x80070005 in Windows 10. Follow the steps below to complete this manual repair method.

  • Step one: Click the Search bar near the Start button
  • Step two: Type User Accounts in Search
  • Step three: Select User Accounts
  • Step four: Click Manage User Accounts, then type in password if prompted to do so

Once you are logged on as an administrator, go to Settings to access Windows Update. You will be given the option to install the latest updates. Select this option and wait for the process to be completed. If error code 0x80070005 reoccurs, however, you will need to proceed to manual repair method two which requires that you scan for malware.

Method Two: Scan for Malware

This method is very simple. As you scan for malware on your machine, you will be able to detect any malicious programs that may be preventing you from installing updates on your device. This will in turn enable Windows users to clean up their system, fix the error code, and prevent others from occurring.

First, be sure you have a viable antimalware program on your machine. Scan for viruses and other harmful programs using this third-party software. Another option is to run Windows Defender on your machine.

Once you’ve completed the scan and error Code 0x80070005 moved any malware that may be present, attempt to install updates via Windows Update. If the problem causing error code 0x80070005 in Windows 10 is resolved, you will be able to install the updates. However, proceed to the next manual repair method if the error code remains on your device after you have scanned and removed malware programs.

Method Three: Install SubInACL Tool

The SubInACL tool enables Windows users to access security details and other information regarding files and registry permissions. Use this tool to fix files and registry permissions by following the instructions below.

  • Step one: Download the SubInACL tool via Microsoft’s official website
  • Step two: Run program as administrator
  • Step three: Restart machine
  • Step four: Go to Settings, Update & security, then Windows Update
  • Step five: Reattempt installation of updates

Once you’ve been able to run the SubInACL tool and fix files or registry permissions, your machine should be able to access updates. If error code 0x80070005 reoccurs, however, you may need to contact a Windows repair technician to verify if issues unrelated to permissions are causing the error code to occur.

Method Four: Download an Automated Tool

If you wish to always have at your disposal a utility tool to fix these Windows 8 and other related issues when they do arise, download and install a powerful automated tool.
Read More
Fixing Error 633: The modem already in use
If you are trying to connect to the internet using a Wi-Fi, Ethernet, or a Wi-Fi connection and you suddenly encounter Error 633, then read on as this post will guide you on how you can fix this problem in your Windows 10 computer. According to users who encountered the same problem, when they try to connect to the internet, an error pops up that states, “The modem or other connecting device is either already in use or not appropriately configured”. This error is the VPN Error 633 which indicates that the modem is malfunctioning due to some broken configuration. It is possible that this broken configuration is caused by the WAN Miniport device which is associated with your preferred VPN protocol. It could also be due to the TCP port that’s required for the VPN connection to work might be used by another application. There are instances when Error 622 could occur when there are multiple internet connections set up on one device or when the communication port is exploited by another program. It could also occur when the affected modem is not bound to one specific device. Thus, any model and computer can be affected by this problem. The first and basic thing you can do to fix the VPN Error 633 is to turn off or unplug the modem your computer is using and then plug it back in to see if the problem is fixed. If not, then there are several other potential fixes you need to check out to resolve the problem. You can try the suggestions provided below and see if any of them help.

Option 1 – Run the Network Adapter Troubleshooter

  • Open the Search bar on your computer and type in “troubleshoot” to open the Troubleshoot settings.
  • Next, scroll down and select the “Network Adapter” option from the right pane.
  • Then click on the Run Troubleshooter” button.
  • After that, your computer will check for any possible errors and will pinpoint the root cause of the problem if possible.

Option 2 – Try to explicitly reserve the TCP port

The next thing you can do to fix the error is to reserve the TCP port explicitly and to do that, follow the steps below.
  • Tap the Win + R keys to pull up the Run dialog box and type “Regedit” in the field and hit Enter to open the Registry Editor.
  • Next, navigate to this registry path: HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParameters
  • After that, follow the path New > Multi-String Value on the edit menu and rename the multi-string value as “ReservedPorts” and then double click on it.
  • Now in the value data of ReservedPorts, input “1723-1723” and click OK to save the changes made.
  • Close the Registry Editor and restart your PC. Once your computer has restarted, check if the VPN Error 633 is fixed or not.

Option 3 – Try to use the netstat command

  • In the Windows Start Search, type “cmd” and from the search results that appear, right-click on Command Prompt and then select the “Run as administrator” option.
  • After opening Command Prompt as admin, type this command and hit Enter: netstat –aon
  • After that, the output will be displayed and from there, look for the process ID or PID of any program that uses the TCP port 1723 on your computer.
  • Next, type this next command and hit Enter: taskkill /PID PID /F
  • Once the command has been executed, the concerned program will be forced to close and the TCP port 1723 will be freed up. Keep in mind that the taskkill command ends the process corresponds to the process ID number and the given command above, “/F” option is used to end the program’s process forcefully.
  • Now restart your computer and after that, the concerned program should start using a TCP port other than 1723 which leaves the TCP port 1723 free for your internet device to use.

Option 4 – Remove any irrelevant internet device programs

You could also try removing any irrelevant device programs since it is possible that any of these programs could be the one that’s causing the modem to malfunction. These irrelevant programs could be an internet booster or third-party tools that comes with the modem and so on. These programs are not necessarily needed for your modem to function. Thus, if you want to fix the VPN Error 633, you can try uninstalling them and see if it fixed the error.

Option 5 – Update the Network Adapter drivers

You might also want to update the Network Adapter drivers by following these steps:
  • 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 them.
  • Then right-click on each one of the Network drivers and update them all.
  • Restart your PC and see if it helped in fixing the BSOD error.
Note: If updating the network drivers didn’t help in fixing the VPN Error 633, you can also try to uninstall the very same drivers and restart your Windows 10 PC. After that, the system itself will reinstall the drivers you just uninstalled. Alternatively, you can also download and install the drivers from the manufacturer’s website directly. To reinstall the network adapter driver, refer to these steps:
  • Open the Devices Manager from the Win X Menu.
  • Then locate the device drivers and right-click on them to open the Properties.
  • After that, switch to the Driver tab and click on the Uninstall Device button.
  • Follow the screen option to completely uninstall it.
  • Finally, restart your computer. It will just reinstall the device drivers automatically.
Read More
How to Fix Windows 10 Error 0x8007007b

Error code 0x8007007b - What is it?

Error code 0x8007007b will present itself when Windows users are trying to activate Windows. You may try to activate it through the update and security option, but it is likely that you will receive the same error code. Error code 0x8007007b may be presented when Windows 7 and Windows 8.1 users try to upgrade and activate Windows 10 on their computer.

Common symptoms include:

  • An error message will display that says Windows cannot be activated. The KMS host cannot be located in the DNS, please have the system administrator verify that the KMS is published correctly in DNS.
  • Error 0x8007007b will be displayed, stating that the file or directory name or the volume label syntax is not correct.

Solution

Restoro box imageError Causes

There are multiple causes for the user to see this error code, including if a user is using volume-licensed media while installing a number of various Windows operating systems. This error may also be caused because the activation wizard cannot connect to a KMS host computer. It is likely that if the user has a volume-licensed form of media, they were likely given a MAK (multiple activation keys).

Further Information and Manual Repair

There are several ways to go about repairing error code 0x8007007b. It is important to try all of the methods, but if it is too difficult or you do not know what you are doing, please do contact a Windows repair technician. They will likely be able to fix the problem with ease.

Method One: Instead of KMS activation, use a Multiple Key Activation

When KMS activation is not used, and when there is not a KMS server, the product key type should then be changed to a MAK. For MSDN (Microsoft Developer Network) or TechNet, the SKUs that are listed on the media are generally volume-licensed media, and that means that the product key that is supplied is a Multiple Activation Key.

To change the KMS to a MAK, click Start, All Programs, Accessories, and then right-click on Command Prompt. Click Run as Administrator. If prompted for a password or confirmation, enter it now.

When the command prompt opens, type in the following command, and press enter after:

slmgr -ipk xxxxx-xxxxx-xxxxx-xxxxx (these x's are representative of the MAK product key).

Method Two

While on the desktop, press the Windows key and R. The Run window should appear, and then you should enter the following command: Slui 3. Press Enter and then wait for the window to appear. This window will ask for the operating system activation product key. Enter the product key and then press the Activate button. Reboot the computer. Now the Error Code 0x8007007b should be gone.

Method Three

Open the Command Prompt with access as administrator as mentioned previously. Enter the following command: sfc /scannow. The command will then complete its task. This will take a good bit of time, so leave the computer to do its work. The sfc must finish the scan. When the scan has finished, reboot the computer. Now you can check for activation. The error code should be gone.

Method Four: When the client can't locate a KMS host on the network to complete activation

This method for correction should be used when the network does have a KMS host computer setup, and the client is not able to locate the KMS host on the network to complete activation.

To verify that the computer does in fact have the KMS host installed. Click Start, All Programs, Accessories, and then right-click on Command Prompt. Run as administrator. If you are now prompted to enter a password or confirmation, do so. When the command prompt box comes up, type in the following command, and then press Enter: nxlookup -type=all_vlmcs._tcp>kms.txt

The command will generate a file, open this KMS file. The file will contain one or more entries. As a default, the KMS host server will dynamically register a DNS SRV server evidence once every 24 hours. In order to check the registry to ensure that this is happening, follow these steps:

  • Click Start, type in regedit, and then press Enter.
  • Locate the key HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionSL and then click on it.
  • The DisableDnsPublishing subkey should be present and have a value of 1. If it is missing, create a DWORD value by right clicking DisableDnsPublishing, click Modify, in the Value Data box type in 0, and then click Okay.

Method Five: Use An Automated Tool

If you wish to always have at your disposal a utility tool to fix these Windows 10 and other related issues when they do arise, download and install a powerful automated tool.

Read More
Fix Slow download speeds for MS Store
As you know, Microsoft Store is the ultimate source of applications for Windows 10 devices and it’s turning to be the hub for various applications. In fact, aside from applications, it has also become a source for movies, books, TV and even buying hardware directly from Microsoft and many more. Although downloading goes smoothly most of the time, depending on your internet connection, there are also times when you might experience slow download speeds while downloading apps and other things in the Microsoft Store. There are several factors that could be causing this kind of issue. It can be due to the Microsoft Store app itself or it could be enforced speed limiter on the application or it could be due to a corrupted Microsoft Store cache, or it could be due to the Windows Update service running in the background, and so on. To fix this problem, you can try to reset the Microsoft Store cache, or set the bandwidth limit for downloads, or try to re-register the Microsoft Store app via Windows PowerShell. Before you proceed with the troubleshooting options provided below, make sure that your internet connection is stable enough to download apps and games. You also have to check if there is an update or a massive download in progress. Once you have these things covered, follow the given options below.

Option 1 – Try to reset the Microsoft Store cache

Just like browsers, Microsoft Store also caches as you view apps and games so it is most likely that the cache is no longer valid and must be removed. To do so, follow the steps below.
  • Right-click on the start button and click on Command Prompt (administrator).
  • Next, type in the command, “exe” and tap Enter. Once you do, the command will clear the cache for the Windows Store app.
  • Now restart your PC and afterward, try opening Microsoft Store again and then try to install your app or update your computer again.

Option 2 – Try to set the bandwidth limit for downloads

  • Tap the Win + I key combination to open the Windows Settings app.
  • After that, navigate to Update & security > Windows Update.
  • From there, select the Advanced options located on the right-side panel.
  • Next, select Delivery Optimization and check the box for “Limit how much bandwidth is used for downloading updates in the background under the Download settings section and then set the slider to 100%.

Option 3 – Try to re-register the Microsoft Store app via Windows PowerShell

  • Tap the Win + X key combination or right-click on the Start button and click on the Windows PowerShell (Admin) option.
  • If a User Account Control or UAC prompt appears, just click on Yes to proceed and open the Windows PowerShell window.
  • Next, type in or copy-paste the following command to re-register the Microsoft Store app and tap Enter:
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRootWinStoreAppxManifest.xml
  • Wait for the process to be completed and then restart your computer.
Read More
Fix Folder Redirection Failed in Windows
If you got an error message saying, “Folder Redirection Failed, Failed to build the list of regular subfolders, Access is Denied” after you configured a new Group Policy Object or GPO which redirects User folders to a new network share or when you click on Reset default location under the Windows File Explorer or Folder Options, then you’ve come to the right place as this post will show you how to resolve this kind of error on your Windows 10 computer. Follow the given options below carefully to fix the “Folder Redirection Failed” error.

Option 1 – Take Ownership of the folder

If you are not able to access the folder could be one of the reasons why you’re getting the “Folder Redirection Failed” error and so you need to take ownership of the folder to resolve the problem. Before you proceed, make sure that your account is an admin account.
  • First, locate the concerned folder and right-click on it then select Properties.
  • Next, click on the Edit button in the Properties window and click OK to confirm if you got a User Account Control elevation request.
  • After that, select user/group from the permission windows or click on the Add button to add another user or group. It would be best if you add “Everyone” to give permission.
  • Then check “Full Control” under the “Allow” column to assign full access rights control permissions.
  • Now edit the permission to Full Control for “Everyone”.
  • Click OK to save the changes made and then exit.

Option 2 – Try to add Authenticated Users or Domain Computers

Make sure that the Folder Redirection group policy removal option is set to “Redirect the folder back to the user profile location when the policy is removed” when using the Folder Redirection. After that, you have to add Authenticated Users group with the “Read” permissions on the Group Policy Objects or GPOs. And if the Domain computers are part of the group of “Authenticated Users”. Note that by default, the “Authenticated Users” have these permissions on any new Group Policy Objects or GPOs. Once again, you have to add just “Read” permissions and not “Apply Group Policy” for “Authenticated Users”. Furthermore, to fix the “Failed to build the list of regular subfolders” errors, here are some options that could help.

Option a – Try to clear disk space

You might have to check if your disk is running out of space because if it is, then it will fail to create a list abruptly. And so you need to free up some disk space. You can either check on the files manually especially if you tend to keep your files at random places in your disk drive.

Option b – Find the Target route

You need to find the target route of the folder and then restore it if you are getting the “Failed to build the list of regular subdirectories” when you try to relocate the folder to the original location.

Option c – Try to change Ownership/Reset Defaults for all the User folders

If the “Failed to build the list of regular subdirectories” error pops up when you are trying to move a large number of files from one location to another, then you need to change the ownership of the folders as pointed out earlier.
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