Logo

How to Fix CPU Not Compatible Error Message On Windows 10

CPU Not Compatible – What Is It

Some users wanting to upgrade to Windows 10 from Windows 7 or Windows 8.1 experienced errors with installation. One of these errors is CPU Not Compatible. When you click and run the “Get Windows 10” from your system tray bar, you’ll receive the “CPU is not compatible with Windows 10” error. When this happens, it might be good to check if there’s a bug or if your NX feature (a requirement for the Windows 10 installation) is enabled.

Solution

Restoro box imageError Causes

The “CPU is not compatible with Windows 10” error normally occurs when:

  • NX feature is not enabled
  • You experienced the Windows 10 bug

Further Information and Manual Repair

To successfully upgrade to Windows 10, your CPU must support Physical Address Extension (PAE), SSE2, and NX features. If any of these features are not activated on your system, it’ll cause the CPU not compatible error. However, some users still reported experiencing this error even though their CPU has these features activated. Normally, this is due to the bug that Windows acknowledged.

If any of these two scenarios apply to your computer, the following methods will help you fix the problem:

Method 1 – Check for bugs

The bug applies to some Windows 7 and Windows 8.1 systems. The bug occurs when the “Get Windows 10” app fails to recognize CPUs as being compatible. This produces a false negative result with a message, “Here’s why Windows 10 cannot be installed on this PC: The CPU isn’t supported”. To fix this bug, Microsoft released an update.

Unfortunately, the patch update (KB2976978 for Windows 8/8.1 and KB2952664 for Windows 7 SP1) to fix the bug may not be automatically downloaded to your computer. If this is the case, you need to verify first if the patch was installed correctly. To do this, follow the steps below:

  1. Click ‘Start’ and type in View Installed Updates. The “View installed updates” icon should appear. Click the icon.
  1. Go to the Search bar (Top right portion) then type the patch name for your system. Make sure that you type the correct patch name for your system since Windows 7 and Windows 8/8.1 have different names. If you find the patch, it means it’s already installed. You can now upgrade to Windows 10 without the CPU not-compatible error.
  1. But, if you can’t find it you need to install the patch manually.
  1. Go to Windows Update then click the “Check for Updates” button.
  1. Browse through the available updates and look for KB2976978 for Windows 8/8.1 or KB2952664 for Windows 7 SP1
  1. Download the right patch. You may need to reboot your system once it’s done.
  1. The downloaded patch should be applied after a day or two with the Windows Task Scheduler. Once the patch is applied, you can now upgrade to Windows 10.

Method 2 – Check CPU features and activate them if needed

A major requirement for Windows 10 upgrade is for the CPU to have Physical Address Extension (PAE), SSE2, and NX features enabled on your system. If you receive the CPU not compatible error, one possible cause is that any of the mentioned features are not available OR not enabled on your system. Here’s how you can fix this:

  1. Verify if your CPU supports the three instruction sets. You can use software that provides information like this. If all three are available, proceed to the next step.
  1. Go to your computer’s BIOS. To do this, reboot your computer. You will need to press a key specific to your computer’s manufacturer (usually it’s F12, F8, F2, or DEL).
  1. Look for the NX (No Execute Bit) settings. This is normally found in the “Advanced Configuration” menu, or something similar to this. Just take note that the NX setting can be named differently in BIOS. Some other names include EDB (Execute Disabled Bit), EVP (Enhanced Virus Protection), Execute Disabled Memory Protection or No Excuse Memory Protect.
  1. Once you’re in the NX settings, make sure that it’s enabled.
  1. Exit the BIOS and SAVE your changes.
  1. Boot your computer normally, then try upgrading to Windows 10 again through the “Get Windows 10” app found in the system tray.

Method 3 – Force enabling NX Bit

If changing the settings in your BIOS doesn’t do the trick, your final option is to force enable the NX bit in your Windows system. However, this is only applicable IF and ONLY IF your CPU does support it. To force enable NX bit, do the following:

  1. Click Start and go to command prompt (Type “cmd” – no quotes) and press enter.
  1. Copy and paste the text below to the command prompt.bcdedit.exe /set {current} nx AlwaysOn
  1. Execute the command. You will need to reboot your computer once this is done.
  1. Download and install Windows 10

