Logo

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.

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

Disabling Absolute Volume in Windows 10
As you know, Bluetooth headphones allow users to connect to their mobile devices wirelessly. This allows you to talk on your mobile device or listen to music without having to connect any cords or wires. Additionally, it even allows you to adjust the volume of a left or right speaker. However, Bluetooth headphones in Windows 10 are another story as their scope is limited. For instance, the left and right pieces can’t have different volume levels. But if you still want to change the dual control of the volume of headphones separately in Windows 10. And in this post, you will be guided on how exactly you can do that. In addition, in this post, you will also be guided on what you can do if the Windows Update messed with the Bluetooth volume control and what you can do to disable the absolute volume in Windows 10. In case you don’t know, the Absolute Volume feature is actually incompatible with a number of Bluetooth devices which can result in the inability of the Bluetooth device to adjust its volume. Thus, if you experience this kind of issue, you’ll notice that the volume slider in the taskbar and the device volume control neither have any effect in adjusting the volume. And each time you try to adjust the volume level for one speaker, the volume of another speaker also automatically changes. In such a case, it would be difficult for you to separately change the dual volume control headphones. Worry not for there is an easy registry tweak you can try to make this possible to do. But before you proceed with the instructions provided below, make sure that you create a System Restore first. Once you have that covered, follow the steps below carefully. Step_1: Tap the Win + R keys to open the Run dialog box and type “Regedit” in the field and hit Enter to open the Registry Editor. Step_2: Next, navigate to this registry path: HKEY_LOCAL_MACHINESYSTEMControlSet001ControlBluetoothAudioAVRCPCT Step_3: After that, look for the entry named “DisableAbsoluteVolume” which should be located in the right pane. But if you’re unable to find this entry, you can just create it by right-clicking on the CT key and selecting New > DWORD (32-bit) value, and then assign “DisableAbsoluteVolume” as its name. Step_4: Once done, double click on the “DisableAbsoluteVolume” DWORD and set its value from 0 to 1. Step_5: Now exit the Registry Editor and restart your computer. On the other hand, you can also disable or enable the Absolute Volume feature by executing a command in the Command Prompt.
  • If you want to disable the Absolute Volume feature, just execute this command: reg add HKLMSYSTEMControlSet001ControlBluetoothAudioAVRCPCT /v DisableAbsoluteVolume /t REG_DWORD /d 1 /f
  • If you want to enable the Absolute Volume feature, just execute this command: reg add HKLMSYSTEMControlSet001ControlBluetoothAudioAVRCPCT /v DisableAbsoluteVolume /t REG_DWORD /d 0 /f
After you execute the command, just restart your computer.

After your computer restarts.

Once you’re done executing the given instructions above, you have to right-click on the speaker icon located in the system tray and select Open Sound Settings and click on Manage device settings – the same controls will be visible to you like earlier. Now when you change the volume level for one speaker, the other speaker should now remain as it is and won’t change alongside the speaker.
Read More
How to Fix DISM Error 1726 in Windows 10
What is DISM Error 1726? Every time you encounter some issues in your Windows 10 computer, especially when it comes to corrupted system files, you can always use the SFC scan and if the SFC can isn’t able to resolve the issue, there is also the DISM tool you can use which usually resolve the vast majority of system file corruption sufficiently. However, there are times when even the DISM commands experience issues as well. Such is the case with the 1726 error: “The remote procedure call failed”.

Some users reported that this DISM problem happens right before the process is supposed to end. According to experts, this error in DISM occurs due to any of the following reasons:

  1. A third-party program might have interrupted the DISM operation and is the one that triggered the 1726 error: “The remote procedure call failed”.
  2. The error could also pop up when there is a pending corruption repair. This usually happens when you tried to run a DISM command previously that was terminated manually or was halted because of some malfunction.
  3. Lastly, the error could also occur because the process that’s responsible for the procedure is disabled or was prevented from running.
Whichever the case is, here are some suggestions that might help you in resolving the 1726 error: “The remote procedure call failed”.

