Logo

Fix Can’t initialize disk in Windows 10

If you have recently installed a new internal or external hard drive or SSD and you’ve noticed that its status on the left side of the Disk Management tool states “Unknown Not Initialized”, this indicates that Windows can’t initialize the disk and that you won’t be able to use this new SSD or hard drive. You can encounter this kind of issue randomly and not just with a new hard drive or SSD but also with existing drives.

There are times when you won’t be able to find your drive or partition in the File Explorer. In such a case, you have to check the Disk Management if your drive or partition is there physically. You also have to check if you can see it as Not Initialized. If it is, then this means that the disk or partition does not have a valid signature that is if it’s not registered with the system properly. Note that a disk is registered when you format it at least once so if the disk was available before, then it could be somehow corrupted. To resolve the problem, you can try to initialize the disk manually or bring it online and add a drive letter. You can also try checking the Device Manager for issues or check the cable physically.

Option 1 – Try to manually initialize the disk

Since initializing the disk is the most common way to resolve the “Unknown Not Initialized” error, this is what you have to try first.

  • To initialize the disk manually, you have to open the Disk Management from the WinX menu by tapping Win + X keys and selecting Disk Management.
  • From there, you can find the non-initialized disk. Right-click on it and select the “Initialize Disk” option.
  • Next, select the partition style. It is recommended that you use the MBR option instead of the GPT or GUID Partition Table.
  • Now click the OK button. Your hard drive or SSD should now initialize without any problem.

Option 2 – Set the disk Online and add the Drive letter

  • If the disk appears to be offline under Disk Management, right-click on it and select the Online option.
  • On the other hand, if the disk is already set Online but does not have a drive letter, right-click on it and select the Change drive letter and path option.
  • Select a letter that is not allocated yet.
  • Once you’re done, you have the option to format the disk in either NTFS or FAT32 but if you are using a 64-bit computer, make sure that you opt for NTFS.

Option 3 – Try to check any issues in the Device Manager

It is also possible that the hard drive is not working properly due to some driver issues. Thus, it’s better if you check the Device Manager and see if that drive is listed with a yellow exclamation mark next to it. And if that’s the case, you have to right-click on that drive and select the Uninstall drive option. After that, click on Action and then run the Scan for hardware changes. It should fix the problem.

Option 4 – Try to physically check the cable

You might also want to check the physical status of the wires and see if they are connected properly or not. Specifically, you have to check two cables, such as:

  • The first one is the power cable that’s connected to your SMPS.
  • Next is the one that’s connected to your motherboard.

If any of the two cables are not working or missing, then it’s no wonder why your drive has an “Unknown Not Initialized” status. Thus, you need to have them replaced to fix the problem.

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

Make AI images on your local PC

Stable Diffusion is a machine learning model developed by Stability AI to generate digital images from natural language descriptions. The model can be used for different tasks like generating image-to-image translations guided by text prompts and upscaling images.

Unlike competing models like DALL-E, Stable Diffusion is open source and does not artificially limit the images it produces. Stable diffusion was trained on a subset of the LAION-Aesthetics V2 data set. It can run on most consumer hardware equipped with a modest GPU and was hailed by PC World as "the next killer app for your PC".

stable diffusion

Since Stable Diffusion is run locally and not in the cloud, as mentioned there is no limit to the number of images that you can produce but in order to use it you will have to get down a little dirty with setting your PC environment for it since it is not really an application, it is a command line text based descriptor that will use python to generate your images, so there is no install nor GUI.

In this guide, we will show you how to both install and run Stable Diffusion on your local PC so you can start producing some cool images all by yourself.

Hardware and software requirements

Make no mistake, Stable Diffusion will not run on a potato PC, in order to harvest the power of AI-generated imagery this is what you will need:

  • A GPU with at least 4GB of VRAM
  • 10GB of hard disk space
  • Python and libraries (Miniconda3 installer will install everything you need)
  • The Stable Diffusion files
  • Git
  • Any OS (Windows, Linux, macOS)

Installing components

For this tutorial, we are covering the installation and running of Stable Diffusion on Windows PC. The steps presented here are presented in a way that installation can be performed on any operating system but precise instructions will be for Windows OS.