Method 4 – Use a trusted automated tool

If you still experience the error after doing the methods above, you might want to try a powerful and trusted automated tool to fix the job.

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

Command prompt tips and tricks
Hello and welcome to errortools articles. Today we will talk about some great and awesome tips and tricks for the command prompt. Commands which can make your life easier and your workday more pleasant. That being said let's dive in right into muddy waters and swim out with new knowledge.

Tip 1: Read Motherboard information

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

Tip 2: Copy command output to clipboard

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

Tip 3: Erase data permanently

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

Tip 4: Manage your IP address

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

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

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

Tip 6: Get information about a specific command

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

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

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

Tip 8: Scan and repair files.

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

Tip 9: Manage and configure your computer energy

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

Tip 10: Associate files with applications

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

Tip 11: Hide files and folder.

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

Tip 12: Get a list of installed computer drivers

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

Tip 13: Find and locate shared folders

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

Tip 14: Run commands as an administrator

You do not have administrator privileges? Do you want to bypass common blockades?
runas /user:yourdomainadministrator command
That is all that we have for you today, I certainly hope you have found something useful here and that we have managed to teach you some valuable things.
Read More
Fix Windows Updates Error code 0x80246007
Downloading Windows Updates does not always go smoothly as you can encounter several issues like the “Some updates did not finish downloading, We will keep trying, Error code 0x80246007” error. In fact, this error can also occur on other Windows applications like OneNote. According to security experts, this error happens for many reasons. For one, it could be that the Windows Update database is corrupted. It could also be that there is another process that’s in conflict with the Windows Update components or there might be some issue with the Background Intelligent Transfer Service (BITS). Whichever the cause may be, you can fix it by following the solutions given below.

Option 1 – Delete the contents in the Temporary folder

You can also try deleting the contents in the Temporary folder – all the downloaded, pending, or failed Windows 10 updates. You can do that using the simple and easy steps below.
  • Tap the Win + R keys to open the Run dialog box.
  • Then type “%temp%” in the field and press Enter to open the Temporary folder.
  • After that, select all the folders and files within the Temp folder and delete all of them.

Option 2 – Try running the Windows Update Troubleshooter

Running the built-in Windows Update troubleshooter is one of the things you can first check out as it is known to automatically resolve any Windows Update errors like Error code 0x80246007. To run it, go to Settings and then select Troubleshoot from the options. From there, click on Windows Update and then click the “Run the troubleshooter” button. After that, follow the next on-screen instructions and you should be good to go.

Option 3 – Try renaming or removing the pending .xml file

The problem might be due to some pending .xml file so you need to rename or remove it. To do so, just go to C:/Windows/WinSxS folder. From there, look for a pending .xml file – you can either rename it or delete it. This will allow the Windows Update to delete any pending tasks and build a new and fresh update check.

Option 4 – Restart the Background Intelligent Transfer Service (BITS)

The Background Intelligent Transfer Service or BITS is a part of the Windows Update service that manages the background download of Windows Update, as well as scans for new updates and so on. Thus, if your Windows Update fails a couple of times, you might want to restart BITS. For you to do that, make sure that you have admin privileges.
  • Press the Win + R keys to open the Run dialog box.
  • Then type “msc” in the field and hit Enter to open Services.
  • After opening Services, look for the Background Intelligent Transfer Service from the list of services and then double click on it to open Properties.
  • Next, set the Startup type to Manual and click on the Start button. If it doesn’t help, you can try setting it to Automatic (Delayed) and then reboot your PC.

Option 5 – Run the DISM tool

Running the DISM Tool helps in repairing the Windows System Image as well as the Windows Component Store in Windows 10. Using this built-in tool, you have various options such as the “/ScanHealth”, “/CheckHealth”, and “/RestoreHealth”.
  • Open the Command Prompt with admin privileges.
  • Then type in the following commands and make sure to hit Enter right after you type each one of them:
    • Dism /Online /Cleanup-Image /CheckHealth
    • Dism /Online /Cleanup-Image /ScanHealth
    • exe /Online /Cleanup-image /Restorehealth
  • Do not close the window if the process takes a while as it will probably take a few minutes to finish.