Option 1 – Try updating your PC to the latest Windows build available

Since the problem is specific to certain builds in Windows 10, you need to make sure that your computer is updated before you try other troubleshooting steps. Thus, follow the steps below to update your Windows 10 PC.
  • Tap the Win + R keys to open the Run dialog box.
  • Then type “ms-settings:windowsupdate” in the field and hit Enter to open the Windows Update screen.
  • After that, click on Check for Updates and then follow the next on-screen instructions to apply the latest Windows update.
  • Once the update has been installed, restart your PC and run the DISM command again and see if the problem is fixed.

Option 2 – Try to change the Startup Type of the Remote Procedure Call service

As stated early on, the error might also be caused by a disabled Remote Procedure Call service or RPC or that it might be prevented from running for some reason. In case you don’t know, RPC is the service control manager for both COM and DCOM servers and it’s responsible for performing object variation requests, exporting resolution as well as distributing collection for the servers. And so if the server is disabled, all programs that are using COM and DCOM including the DISM commands, will not function correctly. Thus, you need to make sure that the RPC service is scheduled to enable itself on every system boot. To do so, here’s what you have to do:
  • Tap the Win + R keys to open the Run dialog box.
  • Type “services.msc” in the field and hit Enter to open Services.
  • From there, scroll down until you see the Remote Procedure Call (RPC) service and then right-click on it and select Properties.
  • Then go to the General tab and change the drop-down menu next to Startup type to Automatic.
  • After that, click the Apply button and then OK to apply the changes made.
  • Restart your PC and run the DISM command once again at the next startup.

Option 3 – Try to modify the RpcSs registry key value

If the option didn’t work, you can also try enabling the RPC service using the Registry Editor. Before you proceed, make sure to create a System Restore point first and then follow the steps below afterward.
  • Tap the Win + R keys to open the Run dialog box.
  • Type “Regedit” in the field and hit Enter or click OK to open the Registry Editor. And if a User Account Control prompt appears, just click on Yes.
  • After that, navigate to this registry key: HKEY_LOCAL_MACHINE SYSTEM CurrentControlSet Services RpcSs
  • After selecting the aforementioned registry key, go to the right pane and double-click on the Start value.
  • Next, change the Value data of start to 2 and click OK to save the changes made.
  • Exit the Registry Editor and restart your PC and check if the 1726 error in DISM has already been resolved or not.

Option 4 – Try to disable the Windows Search service temporarily

Some users also recommended disabling the Windows Search service for the meantime as it could be the one that’s interrupting the DISM process.
  • Tap the Win + R keys to open the Run dialog box.
  • In the field, type “services.msc” to open the Services window again and hit Enter to open it.
  • Next, scroll down over the services list and double-click on the Windows Update service.
  • Afterward, go to Windows Search properties and click the General tab and then click the Stop button to stop the service from running temporarily.
  • Now try running the DISM commands again and see if the problem’s fixed or not.
  • Restart the Windows Search service and then restart your PC as well.
Read More
Chrome won’t clear Browsing History and Data
As you know, one of the most popular browsers these days is the Google Chrome browser. Browsing the web every day using your Chrome browser, leaves a trail of browsing history. Google uses the browser history to streamline and make the browsing experience a lot better. But there are times when Chrome users experience trouble in deleting their web browsing history, data, cookies, and cache. In this post, you will be guided through specific settings that will help you in getting rid of the browsing history in Chrome. There are several options you can take in clearing the browsing history in Chrome. But before you try them, you can try the basic one first using the following steps:
  • First, click on the three-dotted icon and click on History from the menu.
  • Next, click on the Clear browsing data option and select “All time”.
  • Then select the type of history you want to delete.
  • After that, click on the Clear Data button.
If clearing the browsing history in Chrome the old way didn’t work, then you can try to check out the options provided below.

Option 1 – Clear the cache using the File Explorer