GIT

The first thing to do is to install GIT. It is a tool that will let you easily maintain and install repos from the internet. to install it go to: https://git-scm.com/ and click on download. Follow the instructions for your version of the operating system. If you are a developer you are familiar with GIT and if you already have it installed you can skip this step.

One thing that is important when installing GIT locally is to select to use it via the command line (the second option that says "Git from the command line and also from 3rd-party software").

Miniconda3

Now when we have GIT installed, next thing is to use Miniconda3 to install python and all required libraries that are needed. Get the installer at: https://docs.conda.io/en/latest/miniconda.html

Miniconda3 is basically an easy installer so you do not have to install tons of stuff manually from different websites and sources, it is nicely packaged in the installer that will take care of everything.

Stable Diffusion

After the previous two steps, we are ready now to actually install Stable Diffusion. Go to https://huggingface.co/CompVis/stable-diffusion#model-access and install the latest library (as of the writing of this article currently it is stable-diffusion-v1-4-original, the last one on the right), the library is almost 5GB in size so be prepared for big download.

After installing stable diffusion's latest library it is time to update it to the newest version. You can download ZIP from GIT HUB https://github.com/CompVis/stable-diffusion

Once downloaded click on the Windows start button and type in Miniconda3 and click on open. Create a folder and name it how you want on a drive of your choice. For this example, we will install it all in disk C under folder AI_art, follow the instructions below but use your own names and destination instead. Do not close Minicoda3 after typing commands!!!

cd c:/
mkdir AI_art
cd AI_art 

Extract GitHub files that you have downloaded into your new folder and get back to Minicoda3 and type the next commands:

cd C:\AI_art\stable-diffusion-main
conda env create -f environment.yaml
conda activate ldm
mkdir models\ldm\stable-diffusion-v1

Let the whole process finish, some files are large and it might take a while. After the whole process is finished and completed, copy the checkpoint file that you have downloaded into: C:\AI_art\stable-diffusion-main\models\ldm\stable-diffusion-v1

After the file is copied rename it to model.ckpt and you are finished.

Running Stable Diffusion

The created environment is needed in order to actually use Stable Diffusion to create images. Each time you want to use it you will have to run it, so go into Miniconda3, and inside it type:

conda activate ldm
cd C:\AI_art\stable-diffusion-main

after we are inside the folder call the script with the parameters:

python scripts/txt2img.py --prompt "TXT DESCRIPTION OF IMAGE THAT YOU WANT TO CREATE" --plms --n_iter 5 --n_samples 1

and that's it, your image is created and it is located in C:\AI_art\stable-diffusion-main\outputs\txt2img-samples\samples

Read More
Windows 10 Update and Shutdown/Restart is not working
Update and Shutdown/Restart is not working. As you have probably noticed, every time a new update is released and is downloaded on your Windows 10 computer, the operating system replaces the Restart and Shut down button with “Update and Restart” as well as “Update and Shut down”. This is most likely done so that you won’t miss the update. However, some users noticed that there are times when these buttons still continue to display the same message even if they’ve already performed the required operations such as shutting down or restarting their PCs. Cases like this happen when an update wasn’t installed properly or has failed which is why your computer keeps on prompting you to Update and Shutdown every time. To fix this dilemma, follow the options laid out below.

Option 1 – Try restarting the File Explorer

Restarting the File Explorer can definitely help you fix lots of issues especially when there is some issue with the user interface including this one.
  • On the right side of the Taskbar, right-click on any open spot.
  • Then click on Task Manager.
  • Next, scroll down until you see Windows Explorer.
  • After that, right-click on it and select Restart.
  • If you are able to kill its process, you have to tap the Win + R keys to open the Run dialog box and type “explorer.exe” in the field, and hit Enter to launch the Windows Explorer.

Option 2 – Try running the Windows Update Troubleshooter