Option 6 – Delete the files from the Software Distribution folder

The downloaded Windows Updates are placed in a folder called “SoftwareDistribution”. The files downloaded in this folder are automatically deleted once the installation is completed. However, if the files are not clean up or if the installation is still pending, you can delete all the files in this folder after you pause the Windows Update service. For complete instructions, refer to the steps below.
  • Open the WinX Menu.
  • From there, open Command Prompt as admin.
  • Then type in the following command – don’t forget to hit Enter right after typing each one of them.
net stop wuauserv net start cryptSvc net start bits net start msiserver
  • After entering these commands, it will stop the Windows Update Service, Background Intelligent Transfer Service (BITS), Cryptographic, and the MSI Installer
  • Next, go to the C:/Windows/SoftwareDistribution folder and get rid of all the folders and files thereby tapping the Ctrl + A keys to select them all and then click on Delete. Note that if the files are in use, you won’t be able to delete them.

Option 7 – Reset the Catroot2 folder

After resetting the SoftwareDistribution folder, you need to reset the Catroot2 folder to restart the services you just stopped. To do that, follow these steps:
  • Type each one of the following commands.
net start wuauserv net start cryptSvc net start bits net start msiserver
  • After that, exit Command Prompt and restart your computer, and then try to run Windows Update once more.
Read More
How to Fix Error Code 0xc0000001 on Windows 10

Error Code 0xc0000001 – What Is It?

Error code 0xc0000001 on Windows 10 has been reported by some users when attempting to install Windows 10. When you encounter this error, the setup will be in a loop and the error message will keep popping up.

Solution

Restoro box imageError Causes

If you encounter the error code 0xc0000001 while trying to install Windows 10, it most probably be due to corrupted installation file. However, it can also be caused by any of the following:”

  • Damaged SAM file
  • Damaged system files
  • File system integrity compromised
  • Damaged RAM

Further Information and Manual Repair

Here are some methods that will help you fix the error code 0xc0000001 while trying to install Windows 10. Do not perform these methods unless you’re absolutely confident you can do it properly. Otherwise, you might make things worse.

If you’re not that confident, consider seeking advice from a technical expert. If you can’t afford one, you may want to consider getting an automated software to fix the job.

Method 1: Convert drive/partition to GPT

If you need to manually wipe the drive and then convert it to GPT, follow these steps:

  • Step 1: Power down your computer and put your Windows 10 installation DVD or USB drive
  • Step 2: Boot your computer to the USB or DVD key in UEFI mode.
  • Step 3: Once you’re at the Windows 10 Setup, press the Shift+F10 keys. This will open the command prompt window.
  • Step 4: Open diskpart tool from CMD. Just type diskpart and enter.
  • Step 5: Then, type the list disk on CMD again. Press enter. This will allow you to identify your computer’s drive that you want to reformat.
  • Step 6: Choose the drive and reformat it by typing the following on the command prompt:

select disk <disk number> (press enter)

clean (press enter)

convert gpt (press enter)

exit (press enter)

  • Step 7: Proceed with the Windows 10 Setup installation.

Note: when you’re prompted to choose the installation type, make sure to choose Custom. Then, choose unallocated space and click Next. This will automatically start the installation of Windows 10.

Method 2: Use Media Creation Tool to Perform Automatic Repair

Automatic Repair is a Windows feature/utility that allows you to fix certain system problems preventing you from installing or starting Windows. It works by scanning your computer system for any potential problem and tries to fix it.

  • Step 1: Download the Media Creation Tool
  • Step 2: Boot your computer using the Windows 10 DVD, or the System Repair disc. When you’re asked to press any key to boot, just press any key on your keyboard.
  • Step 3: Choose the right time and the keyboard type.
  • Step 4: Click Repair your computer. You’ll see this in the lower-left corner of your screen.
  • Step 5: Choose Troubleshoot from Choose an option screen
  • Step 6: Click Advanced options
  • Step 7: Choose an automatic repair

This will automatically run the utility.