The first thing you can do is to clear the cache by using File Explorer. To get started, refer to these steps:
  • Tap the Win + E keys to open File Explorer.
  • Next, navigate to the following paths:
    • C:/Users/YOURUSERNAME/AppData/Local/GoogleChrome/User Data/DEFAULT/Cache
    • C:/Users/YOURUSERNAME/AppData/Local/GoogleChrome/User Data/PROFILENAMECache
  • From the given locations above, replace “YOUR USERNAME” with the user profile name you use and then search for a file named “Cookies”.
  • Now delete its contents.

Option 2 – Reset Chrome

Resetting Chrome can also help you fix the error. This means that you will be restoring its default settings, disabling all the extensions, add-ons, and themes. Aside from that, the content settings will be reset as well and the cookies, cache, and site data will also be deleted. To reset Chrome, here’s what you have to do:
  • 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 option and click on the “Restore settings to their original defaults” option to reset Google Chrome.
  • Now restart Google Chrome.

Option 3 – Try to clean reinstall Chrome

There are instances when programs leave files behind after you’ve uninstalled them and the same thing can happen to Chrome so before you reinstall Chrome, you have to make sure that you have deleted the User Data folder. To do so, refer to the following steps:
  • Hit the Win + R keys to open the Run dialog box.
  • Next, type “%LOCALAPPDATA%GoogleChromeUser Data” in the field and hit Enter to open the User Data folder.
  • From there, rename the default folder and name it something else, e.g. “Default.old”.
  • After that, install Google Chrome again and check if the issue is now fixed.
Read More
A Quick Guide to Resolving Error 1713

Error 1713 - What is it?

If you use Microsoft-developed programs, then you might experience this error code on your PC. It indicates programming limitations. This error, Error 1713 may pop up during the installation of 2007 or 2010 Microsoft Office Suite. The error message appears in the format stated below:
“Error 1713: Microsoft Office has encountered a problem and needs to close. We are sorry for the inconvenience.”
Common symptoms for error 1713 include system crashes, system freeze and sometimes you may feel your Windows running sluggishly.

Solution

Restoro box imageError Causes

Error 1713 may be triggered due to many reasons. However, common causes for this error occurrence include:
  • Corrupt Microsoft Office Software
  • Corrupt Windows Registry
  • Malware
  • Deleted Microsoft Office Related Files

Further Information and Manual Repair

No matter, what the cause of this error is, it is advisable to resolve it immediately without any delays. This error may pose serious threats to your PC is not repaired timely and also cause you a great deal of inconvenience limiting you from using Microsoft software programs. Here are some of the best and easy DIY methods that you can try to resolve this issue. To work around these methods you don’t have to be a technical whiz or a computer programmer. Let’s get started:

Method 1 - Use System Restore to Undo Changes Made Recently

During any program deletion, you may have accidentally deleted Microsoft related files because of which you may be experiencing error 1713 on your PC. In such an event, the best way to resolve is to undo recent system changes. To do this, use Windows System Restore Utility. This is inbuilt in Windows. To access System Restore Utility, simply press start and type System Restore in the search box and press enter. Now follow the steps in the Wizard to choose a restore point. Once you select, reboot your PC to activate changes.

Method 2 - Update Drivers

One of the many causes of error 1713 is hardware failure. Hardware failure indicates driver issues. To resolve the problem it is advisable to delete the outdated drivers and update new versions on your PC.

Method 3 - Scan for Malware

Malware can also trigger such error codes on your system and corrupt important files. Therefore remove malware immediately from your PC by running an antivirus. Antivirus will detect and delete all malicious programs in no time.

Method 4 - Repair the Registry

Broken entries, junk files, and invalid registry keys corrupt the registry thereby generating error codes. To resolve you first need to clean the registry and repair it. For this download Restoro. It is a PC Fixer deployed with a registry cleaner. The registry cleaner removes all bad entries stored in the registry, cleans it and repairs the damaged files in just a few clicks. Click here to download Restoro.
Read More
How to Repair Error Code 0xC190010, 0x30018 in Windows 10