As you know, Windows 10 has various auto-repair built-in tools to help users fix small issues which used to get fixed manually. And in this case, you will need the Windows Update Troubleshooter to fix the issue.
  • Go to Settings and click on Update and Security.
  • From there, click Troubleshoot and click on Windows Update and then click the “Run the troubleshooter” option.
  • After that, it will try to detect and automatically fix common issues in the Windows Updates which can be resolved by Windows itself. Note that the process may take several minutes before it completes so you need to wait until it’s done. Once it’s done, in case you have some pending update that wasn’t realized by the system early on, it will apply the fix right away and restart the Windows Update service.

Option 3 – Try setting the Power button to Shut down

In case the first two options didn’t work out, you can try changing what the power button does. To do that, refer to these steps:
  • Go to Control Panel > Power Options.
  • From there, select the “Choose what the power buttons do” option from the left side.
  • Then set the Power button setting the “When I press the power button” option to “Shut down”. After that, it will shut your computer down without installing the updates but obviously, this is only a temporary fix.

Option 4 – Turn off your PC instantly without updating it

  • Tap the Win + R keys to open the Run dialog box.
  • Type in “shutdown -s -f -t 0” in the field and hit Enter if you really want to turn off your computer without any delay.
  • You could also tap the Ctrl + Alt + Del keys and select Shut down from the bottom right menu.
Just like the third option, this is also only a temporary fix.

Option 5 – Try running the Windows Module Installer

The Windows Module Installer is a built-in service in Windows 10 that allows you to fix the stuck Windows Updates in your computer. To use it, follow these steps:
  • In the Cortana search box, type in “cmd” and from the search results that appear, right-click on Command Prompt and select the “Run as administrator” option from the context menu.
  • Once you’ve opened Command Prompt as admin, type the SC config trustedinstaller start=auto command and tap Enter.
  • After the command is executed, you will see the “[SC] ChangeServiceConfig SUCCESS” message displayed on the Command Prompt console.
  • Now exit Command Prompt and then check if the buttons are now back to normal.

Option 6 – Put your PC in a Clean Boot State

  • Log onto your PC 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” checkbox 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.)
After putting your PC in a Clean Boot State, try creating a system restore point and see if the problem still occurs. Clean Boot troubleshooting is designed to help you isolate the problem. For you to execute a clean boot troubleshooting, you must do a couple of actions (the steps are given above) and then restart your PC after every action. You might have to disable one third-party app after the other to really isolate the issue. And once you’ve narrowed down the problem, you can either disable the third-party app that’s causing the problem or remove it. Note that you must switch your PC back into the Normal Startup mode after you’re done troubleshooting the problem. Here’s how you can do it:
  • From the “Start” menu, go to System Configuration.
  • After that, switch to the General tab and click the option for “Normal Startup”.
  • Next, go to the Services tab and clear the checkbox for “Hide all Microsoft services”.
  • Then find and click “Enable all” and if prompted, you have to confirm.
  • Afterward, go to the Task Manager and enable all the Startup programs and confirm the action.
  • Restart your PC when prompted.