Method 3: Check Hardware Devices

Another possible reason why you are getting this error while installing Windows 10 is due to the connected external hard drives. To fix this, power down your computer. Afterward, unplug and remove all connected external hard drives. If you’re using USB device to install Windows 10, ensure your BIOS is set to boot your computer from the USB.

Method 4: Create New Copy of Windows 10 Installer

Another possible reason why you experience this error is that your copy of the Windows 10 installer is corrupted. To fix this, it’s better to create a new copy of the Windows 10 installer.

  • Step 1: Go to this link
  • Step 2: Click the Download tool now. Choose Run with admin privileges
  • Step 3: On What do you want to do? section, choose installation media for another PC. Click Next.
  • Step 4: Select edition, language, and architecture (32-bit or 64-bit).
  • Step 5: Choose the media you want to use. If you want to use a USB flash drive, make sure the device at least has 5GB of free space. If you’re using an ISO file, you need to save the file first on your computer and then burn the file to a DVD.

Method 5: Use a Powerful Automated Tool

If you still encounter these errors after performing the above methods, find a trustworthy automated tool. As long as the automated tool is powerful and reliable, it will help you fix this error.

Read More
Fix Windows Update Error 0x80244019
If you are trying to update your Windows 10 computer but encounter the Windows update error 0x80244019 instead, read on as this post will help provide you some possible fixes to resolve the problem. This kind of Windows Update error is usually caused by your Windows Update settings or the Windows Update components. Many users who encountered this error reported that the update fails with the said error which keeps them from enjoying the latest features that the Windows Update brings. In such cases, some of the common culprits for this Windows Update error are the Windows Update settings, Windows Update configuration, third-party antivirus programs, and so on. To resolve this error, you can check out the options provided below.

Option 1 – Restart your computer and try installing the Updates again

You can restart your computer and then try installing the updates once again. There are instances when a simple restart resolves Windows Update errors. Aside from that, it would also be better if you make sure that your internet connection is working and that it’s stable. And so after you restart your computer, check for updates once again and see if you’re still getting the error or not.

Option 2 – Try to change the Windows Update settings

You might also want to try tweaking the Windows Update settings. This will prevent other Microsoft products from being updated and besides, you can always turn the option back on afterward. To change Windows Update settings, follow these steps:
  • Tap the Win + I keys to open Settings.
  • Next, go to Updates and Security and click on the Advanced Options.
  • From there, turn off the “Get me updates for other Microsoft products when I update Windows” option.

Option 3 – Run the Windows Update Troubleshooter

Running the built-in Windows Update troubleshooter is one of the things you can first check out as it is known to automatically resolve any Windows Update errors like error code 0x80244019. To run it, Refer to these steps:
  • Tap the Win + I keys to open Settings.
  • From there, click Update and Security and go to the Troubleshoot section.
  • Next, select Windows Update and click the “Run the troubleshooter” button and wait until it’s finished, and then try to run Windows Update again.

Option 4 – Try to disable the third-party antivirus program

Disabling the antivirus program or any security software installed in your computer is always a good idea you can try when the Windows Update process does not go smoothly. There are times when you encounter Windows Update errors like 0x80244019 due to interference of third party antivirus programs. So before you try updating your computer again, make sure to disable the antivirus or security program and once the Windows Update is done, don’t forget to enable the antivirus program back again.

Option 5 – Try to manually install the Windows Updates

Windows Update Error 0x80244019 might be due to a Windows Update that has failed. So if it is not a feature update and only a cumulative update, you can download the Windows Update and install it manually. But first, you need to find out which update has failed, and to do so, refer to the following steps:
  • Go to Settings and from there go to Update and Security > View Update History.
  • Next, check which particular update has failed. Note that Updates that have failed to install will be displayed under the Status column which has a label of “Failed”.
  • After that, go to the Microsoft Download Center and look for that update using its KB number and once you find it, download and then install it manually.
Note: You can also use the Microsoft Update Catalog, a service from Microsoft that provides a list of software updates that can be distributed over a corporate network. With the help of this service, it can be easier for you to find Microsoft software updates, drivers as well as fixes.

Option 6 – Restart some Windows Update services