Error Code 0xC1900101, 0x30018? - What is it?

Users, when upgrading to Windows 10 from Windows 7 or Windows 8/8.1, or when upgrading to a new version, build, service pack, or major update of Windows 10, can encounter error code 0xC1900101, 0x30018. Windows 10 installation fails and stops or hangs. During the installation process, it will reach a certain maximum limit (normally at 6% or 32%) then reverts back to the previous version of the operating system and displays the following message:

We couldn’t install Windows 10. We’ve set your PC back to the way it was right before you started installing Windows 10.

0xC1900101 – 0x30018 The installation failed in the FIRST_BOOT phase with the error during the SYSPREP operation.

Solution

Restoro box imageError Causes

In attempting to fix Error Code 0xC1900101-0x30018, it is vital to know what causes this issue. The most probable causes of this error are:

  • Incompatible hardware or driver
  • Incompatible security programs or antivirus or incompatible utility software
  • A device driver possibly stopped responding to setup.exe while on the installation process.
In some cases, you might be opened to other error messages when attempting to update to Windows 10, including error code 8007002c.

Further Information and Manual Repair

In fixing issues related to error codes, it is best to employ manual repair methods. Using these methods helps users pinpoint the root causes of the issue and apply solutions permanently to fix the issues. While most manual repair methods can be done by every Windows user, even those without technical abilities, there are certain cases where help from a Windows professional is needed. If you’re not up to facing risks in implementing manual methods yourself, consider getting help from a professional Windows technician or you can use a powerful automated tool. In fixing Error Code 0xC1900101-0x30018, you can repeat the same steps used for 0xc000021a (Method One) or you can try doing the following:
  • Disable or uninstall your Antivirus program before proceeding to upgrade the system
  • Ensure that the machine name is simple (having at least 8 characters) with no special characters like hyphens or dashes.
  • Restart the device a few times then try again.
  • Disable General USB Devices such as the Smart Card Reader.
  • If you use an SCSI hard disk, ensure that you have available drivers you can use for your storage such as a thumb drive and make sure that it is connected. During the Windows 10 setup, select the Custom Advanced Option and use the Load Driver command to be able to load the suitable driver for the SCSI drive. If this fails, try switching to an IDE-based hard disk.
  • You can now perform a clean boot. Restart your device then try again.
  • If you are using the .ISO file for upgrading the system, you need to disconnect from the Internet first before proceeding to the setup. If you are connected to Wi-Fi or by Ethernet (LAN), make sure to disable both connections then you can proceed to set up again.
  • If you’re performing the update through Windows Update, once the download reaches 100%, disconnect from the Internet, and then proceed with the installation.

NOTE: If this fails, if possible, you can try using the .ISO file in upgrading.

  • Switch to a local account if the device is connected to a domain.
  • Disconnect all external devices attached to the computer such as gaming controllers, printers, or USB keys.

If you’re using Windows Update in installing Windows 10, you can implement the following:

  1. Open the Command Prompt window by pressing Windows Key + X. Select Command Prompt (Admin) from the menu.
  2. Stop the BITS, Cryptographic, MSI Installer, and the Windows Update Services. In order to do this, Type or Copy and Paste the following commands one at a time:

NOTE: Don’t forget to hit Enter after every command.

net stop wuauserv

net stop cryptSvc

net stop bits

net stop msiserver

  1. Rename the Catroot2 and SoftwareDistribution In order to do this, Type or Copy and Paste the following commands one at a time:

NOTE: Don’t forget to hit Enter after every command.

                        ren

C:WindowsSoftwareDistribution SoftwareDistribution.old

                          ren

C:WindowsSystem32catroot2 Catroot2.old

  1. Restart the BITS, Cryptographic, MSI Installer, and the Windows Update Services. In order to do this, Type or Copy and Paste the following commands one at a time:

NOTE: Don’t forget to hit Enter after every command.