Read More
How to start Windows 10 in safe mode
Booting Windows 10 in safe mode can solve many issues with your computer since Windows will boot just in its basic core and you can safely maintain it, find a solution for issues, etc. Before, entering safe mode was easy and pretty straightforward, during Windows evolution, entering safe mode was somewhat complicated and not being made so directly like once it was but do not worry. Starting Windows in safe mode today is even maybe easier than it was before, it is just not so obvious as it once was. In this article, we will go through several ways how you can boot up Windows in safe mode in order to solve whatever issue is troubling you.
  1. Start safe mode from settings

    Open Settings by pressing the ⊞ WINDOWS + I or by just clicking on the Start button and clicking Settings. Go to Update & Security, then Recovery. In Advanced startup, click Restart now. Once your PC reboots, click Troubleshoot, then Advanced options. Select Startup Settings then Restart.
  2. Go to safe screen from Sign-in screen

    Click the Shift on your keyboard while clicking on the Power button on the bottom right corner of the screen. Once your PC restarts, click on Troubleshoot, then Advanced options. Select Startup Settings then Restart. After the reboot, select or the F4 on your keyboard to run in Safe Mode. If you choose to use Safe Mode with Networking, select or F5.
  3. Start Windows recovery Environment

    Go to the Windows Recovery Environment by doing the following steps: Press on the power button to turn off your device. Press on the button again to turn it on. Once Windows starts, press the power button again for 10 seconds to turn it off. Then press it on again. Upon the reboot, hold on to the power button for 10 seconds to turn it off, then turn it on again. Because you've repeatedly turned on and off your PC, you will be redirected to Windows Recovery Environment. On the pop-up window, click on Troubleshoot, then Advanced options. Select Startup Settings, then Restart. After the reboot, select or the F4 on your keyboard to run in Safe Mode. If you choose to use Safe Mode with Networking, select or F5.
  4. Hold SHIFT while pressing RESTART on the start menu

    On the Windows 10 sign-in screen, hold on the SHIFT on your keyboard. While pressing on the key, click on the Power button, then choose Restart on the pop-up menu. Once your PC restarts, click on Troubleshoot, then Advanced options. Select Startup Settings then Restart. After the reboot, select or the F4 on your keyboard to run in Safe Mode. If you choose to use Safe Mode with Networking, select or F5
  5. Boot from installation media and choose it in the command prompt

    Create a Windows 10 bootable installation media on any external storage media. Once you do this step, wait for the installation to load. Select your preferred language and click on Next. Click on Repair your computer at the bottom left of the menu. Click on Troubleshoot, then Advanced options. Select Command Prompt - Use the Command Prompt for advanced troubleshooting options. Type in the following command on the prompt: bcdedit /set {default} safeboot minimal Hit Enter and wait for it to tell you that "The operation completed successfully". Exit Command Prompt and click on Continue.
  6. Use system configuration tool

    In the Search bar, type in msconfig. Select the Boot tab and under the Boot options, put a check beside Safe boot. Click OK. Reboot PC
  7. Press SHIFT + F8

    Press SHIFT + F8 when turning on Windows. This redirects you to Advanced Boot Options Window, then choose to run Windows on Safe Mode
There you have it, 7 different ways to enter safe mode in Windows 10, we hope that any of these tips proved helpful and that you managed to enter the safe mode and fix your Windows issues.
Read More
MS Edge Can’t connect to the proxy server
If you are trying to connect to the internet using the Microsoft Edge browser but encountered an error message instead that says, “Can’t connect to the proxy server”, read on as this post will show you how you can fix this error. This kind of error in Microsoft Edge could be caused by incorrect proxy settings or worse, malware. To fix this error, here are some suggestions you need to check out:

Option 1 – Try to check your internet connection

The first thing you can do to resolve the “Can’t connect to the proxy server” error in Microsoft Edge is to check your internet connection. There are times when your internet connection or Wi-Fi router can cause such problems. In such cases, you have to ensure that you have a valid internet source and if you are using a Wi-Fi router, you can try to use another connection and then see if the error is gone or not.

Option 2 – Try to disable the manual proxy set up from the Settings

In case you miss it, there is actually an option in the Settings panel that you can use to set up proxy in your Windows 10 computer. So if you encounter the “Can’t connect to the proxy server” error, you should disable manual proxy for the meantime and check if it fixed the error or not.
  • Tap the Win + I keys to open the Windows Settings.
  • Then go to Network & Internet > Proxy.
  • And on your right-hand side, ensure that the Automatically detect settings are enabled and that the Use a proxy server option under the Manual proxy setup is disabled.
  • Now try to open any website again and see if the problem’s fixed.

Option 3 – Try disabling the VPN

Like pointed out earlier, if you are using VPN, this could be the reason why you’re getting the “Can’t connect to the proxy server” error so the most obvious thing to do is for you to turn off the VPN and try to load a website in Edge again. And if you use a VPN software that works using their software, you can just completely exit or log-off from its account. On the other hand, if you are using a built-in Windows 10 VPN, you can simply turn it off or delete all the settings you have created there.

Option 4 – Disable the proxy server for your LAN

If your PC was just attacked by some adware or malware as of late, it is possible that it has changed the network settings in the system and might display spam advertisements. Thus, you have to disable the proxy server for your LAN. To do that, refer to these steps:
  • Tap the Win + R keys to open the Run dialog box.
  • Then type “inetcpl.cpl” in the field and hit Enter to pull up the Internet Properties.
  • After that, go to the Connections tab and select the LAN settings.
  • From there. Uncheck the “Use a Proxy Server” option for your LAN and then make sure that the “Automatically detect settings” option is checked.
  • Now click the OK and the Apply buttons.
  • Restart your PC.