The first thing you have to do is to restart Windows Update-related services. Refer to the steps below to do so.
  • Open the WinX Menu.
  • From there, open Command Prompt as admin.
  • Then type in the following command – don’t forget to hit Enter right after typing each one of them.
net stop wuauserv net stop bits
  • After entering these commands, it will stop the Windows Update Service and the Background Intelligent Transfer Service.
  • Next, go to the C:/Windows/SoftwareDistribution folder and get rid of all the folders and files thereby tapping the Ctrl + A keys to select them all and then click on Delete. Note that if the files are in use, you won’t be able to delete them.
  • Once all the contents in the Software Distribution folder are deleted, restart your PC and then go back to Command Prompt and input the following commands again.
net start wuauserv net start bits
 Since the folder has already been flushed, it will be populated afresh the instant your restart your computer and open Windows Update. Now try to update your computer again and see if the error is fixed or not.
Read More
There is a system repair pending
If you are running a System File Checker scan but got an error message instead that says, “There is a system repair pending which requires reboot to complete, Restart Windows and run SFC again”, worry not for this post will walk you through how you can fix the problem. This kind of error can be addressed and fixed with several potential fixes which will be provided in this post. You can try to restart your computer and run a System File Checker scan again or delete the pending .xml file or use the “revertpendingactions” parameter for the DISM tool. For more information, refer to each one of the options given below.

Option 1 – Try restarting your computer and run the SFC again

The first thing you can do to fix the problem is to restart your computer and let the pending process be completed. After your computer restarted, try to run System File Checker again and see if the error is now fixed or not. If not, refer to the other options below.

Option 2 – Try deleting the pending .xml file

The next thing you can do to fix the problem is to delete the pending .xml file. How? All you have to do is navigate to this location at CWindowsWinSxS and from there, look for a pending .xml file and rename it or delete it. This will get rid of any pending tasks and will build a fresh new check.

Option 3 – Try to use the “revertpendingactions” parameter for the DISM tool

If the two options given above didn’t work, you can try using the revertpendingactions parameter for the DISM tool. If you’re not able to boot into Windows, then run Command Prompt from the Recovery Console and execute the given command below.
dism.exe /image:C: /cleanup-image /revertpendingactions
After you execute the command, restart your computer and try to run System File Checker again and see if it has fixed the problem or not.
Read More
Fix Error 1061 The service cannot accept control messages at this time Error in Windows 10
If you are trying to run or starting a program on your Windows 10 computer and you suddenly get an error message saying, “Error 1061 The service cannot accept control messages at this time”, read on as this post will show you what you can do to fix the problem. This kind of error pops up since the Application Information Service does not respond to the requests to raise applications to Administrator in Windows 10 like the Task Manager, Service updates, and so on. Thus, you won’t be able to run or open apps and will only get stuck with this error. The “Error 1061 The service cannot accept control messages at this time” message is a type of network error that typically occurs when there is a temporary mismatch between the requested control and the state of the service to be controlled. It’s most likely that the service is in a state of start-pending, stop-pending, stopped or it may already be used by another user which explains why this error message suddenly appears. You can encounter this error message on any Windows operation. Here are some of the most common occurrences:
  • Debugging a Windows service
  • Starting Task Manager
  • Starting Registry Editor
  • Starting Firewall
  • Starting services.msc
  • Starting dsm.exe
  • Updating services
  • Asking for file permissions, etc.

According to Microsoft MSDN, the error occurs because:

“There is a temporary mismatch between the requested control and the state of the service to be controlled. The service may be in a state of start-pending, stop-pending, or stopped. Wait a few minutes, then retry your operation.” If after a few minutes, the error still appears, then you may have to follow the options prepared below.

Option 1 – Try to restart the Credential Manager Service

  • Go to the Start menu.
  • Then type in “services” in the search box.
  • From the search results, right-click on “Services” and select the “Run as Administrator” option.
  • Next, look for the Credential Manager Service in the Services window.
  • Once you found it, double-click on it to open its Properties. From there, you need to click on the Stop button.
  • After that, set the Credential Manager Service to “Automatic” and click on the Start button to restart it.