net start wuauserv

net start cryptSvc

net start bits

net start msiserver

  1. Type Exit in the Command Prompt then close the Command Prompt window then restart the computer.
Can’t seem to put up with the long and technical manual repair process? You can still fix this error by downloading and installing a powerful automated tool that will surely get the job done in a jiffy!
Read More
Fix Update Error 0x800705B3 in Windows
Some Windows users are encountering the 0x800705b3 error code after failing to install a pending update on Windows 10. Most commonly this particular issue is reported to occur with Integrated webcam drivers updates and Bluetooth adapter driver updates. Follow the guide below in order to fix the issue and update your Windows successfully

Running the Windows Update Troubleshooter

The majority of users that were dealing with this issue reported that the issue was fixed after they ran the Windows Update Troubleshooter and applied the recommended fix.
  1. Open a Run dialog box by pressing ⊞ WINDOWS + R. Inside the text box, type ‘ms-settings:troubleshoot’ and press ENTER to open up the Troubleshooting menu. Opening the Troubleshooting tab on Windows 10
  2. Once you’re inside the Troubleshooting tab, move over to the right-hand section of the screen and click on Windows Update (under Get up and Running). Next, from the context menu that just appeared, click on Run the Troubleshooter.
  3. Once you’re inside the Windows Update troubleshooter, wait until the initial scan is complete and see if a viable repair strategy is found.
  4. If the scan has identified a strategy with the potential to fix your ongoing issue, click on Apply this fix and wait until the procedure is complete. Applying the fix Note: Depending on the type of fix that was recommended, you might need to follow an additional set of instructions before the fix will be properly imposed.
  5. After you’ve done this, reboot your computer and wait for the next startup to complete.
  6. Open Windows Update once again and see if the installation of this pending update is now successful.

Installing the pending Update Manually

Whether you’re experiencing this issue with an integrated webcam driver or with anything else, chances are you’ll be able to circumvent the apparition of the 0x800705b3 error by using the Microsoft Update Catalog to find, download and install the pending update manually.
  1. Open your default browser and navigate to the root web page of the Microsoft Update Catalog.
  2. Once you’re inside the Microsoft Update Catalog, use the search function (top-right corner of the screen) to search for the update that is failing.
  3. After the search is completed and you get the list of results, look for an updated driver version that is compatible with your Windows version and CPU architecture.
  4. Once you manage to identify the correct Windows Update, click on the hyperlink associated with the update that you want to install, then click the Download button and wait for the process to complete.
  5. After the download is complete, use File Explorer to navigate to the location where you previously downloaded the update.
  6. When you get to the correct location, right-click on the .inf file and choose Install from the context menu that just appeared. Note: If you have multiple failing updates with the same 0x800705b3, repeat the instructions above with every Windows Update that you’re having trouble installing.
  7. At the end of this operation, reboot your computer and see if the problem is fixed at the next computer startup.

Enabling the Windows Installer Service

The Windows installer service is responsible for installing pending updates that get downloaded by the Windows Update component. If this service is disabled on your configuration, none of the updates waiting to get installed will get completed.
  1. Press ⊞ WINDOWS + R to open up a Run dialog box. Inside the text box, type ‘services.msc’ and press ENTER to open up the Services utility.
  2. Once you’re inside the Services screen, move over to the right-hand tab of the screen, scroll down through the list of services and locate the Windows Installer service. When you find it, right-click on it and choose Properties from the context menu that just appeared.
  3. Once you are inside the Properties screen of the Windows Installer services, access the General tab, click on the Start button to force-start the service. Note: If you can, also change the Startup type to Automatic via the associated drop-down menu. However, depending on your administrator settings, this might not be possible.
  4. Restart your computer and wait for the next startup to complete. Once your PC boots back up, attempt to reinstall the driver that was previously triggering the 0x800705b3 error and see if the issue is now fixed.

Performing a Winsock Reset