Note: If you are using a third-party proxy service, you have to disable it.

Option 5 – Temporarily disable Firewall and third-party antivirus

Firewall and antivirus programs are known to block files the instant it detects a threat to the system. However, there are some cases when it can also block a file even when it’s a safe one. 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 6 – Clear the browsing data of Microsoft Edge

  • Open Microsoft Edge.
  • Then click on the three horizontal dots to open the menu.
  • From there, click on Settings. And under Settings, click the “Choose what to clear” button under the Clear browsing data section.
  • Next, check all the checkboxes and then click the Clear button to clear the browsing data in the Edge browser.
  • Restart Edge.

Option 7 – Try to reset, repair or reinstall Edge via Settings

You can reset, repair or reinstall the Edge browser through Settings. If none of it helped, you can try the following:
  • Open File Explorer and then go to this path – C:/Users/YourUsername/AppData/Local/Packages
Note: Before you type in the path in the Address bar, make sure that you put your user account name in place with the “YourUsername”.
  • Tap Enter to proceed.
  • Next, look for the folder named “MicrosoftEdge_8wekyb3d8bbwe” then right-click on it.
  • Click on Properties and uncheck the option “Read-only” under the General tab in the Properties window.
  • Click on Apply and then OK to save the changes made.
  • After that, look for the MicrosoftEdge_8wekyb3d8bbwe folder again and delete it. And if a prompt stating “Folder Access Denied” appears on your screen, just click on the Continue button to proceed – doing so will delete most of the content inside the folder except for the folder named “AC”.
  • Restart your PC.
  • Now all you have to do is to re-register Microsoft Edge using PowerShell. In the Start Menu, search “Windows PowerShell”.
  • Right-click on Windows PowerShell from the search results and select the “Run as administrator” option.
  • Type in this command in the PowerShell windows and tap Enter – Cd C:/Users/YourUsername
Note: Once again, make sure that you key in your user account name in place of “YourUsername.
  • After that, type in this command and tap Enter – Get-AppXPackage -AllUsers -Name Microsoft.MicrosoftEdge | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml" -Verbose}
  • Restart your PC.

Option 8 – Scan your computer for malware using Windows Defender

Your computer could be infected with malware which might have triggered the “Can’t connect to the proxy server” error. To fix this, you need to scan your computer using a reliable program like 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
How to Fix: Not a Valid Win32 Application Error

Not a Valid Win32 Application Error - What is it?

Not a Valid Win32 Application error code that indicates either the file or the program you are attempting to run missing or corrupt. And because of this error, Windows is unable to open your desired file or run the program successfully.

Error Causes

The ‘Not a Valid Win32 Application’ is triggered due to multiple reasons such as:
  • Unsuccessful program installation due to damaged disc/CD
  • Corrupted or incompatible file
  • The hard drive is loaded with bad and invalid entries
  • Malware invasion or viral infection
When you come across this error code on your PC, it is advisable to resolve it as it will cause you a great deal of inconvenience hampering program and file accessibility. Furthermore, if the error code occurs due to malware or viruses, then it can lead to severe data security threats and privacy issues.

Further Information and Manual Repair

To resolve the Not a Valid Win32 Application error on your PC, you don’t need to be a technical expert or hire a professional. Though this error might be crucial it is easy to fix. Here are some of the many methods that you can try to resolve this error code on your PC:
  • Check for File Compatibility
If you downloaded a file that is not compatible with your Windows version then you will come across this error. In this case, it is advisable to download the file version that is compatible and can run easily on the Windows version installed on your system. Nonetheless, if the file is compatible but still doesn’t run on your PC, then it’s possible that the file became corrupt during the download. Try downloading the file again.
  • Check if the CD is Clean
You may also come across the Not a valid Win32 application error code if the program installation from the CD is unsuccessful. This happens when the CD is dirty or it is scratched. The program does not copy properly onto the computer from the damaged CD. So, if the CD is scratched and dirty, buy a new CD and try installing the program again.
  • Verify the Program You Want to Run is Still on the Computer
