top of page

Configuration system failed to initialize on Windows 10 (Solved)

Sometimes you may experience error “Configuration system failed to initialize” while trying to launch an application on your PC. This problem usually caused by some third-party application, when the system is unable to correctly launch any target application. Corrupted system files, Problems with any third-party applications, wrong configuration files are some common reason cause this issue, and uninstalling some application to change the configuration files help fix the error Configuration system failed to initialize on Windows 10.

If you are getting this error with .net framework it’s recommended to uninstall it and download and install the latest version from Microsoft’s official site.

Contents

Run System File Checker

This error usually caused becaused of bad configurations present on your computer. Lets try run the SFC scan and check if there are any integrity violations. If there are, we can run the DISM command to fix them.

  1. Open command prompt as administrator,

  2. Type command sfc /scannow and press the enterkey,

  3. This process may take some time as your entire windows files are being scanned by the computer and being checked for corrupt phases.

  4. Let the scanning process complete 100%, once doen restart your PC.

system file checker utility Windows 10

Note: If you encounter any error while running the system file checker where Windows states that it found some error but was unable to fix them Then run the dism command DISM /Online /Cleanup-Image /RestoreHealth

This will download the corrupt files from the Windows update servers and replace the corrupt ones.

Perform a Clean Boot

Windows clean boot allow your computer to start with minimum of drivers and programs. And with only basic services enabled and all other services disabled, you can check if the application launched as normal.

  1. Press windows key + R, type msconfig and press enter key,

  2. Move to services tab, then check the box next to hide all microsoft services. all Microsoft related services will be disabled

  3. Then Click Disable all button this will disable all the third-party services.

  4. Click Apply to all the change, and ok.

Hide all Microsoft services
  1. Now open taskmanager, and move to startup tab,

  2. Select each service one by one and click Disable button.

Finally restart your computer and check if the configuration system failed to initialize error message disappears.

Check your config file

Lets check if this error generated by the configuration files of microsoft framework.

  1. Press Windows key + E to open file explorer,

  2. Navigate to the following path. C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG

  3. Right-click on the config file of the application of which the error occurs and select Edit (You can use Notepad++ for a clearer view of the config file instead of using the default notepad).

address bar
  1. When the config file is open, check inside the configuration element, ensure the first child is configSections element.

configSections

If the error appears on your windows 10, the first child may probably isn’t configSections element inside the configuration element. Then you can remove the configuration element between <configuration> and <configSections>.

Save the changes on config file and close edit window. Check if the error still appears.

If nothing is working out for you, try to create a new local account on your computer and try to access the application again.


Also read:

Featured Posts
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page