In case the 0x800705b3 error is related to some kind of network inconsistency (TCP or IP related), you might see Windows Updates failing due to bad data that forces the Windows to abort the installation of new pending updates. In this case, you should proceed by doing a complete Winsock reset procedure to fix the majority of the socket and temporary data-related issues that might cause this behavior. Several affected users have confirmed that this method was the only thing that allowed them to finally fix the Windows Update issue and install pending updates normally. Here are some step-by-step instructions that will walk you through the process of performing Winsock Reset:
  1. Open up a Run dialog box by pressing ⊞ WINDOWS + R. Inside the text box, type ‘cmd’, then press CTRL + SHIFT + ENTER to open up an elevated Command Prompt. Accessing an elevated CMD prompt Note: When prompted by the UAC (User Account Control) prompt, click Yes to grant admin access.
  2. Inside the elevated CMD prompt, type and taste the following commands in order and press ENTER after each one to effectively reset the TCP and IP data that might be responsible for the apparition of the 0x800705b3 error code:
    nbtstat -R
    nbtstat -RR
    netsh int reset all
    netsh int ip reset
    netsh winsock reset
  3. Once every command above is processed successfully, you can go ahead and close the elevated Command Prompt and reboot your computer.
  4. After the next startup is complete, repeat the installation of the Windows Update that was previously failing and see if the issue is now fixed.

Performing SFC and DISM Scans

If none of the ‘superficial’ causes have worked in your case, you should start considering some type of system corruption that might affect your computer’s ability to complete pending updates that are currently waiting to be installed. In case you find yourself in this particular scenario, you should run a couple of built-in utilities capable of fixing corrupted instances that might be currently affecting the Windows Update component. Our recommendation is to start with a simple System File Checker scan. An SFC scan will cross-check every Windows File against a local archive that maintains healthy copies. In case corrupted instances are found, this utility will swap the corrupted instance with the healthy equivalent.

Performing an SFC scan

Once the SFC scan is complete, reboot your computer and wait for the next startup to complete. After your computer boots back up, initiate a DISM scan. This utility works differently in the sense that it relies on a sub-component of Windows Update to download healthy copies for the corrupted Windows files that need to be replaced. Because of this, it’s important to make sure that you have a reliable Internet connection before initiating this operation.

Doing a DISM scan

After the DISM scan is complete, reboot your computer one final time and see if the issue is fixed once the next startup is complete.
Read More
TPM 2.0 and Windows 11, all you need to know
TPM or Trusted Platform Module version 2.0 is a must-have if you plan on upgrading your system to Windows 11. So what exactly is TPM and do you have it?

TPM checkerWhat exactly is TPM?

TPM is a tamper-resistant hardware technology tasked with generating and storing encryption keys inside it for better PC security. It can be remotely used to authenticate hardware and software by utilizing a unique endorsement key placed into the hardware itself. This technology can be used for example in BitLocker inside Windows in order to have data on a hard drive encrypted so if the mentioned drive is connected to another computer it would not be able to be accessed since the encryption key is stored in the TPM module. Microsoft is pushing its agenda that Windows 11 must be and must feel like safety first OS which will protect user data and user information and requiring TPM means that each Windows 11 will be secure so no additional software patches will be required for an extra layer of security. Windows 11 will assume that each user has TPM encryption enabled and will be built upon that.

Do you have TPM on your computer?

If your computer or hardware has been purchased in 2016 or later there are very high chances that you already have the required technology to run Windows 11. Unfortunately, many gaming motherboards have not been placing TPM in their boards and you might not have it. Also, there is the option of you having it but it is turned off in motherboard settings making Windows unable to detect it. As you can clearly see there are a lot of scenarios around required tech and honestly it is a complete mess. But lucky for you there are ways to find out do you possess the needed module in order to make an upgrade. On your current computer on which you would like to make an upgrade in your current Windows OS press ⊞ WINDOWS + R to open the run dialog. Inside run dialog type in TPM.msc and press ENTER to open Trusted Platform Module Management on Local Computer. You will immediately receive information do you have the required module. If everything is fine, you are good to go, however, if it says that compatible TPM cannot be found there is a chance that either you do not have needed hardware or it might be turned off inside motherboard settings.