If you are running the program from a shortcut, then verify that the program is still installed on your PC. This error may occur if the program is no longer installed on the computer. If you find the program is not installed on your system, then reinstall and try running the program again.
  • Wrong File Name Issue
Make sure the program or the file you are attempting to run on your system does not contain the same name as the long filename directory it is saved in. For example, running a file named ‘program’ in the ‘program files’ directory can cause errors in some Windows versions. If this is the issue, then try installing the program in a different directory.
  • Repair Hard Drive
If the hard drive is bad or corrupted, it can also generate the not a valid Win32 application. And because of this error files and programs fail to execute successfully as not all data can be read from the hard drive. To repair this issue first you need to run defrag and ScanDisk Microsoft built-in tools. These tools check for errors on the hard drive.
  • Run an Antivirus
If the error code occurs due to a viral infection or malware attack on your system, then you must download an antivirus, scan, and remove such malicious software. However, antivirus may slow down the speed of your PC. So, to resolve speed issues and boost the performance of your system, you may have to download a system optimizer.
Read More
How To Fix Error 0x00000bcb

What is 0x00000bcb PC Windows Error?

The 0x00000bcb is a PC Windows error code that occurs when Windows cannot connect to the printer successfully thus hampering the installation of your system.

Solution

Restoro box imageError Causes

Like any other computer hardware device, printers also need additional software to function called the driver. Unsuccessful installation of driver software leaves behind locked files in the registry information that causes the next installation to fail as well. And so eventually, when you try to connect the printer with your system, you see a 0x00000bcb error message pop up on your screen. To ensure you fix this error code for good you need to make sure the printer software installation is carried successfully the next time you do it. And for that, you need to get rid of the locked files and bad registry keys that are preventing successful printer software installation.

Further Information and Manual Repair

The inability to install the printer support software countless times can be frustrating and cause inconvenience as it can prevent you from getting printouts. To resolve this error code, many people pay hundreds of dollars to technicians. Nonetheless, there is a way to resolve this issue on your PC without hiring a professional or having technical expertise. Wondering how? Restoro is your answer. This is a two in one highly functional system optimizer and registry cleaner PC repair tool. It includes multiple utilities allowing PC users to fix practically all types of PC errors in seconds. To use Restoro, you don’t need to be technically sound. It is simple and very easy to operate. The powerful registry cleaning utility integrated into Restoro enables PC users facing error code 0x00000bcb messages to clean up the registry in no time and ensure quick and successful printer software install. With this helper, you can swiftly clean up unnecessary and locked files and bad registry keys. The advanced registry cleaner scans for all junk files, invalid entries, bad keys, and corrupt files accumulated in your system. Once the files causing the 0x00000bcb error are scanned all you have to do is click on the fix button to repair. It’s that easy! It cleans up the registry, wipes out the clutter, and clears up the disk space in seconds. Once the registry is cleaned, you can then try installing the printer software again. And once the printer software is installed successfully, your system will be able to connect to your printer without displaying 0x00000bcb error messages. In addition to this, you will also experience a great difference in the speed and performance of your PC. Here's how to Install and use Restoro to Fix PC Errors Restoro also includes other utilities like privacy error fixer, Active X and Class detector, and system stability repair. So along with registry issues, you can also scan your system for privacy errors like viruses and malware, thus keeping your PC secure from data breaches and system security issues. This multi-functional tool is worth downloading. It is safe, efficient, useful, and utility load. With this helper, Windows compatibility is not an issue. Restoro is compatible with all PC Windows versions. So, no matter what Windows version you are using, you can run this repair tool with ease. So, what are you waiting for? Download it now to resolve the 0x00000bcb error code and ensure a successful printer connected to your computer. Click here to install Restoro on your system.
Read More
Win Update enables itself after turning it off
Windows Updates are important and though it is not recommended for any user to turn it off completely, there are just some remote cases where you might have to keep it off. Such are the cases when you want to use your Windows 10 computer just for gaming and you don’t want Windows Update to interrupt it because of some messy driver update. A lot of users have in fact want to disable Windows 10 updates completely. Although you can always use the built-in option to delay Windows Updates or make Windows 10 inform you before downloading the updates, however, there are instances when Windows 10 Update may enable itself even after you turn it off or delay it. To resolve this issue, read on. You may have to disable the Windows Update Medic Service if Windows Update just keeps on starting and turning itself back on even after turning it off in Windows 10 on top of turning off the Automatic Windows Update Service or wuauserv and setting a Guest Log on. To get started, refer to the instructions prepared below.

