Search This Blog

Friday, December 29, 2017

BAD_SYSTEM_CONFIG_INFO

The error "BAD_SYSTEM_CONFIG_INFO" comes on the blue screen while booting your windows system and does not allow you to start your system. This could be because you have set all cores(processors) from msconfig tool to speed up your system.

To resolve this issue please follow the below steps:-

  1. Restart your system and press F8 to choose the start option
  2. Choose Repair option
  3. Select keyboard language
  4. Provide Administration login details
  5. Select "Command Prompt" from the repair option
  6. Select keyboard language
  7. Exdecute below command lines in Command Prompt

    bcdedit/deletevalue {default} numproc
    bcdedit/deletevalue {default} truncatememory

  8. Now Close Command promt window
  9. and Restart your machine

Saturday, December 16, 2017

The URL 'http://localhost/xxx' for Web project 'xxx' is configured to use IIS Express as the web server but the URL is currently configured on the local IIS web server. To open this project, you must use IIS Manager to remove the bindings using this URL from the local IIS web server



When you face the following error while loading your web project, please set the value of "UseIISExpress" to "false" in both file ".csproj" and ".csproj.user". After doing this setting reload your project and it will get loaded successfully.

ERROR : The URL 'http://localhost/xxx' for Web project 'xxx' is configured to use IIS Express as the web server but the URL is currently configured on the local IIS web server. To open this project, you must use IIS Manager to remove the bindings using this URL from the local IIS web server.