Option 2 – Try to start the Application Information Service

You can also try starting the Application Information Service to fix the “Error 1061 The service cannot accept control messages at this time”. Just open the Windows Services Manager and make sure that Application Information Service is Started. And if you find that it’s already started, you need to restart it.

Option 3 – Try killing the IIS Worker Process via Task Manager

  • Tap the Ctrl + Alt + Del keys and select the Task Manager.
  • Next, click on More details to expand the Task Manager and then look for the IIS Worker Process entry which should be displayed in the list under the Processes tab. From there, you can see it in the Background processes. Once you find it, kill its process.
  • You can also try to look for the “w3wp.exe” entries and end its process. if you find many entries, right-click on some of them and select the End task option from the context menu.
  • Now restart your PC. That should fix the problem.
Read More
Mail and Calendar not working with Cortana
Mail and Calendar not working with Cortana? As you know, Cortana was first launched way back in 2014 with an emphasis on its tight integration with both the Windows Mail and Calendar apps. This integration has been one of the highlighting features of this Personal Digital Assistant. However, there are some users who reported that the Calendar and Mail integration with Cortana is not working on their Windows 10 computers. This kind of problem could be due to several factors like the loose integration between the services, incompatible versions of the components, and many more. According to the users who experienced the issue, the features affected are the syncing of calendar appointments, sending emails via Cortana, and so on. To fix this problem, there are several options you can try. You can try to restart Cortana’s processor run the Windows Store Apps troubleshooter. You could also try to relink your Microsoft account or reinstall the Mail and Calendar apps, as well as reinstall Cortana.  For more details, follow the suggestions given below.

Option 1 – Restart Cortana’s process in the Task Manager

Restarting Cortana’s process in the Task Manager could also help you resolve the problem. Refer to the steps given below to do so.
  • Tap the Ctrl + Alt + Del keys to open the Security options window.
  • From there, look for the Task Manager in the given list and open it.
  • Next, look for the process of Cortana and right-click on it, and then select the End Task option to end its process.
  • After that, the Cortana process will restart by itself and re-initialize.

Option 2 – Run the Windows Store App troubleshooter

The Windows 10 Store Apps Troubleshooter will help you in fixing the Web Preview problem in Cortana. This is a great built-in tool from Microsoft that helps users fix any app issues. To use the Windows Store Apps Troubleshooter, follow the steps below.
  • Tap Win + I keys again to open the Windows Settings panel.
  • Go to Update & Security and then go to Troubleshoot.
  • Under the Troubleshoot section, on your left-hand side, scroll down to find Window Store Apps.
  • Then click on the Run the troubleshooter option and follow the on-screen instructions and then see if it fixes the problem.

Option 3 – Try to relink your Microsoft Account

You might also want to relink your account in Microsoft using the Windows 10 Settings app.
  • Open the Windows 10 Settings app.
  • Next, navigate to Accounts > Email & Accounts and from there, go to the section of Accounts used by Email, Calendar, and Contacts.
  • After that, select your email account and select Manage.
  • Once done, a new panel will come up where you have to click on the “Delete account from this device” link.
  • Once you get a confirmation, select Delete and then relink the same account. This should resolve the problem.

Option 4 – Try to reinstall or update the Mail and Calendar apps

  • Open Windows PowerShell as admin.
  • Next, execute this command: Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
  • Once done, restart your computer and go to the Microsoft Store page to get the latest updates for both Windows Mail and Calendar apps.

Option 5 – Try to reset Cortana via Settings

  • Launch the Windows 10 Settings app and go to Apps > Apps & Features.
  • Next, look for the entry of Cortana on the right-side panel and select it.
  • After that, select the Advanced options and then select the Terminate button under the Terminate section.
  • Once done, click on the Reset button under the Reset section.
  • Restart your PC.
  • After your computer boots, launch Cortana again and check.

Option 6 – Try to reinstall Cortana

If none of the options given above works, you must consider reinstalling Cortana.
  • First, right-click on the Taskbar and select the Task Manager.
  • Next, select File menu > Run new task and type “Powershell” in the field and then select the “Create this task with administrative privileges” option.
  • Click on OK to open the PowerShell console.
  • After that, type the following command and hit Enter to execute it:
Get-AppXPackage -Name Microsoft.Windows.Cortana | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}
  • Restart your computer and check if the problem is now fixed.
Read More
Changing the Primary and Secondary monitor
If you are using a dual monitor setup on your computer and you wish to change the Primary and Secondary monitor in Windows 10, then you’ve come to the right place as this post will guide you on how exactly you can do that. A lot of users use more than one monitor to be more productive so having dual monitors helps a lot. So if you have more than one monitor, know that you can actually select any monitor as the primary monitor after installing Windows. Changing the primary and secondary monitor in Windows 10 does not really require you to install any third-party application since you can get the job done by simply making some alterations in the Windows 10 Settings panel. You won’t have any problem in making such alterations since it is quite simple – from modifying the wallpaper to scaling and so on.

To get started, follow the instructions given below carefully.

Step 1: First, tap the Win + I key combination to open the Windows 10 Settings app and go to System and click the Display tab. Step 2: Next, look for the Identify button located on your right-hand side and then click on it. This button will help you check which one is the primary and the secondary monitor. Step 3: After that, select the desired monitor that you want to set as the primary one from the drop-down menu. Step 4: After that, mark the checkbox for the “Make this my main display” option. Step 5: After choosing the primary monitor, this will automatically set the other monitor as the secondary monitor. Restart your computer. So that’s how you change the primary and secondary monitor on your Windows 10 computer. Note that you can always go back to the previous setting of your monitor by following the same instructions provided above.
Read More
A Quick Guide to Fixing Error C00D1199

What is Error C00D1199?

This is a typical Windows Media Player error code. Developed by Microsoft, Window Media Player is a media player and media library application that is used for playing audios and videos on the computer. Error C00D1199 appears when Windows Media Player is unable to play the file requested by you. The error code is displayed in the following format:
C00D1199: Cannot play the file

Solution

Restoro box imageError Causes

You might encounter an error C00D1199 message on your PC for one of the following reasons:
  • The file type you requested is not supported by the Windows Media Player
  • The file type was not compressed by using a codec that is not supported by the Player
  • Your sound card or controller is not configured properly or outdated
  • Registry corruption
The good news is that error C00D1199 is not fatal. But if this error code is generated due to registry problems, then it can lead to serious issues. Therefore it is advisable to fix it immediately.

Further Information and Manual Repair

Here are some of the best and easy do-it-yourself methods to resolve the error C00D1199 right away.

Method 1 - Ensure File Type is Supported by Windows Media Player.

If it is supported then make sure the codec used to compress the file is installed on your system. There are hundreds of audio and video Codecs in use today but the most popular Codecs used on Windows Media Player are Windows Media Audio, Windows Media Video, and MP3. If these Codecs are not installed on your PC, then it is advisable to download them from the web. But make sure you download these codecs from a reliable and a trusted website.

Method 2 - Check Sound Card Settings

Another method to resolve error C00D1199 is to check Sound card settings. Make sure it is configured properly. Improper configuration can also trigger the error. Nonetheless, if it is configured the right way but the error still persists then it is advisable to change update the driver. To do this, go to the Device Manager. Here use the Driver update wizard to make updates.

Method 3 - Check the Windows Registry

The registry is an important part of the PC. It stores all the activities performed on the PC and all files including both junk and important files. If unnecessary files like junk files, cookies, and bad registry entries are not removed frequently from the registry, it can corrupt and damage it and generate error codes like C00D1199. To clean the registry and resolve the error it is advisable to download Restoro. This is a user-friendly PC Fixer embedded with a registry cleaner. The registry cleaner wipes away all the clutter from the registry and cleans it instantly. It also repairs the damaged files and restores the registry. Click here to download Restoro and resolve error C00D1199 on your PC.
Read More
Cartoonize review

Hello and welcome to our software series review. Weel this time we could say this is more of a service review since the application we are going through today is online and you can use it freely without ever needing to install it.

When we choose software that we are going to review and recommend we really try to recommend something that is worth your time and money, Cartoonize fits in both categories in my opinion.