Option 1 – Change the Log on account of the Windows Update Service

It appears that one of the major upgrades in Windows 10 has made sure that Windows 10 enables back the Windows Update Service all on its own even if the service has been set to disable by the administrator. And that’s the important thing here, Windows 10 uses admin credentials in order to ensure that it can re-enable the Windows Update Service each time it is in a disabled state. So in this fix, you can prevent the Windows Update Service from changing the account credentials used to run it.
  • Tap the Win + R keys to open the Run prompt with admin privileges.
  • Then type “services.msc” and click OK or hit Enter to open Services.
  • After that, locate the Windows Update Service from the list. Once you see it, double-click on it to open its Properties.
  • From there, click the Stop button to stop the service.
  • Next, go to the Log On tab and select the “Log on as ‘Guest” option which is the Guest account.
  • Just leave the password blank and then click Apply to save the changes made.
Note: After you made the changes, every time the Windows 10 Update Service attempts to run, you might get an error message that states, “Windows could not start the Service” or “The account specified for this service is different from the account specified for other services running in the same process”. This is what makes this fix a lot better compared to other software or batch file to keep turning off the Windows Update Service. You did not exactly disable the service but you just changed the account used to run the Windows Update service and since there is a password, the service never really works. On the other hand, Windows Defender can’t be stopped using this trick as it will keep getting an update.

Option 2 – Try to disable the Windows Update Medic Service using the Windows Update Blocker

Aside from changing the Log on account of the Windows Update Service, there is also another way you can prevent the service from enabling itself after you disable it. This alternative you can use is the Windows Update Blocker. This is a new Windows Service that was introduced in the recent Windows 10 versions. You can use this service to disable the service.
Read More
Problem running preinstall.cmd scripts
Setting up the Windows operating system in a computer can be quite a complicated task since there are a couple of things that take place in the background to ensure a full and protected setup of the operating system which includes a number of programs, scripts, and so on. They work together in the background to guarantee the integrity of the Windows operating system. However, there are times when this piece of code could also go wrong. As a result, you might encounter errors like the “There was a problem running preinstall.cmd scripts” error. “Preinstall.cmd” is a type of CMD file associated with Applications & Drivers developed by Gateway for the Windows OS. To fix the “There was a problem running preinstall.cmd scripts” error, there are several things you can try. You can try to download a new Windows installation image or create a new bootable drive as well as uninstall conflicting or incompatible programs. In addition, you can also run the Windows Update troubleshooter or reset Windows 10.

Option 1 – Try to download a new Windows installation image

Your first option to fix the “There was a problem running preinstall.cmd scripts” error is to download a new Windows installation image. You can get the official ISO files for the latest release of Windows 10. After you’ve downloaded the ISO files, you can use them to upgrade to the latest Windows 10 version.

Option 2 – Try creating a new bootable drive

  • Insert your USB drive into your PC.
  • Tap the Win + R keys to open the Run dialog box and type in “cmd” and tap Enter to open the Command Prompt. Alternatively, you can also search for “cmd” in the Cortana search box to open Command Prompt.
  • Once you’ve opened CMD, type in this command to open the DISPART utility – diskpart
  • After that, you should see a new black and white window that would say, “DISKPART>”.
  • Next, type in “list disk” in the command line and tap Enter to see the list of all the Storage devices as well as your hard disk connected to your PC. Here, you have to identify your disk’s number.
  • Type in this command where “X” is the disk number you have identified and then tap Enter – disk X
  • Type in this command and hit Enter to clear the table records and all the visible data on the drive – clean
  • Now you have to recreate a new primary partition of the drive so you’ll have to type in this command and tap Enter right after – create part pri
  • A new primary partition has been created so you have to select it by typing this command and tapping Enter – select part 1
  • Now you have to format it to make it visible to normal users by typing – format fs=ntfs quick