Check motherboard UEFI

If you have a newer motherboard but Windows utility cannot detect TPM there is a chance that it might be turned off directly on your board. In order to check this, you will have to boot up your PC into UEFI either by pressing the corresponding key when it is turned ON or from Windows reboot options. Once you are inside UEFI you need to find security options and see if there is an option to turn ON or enable TPM. Since every motherboard is different and has different UEFI software we cannot cover all of the permutations and the best we can do is hope that provided information is enough. You can also visit your motherboard manufacturer to see instructions for your specific case.

Conclusion

TPM itself is generally an OK idea and I can surely see good sides of it but there is this lurking feeling that generally, Microsoft is not really concerned about the security of our data and that the real requirement for this is trying to battle software piracy. I simply cannot trust company which introduced tons of telemetry tracking through ages and which has done everything in their power to battle non-legal use of their software. I do not promote piracy but I support free choice and besides, who can tell me what will happen if TPM malfunctions, will I lose all of my data forever? It is not so uncommon that TPM has malfunctioned in the past and it is only logical to presume it can do it again in the future but this time we will not have the choice not to use it, we will be forced into it.
Read More
A Quick Guide to Fixing Error 0x80010108

What is Error 0x80010108?

Error 0x80010108 is a Windows Live Photo Gallery error. This error prevents the Windows PC user from viewing photos. The error code is often displayed in the following format:
‘An error is preventing the photo or video from being displayed’ Error code 0x80010108

Solution

Restoro box imageError Causes

The error 0x80010108 occurs due to multiple reasons including:
  • The issue in Windows Live Essential Settings
This error occurs while using Windows Photo Gallery but it is actually related to the Windows Live Photo Viewer within the Windows Live Essentials software.
  • Viral Infection
  • Registry Issues
To view the photos on your Windows PC, it is advisable to fix the problem right away. Furthermore, you should also not delay in fixing this problem especially if the underlying causes are related to the registry or viral infection. These can pose serious system and security threats including system failure, crash and data breaches.

Further Information and Manual Repair

To resolve this error on your system, you don’t always have to hire a technical expert or be a technical whiz yourself. Here are some easy and effective methods to resolve error 0x80010108 on your PC immediately:

Method #1

To repair Windows Live Essential Software Settings, go to the start menu and then click the control panel. Now in the control panel go the option Programs. In the programs click the tab programs and features and then select Windows Live Essentials and click repair tab. Once the settings are repaired, restart your PC to activate changes.

Method #2

Go to the start menu and type regedit.exe and then press enter. Type the following key: HKEY_CLASSES_ROOT WindowsLive.PhotoGallery.bmp.15.4 shell open DropTarget then right-click DropTarget and then Rename. Prefix a hyphen so that it becomes “-DropTarget”. Now type the following for each GIF/ICO/JPG/PNG/TIF file types: HKEY_CLASSES_ROOTWindowsLive.PhotoGallery.gif.15.4 shellopen DropTarget HKEY_CLASSES_ROOT WindowsLive.PhotoGallery.ico.15.4 shell open DropTarget HKEY_CLASSES_ROOT WindowsLive.PhotoGallery.jpg.15.4 shell open DropTarget HKEY_CLASSES_ROOT WindowsLive.PhotoGallery.png.15.4 shell open DropTarget HKEY_CLASSES_ROOT WindowsLive.PhotoGallery.tif.15.4 shell open DropTarget

Method #3