First of all basic plan of this graphic software is completely free and as mentioned it is working online, also as one more feature basic plan does not even require you to have an account of any kind, all you need to do is go to the website of the application and you can start using it right away. There is also paid plan for extra features if you need them billed monthly or annually.

cartoonize application

Features

First things first, this is not Photoshop or GIMP and it does not aim nor want to be. This is something else, directed and pointed at the different types of users. This application is aimed at people that want to make some quick graphics and post them on social media and it does that very well. Even without knowledge to use graphic software this one is so well designed and straightforward that even a complete newcomer can do something right away.

So as the application that wants to be used by people that want to place some cool pictures or ads on their social media what it offers. For starters simplicity and ease of use, every option that you can use is on the left side of the screen nicely packed into the vertical toolbox. Inside the toolbox, you have access to various tools, effects, and filters that you can apply to your image.

Tools explained

Image manager

The first section on the tool panel is the image manager, here you can upload your images, delete them, search stock images, and so forth. nothing more to say about this one as it is only a basic file manager.

Edit

In this tool panel, there are a lot of basic settings for your image manipulations divided into 3 sections: Basics, Enhance, and Creative. In the basic section, you can crop, resize and rotate your image. Enhance panel will let you set exposure, color, vibrance, tint, and details (sharpen). Finally, the Creative part will let you remove the background with AI in a single click, replace colors in the image, and add a vignette and round image.

Effects

In the effects panel, you will be given 4 options to choose from Cartoonizer, Digital art, Sketcher, and painting. Each option once clicked will open another set of options tied to chosen preset where you will be able to choose a different style from chosen template. Once you click on the desired template it will be applied to your image and in the upright corner, you will have edit options to tweak it to your liking. You can play around as much as you want because only once you click on the apply button, the effect will be applied to your image.

Filters

Same as in the effects tool panel here you will also get a series of different filters that you can apply to your image. As in the previous tool once clicked on the chosen filter, you will be given options for its variations and details edits. How there is really plenty of filters options and combined with its own presets I will not focus on explaining what each one is doing since picture thumbnails are pretty accurate and just one look at them will explain to you everything you need to know.

Overlays

In the overlays panel, you can as the name says overlay different kinds of effects on your image. You can add snow, fog, sun flares rain, and many more. Presets work identically to previous effects and filters.

Masks

If you want to place your image in a certain shape or in-text this is the section for you. You will be presented with sections as custom text, shapes, brushes, floral, animals, and patterns. Each section will once again lead to plenty of variations on the chosen subject where you can pick one that you like the most and tweak its options.

Text

As the name suggests, this section is to add text to your picture or design. If you are making some cool ad for Facebook, Instagram, or other social media I believe that you will spend most of your time in this section adding text and tweaking it so it looks best. You have all the tools that you will need to make a catchy title or smaller block of text and you can add multiple texts to your picture tweaking their own visual appearance, the font used, color, and some effects like a drop shadow.

Draw

In the draw section, you will be able to freely draw whatever you like with your mouse or pen if you have one. you have basic options for a brush and eraser so you can erase stuff. Pretty basic tool but it gives a nice touch to underline something, circle it, etc.

Graphics

This panel will let you place various already made graphic assets into a picture. You have hearts, hats, glasses, etc. There really are tons of premade graphics along with thematic ones like new year, st. Patric day and more.

Frames

As the name suggests this section will place a frame of your choice around your picture. You can choose the style of frame, position, color, and many more. There are various styles and each style has its own options.

Conclusion

Cartoonize is a great online application that will let you quickly and easily do cool and nice image edits. As mentioned you can also add various effects, text, and graphics and use this app to make some quick and nice ads for social media. You have the option to publish to your social media right from the app in the save dialog but you can also of course download your image or design to your local computer.

Please note that for this review we used the pro, paid version so all of the features were unlocked. We wanted to give you a full overview of the full potential of the app. In my opinion, the small monthly fee that they charge is well worth it when you see all things that you can do with it.

Go to the cartoonize website and check it out, basic option is completely free and it does not even require making an account. Have fun, be creative and take care, I hope to see you again tomorrow.

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