Note: If your platform supports the Unified Extensible Firmware Interface or UEFI, replace the “NTFS” with “FAT32” in the command on Step 10.
  • After that, type in this command and tap Enter after – active
  • Finally, type this command and hit Enter to exit the utility – exit
  • After you prepare the image for the operating system, save it to the root of your USB Storage device.

Option 3 – Try to uninstall conflicting programs

If you are using a computer made by Dell and got Windows 10 preinstalled in it, then you can try to uninstall the programs listed below and see if it fixes the problem.
  • Dell Encryption Management service
  • Dell Digital Library service

Option 4 – Run the Windows Update Troubleshooter

You might also want to run the built-in Windows Update Troubleshooter in Windows that could help you in resolving the “There was a problem running preinstall.cmd scripts” error. All you have to do is go to Settings > Update& security > Troubleshoot > Windows Update. From there, click on the Run the troubleshooter button and follow the next one-screen instructions that appear. After that, restart your computer and check if the error is now fixed or not by trying to install the update once again.

Option 5 – Run Microsoft’s online troubleshooter

Running Microsoft’s online troubleshooter might also help you fix the error. 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.

Option 6 – Try to reset Windows 10

  • Tap the Win key or click on the Start button located in the Taskbar.
  • Then click on the Power button at the bottom right portion of the screen.
  • Next, press and hold the Shift key on your keyboard and then click on Restart. This will restart your Pc into the Advanced Startup options.
Note: Once you have access to the Advanced Startup options, you have to go to the setting which allows you to Reset your Windows 10 PC. All you have to do is select Troubleshoot > Reset this PC to reach the following screen Afterward, select either the “Keep my files” option and then proceed to the next on-screen instructions that follow to reset your Windows 10 computer without losing your files.
Read More
How to Turn off Advertising ID in Windows
In case you don’t know, Microsoft hooks up every machine that is running Windows 10 with an Advertising ID which helps them in providing Windows 10 users with relevant ads. These ads are delivered to users in the Action Center, Start Menu as well as the ads inside the UWP Applications. What makes these advertisements relevant is that they keep track of your browsing trends, likes and dislikes, with the help of the Advertising ID. However, if you are not fond of advertisements and you do not want this feature of Microsoft to track your usage, worry not for you actually have the option to disable targeted ads on your Windows 10 computer by turning off the Advertising ID. And you can do that during Windows 10 Setup or using the Group Policy Editor. For more details, refer to the instructions provided below for each one of the methods.

Option 1 – Turn off Advertising ID during Windows 10 setup

If you are about to install Windows 10, then during the installation process, your computer boots into the Install and Configure Windows 10 screen with Cortana that assist you during the setup. Once you reach the last page which is “Choose privacy settings for your device”, you will see the Advertising ID of your computer. Under the Advertising ID, you have to disable or toggle off the “Apps can use advertising ID to provide more personalized advertising in accordance with the privacy policy of the app provider” option. After you disable it, click on the Accept button to proceed with the installation. After that, the copy of your Windows 10 you are using will have the Advertising ID disabled by default.

Option 2 – Turn off Advertising ID via Group Policy Editor

  • First, tap the Win + R keys to launch the Run utility.
  • Then, type “gpedit.msc” in the field and click OK or tap Enter to open the Group Policy Editor.
  • Next, navigate to this group policy setting: Computer Configuration > Administrative Templates > System > User Profiles
  • Now double click on the “Turn off the advertising ID” option and set the radio button to Enabled. Once you do, you will see the following description on your screen:
“This policy setting turns off the advertising ID, preventing apps from using the ID for experiences across apps. If you enable this policy setting, the advertising ID is turned off. Apps can’t use the ID for experiences across apps. If you disable or do not configure this policy setting, users can control whether apps can use the advertising ID for experiences across apps.” Note that setting the radio button to Enabled or Not Configured will turn off the data collection of the Advertising ID.
  • Finally, exit the Group Policy Editor and then restart your computer to apply the changes made successfully.
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
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