Download Restoro on your PC to scan for both registry issues and malware. Restoro is a multi-functional PC Fixer embedded with utilities like a powerful registry cleaner, an antivirus, and a system optimizer to name a few. The registry cleaner scans and detects all registry-related issues. It removes all unnecessary files damaging the registry and corrupting the registry settings. Simultaneously, the antivirus removes all kinds of malicious software affecting your PC including spyware, viruses, and Trojans. The system optimizer feature ensures that your PC works at the optimal level and does not slow down during and after the cleaning process. Restoro is efficient and safe. It has a user-friendly interface and simple navigations which makes it quite easy to operate. It can be downloaded on all Windows versions including. Click here to download Restoro to resolve error 0x80010108.
Read More
Hide application and features in control panel
Program and features are Control panel section where once accessed contains all programs installed on the operating system. From these windows, any logged-in user can modify applications, uninstall them, etc. If for whatever reason you want to limit this access to users and remove this group from the control panel please do keep reading as we show you how you can achieve this desired result using two methods: via policy editor or registry editor. Feel free to use any provided method as both works (except on Windows 10 Home edition) and achieve the same thing, it all comes down to preferred preference on how you wish to do things.

Local group policy editor method

This method is more straightforward and easier perhaps than its counterpart but it has one significant drawback, it will not work on Windows 10 Home edition which does not have in itself a policy editor included. If you are using Windows 10 Home edition then feel free to skip this method and do it via registry editor. That being said let's start:
  • Press ⊞ WINDOWS + R to open the run dialog
  • Inside run dialog type in gpedit.msc followed by ENTER to open Group policy editor
  • Go to User Configuration\ Administrative Templates\ Control Panel\ Programs\
  • Double-click on the setting named Hide Programs and Features page
  • Change the toggle option from Not Configured to Enabled
  • Click on the Apply button and then the Ok button to save the changes
  • at this point, everything is supposed to be applied and your changes should take effect immediately. However, it has come to our attention that sometimes this is not the case. If you are one of these users which for whatever reason have not experienced applying to set momentarily do not despair and follow this quick guide on how to refresh settings and apply them right away.
  • Press ⊞ WINDOWS + X to open the hidden menu
  • Click on command prompt (admin)
  • In command prompt type in gpupdate /force and press ENTER in order to force update and set setting right away

Registry editor method

The registry editor method is a more complex one but it will be your only way of doing it if as mentioned you are running Windows 10 Home edition. As always it is highly recommended to make a backup of the Windows registry before tempering with it.
  • Press ⊞ WINDOWS + R to open the run dialog
  • Inside run dialog type in regedit and press ENTER to open the registry editor
  • If you would like to make a backup of the Windows registry go to File > Export and save the backup on a secure location naming it as you wish
  • Locate the following key inside the registry editor HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Programs
  • Right-click on the right pane of the Programs key and choose the New > DWORD (32-bit) Value option
  • Name the value as NoProgramsAndFeatures
  • Double-click on the NoProgramsAndFeatures value to open it
  • Change the value data to 1
  • Save the changes
  • Reboot the computer in order for changes to take effect.
note: you can always change values back in order to show again panel by changing the value to 0 in registry editor or choosing Not Configured or Disabled in the local group policy editor
Read More
Fix 0xC03A0005 error in Windows 10
When performing a Windows Backup to the NAS device (backup to a network share) that is running Samba, fails with an error message The backup failed, The version does not support this version of the file format (0xC03A0005). The problem occurs because of a conflict with the VHD file that is created by Windows Backup and is mounted during the process. There are three types of VHD files:
  1. Fixed,
  2. Expandable
  3. Differencing
If the VHD file is a sparse file that is not supported by the native VHD driver, the mounting will fail, and you will get this error. An example VHD file is one that keeps expanding depending on the backup size. The problem occurs only in the case of  File Level backup (file/folders in a volume) but not on the block level backup as the vhd file is never mounted. However, in the case of File Level Backup, the vhd is mounted, created by Windows Backup, which does not support the mounting of sparse files.

The solution is to use Strict Allocate: option in the smb.conf file

Login to SMB using SSH. Open the configuration file using the VI editor located at /etc/samba/smb.conf. If the option is not there, you can manually add strict allocate = yes which will make sure there are no sparse file that is created.
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