Which Machine.config to modify

Mathematics

I have installed 1,2,3,3.5,4 .net framework on my server, now they all have machine.config file, which one should I modify to see changes for my web applications in IIS 6.

Mudassir Hasan

Each version of .NET is installed in different folder and have different machine.config file independent of each other.

ASP.NET 1.x uses %WINDIR%\Microsoft.NET\Framework\v1.1.4322
ASP.NET 2.0 / 3.5 x86 uses %WINDIR%\Microsoft.NET\Framework\v2.0.50727
ASP.NET 2.0 / 3.5 x64 uses %WINDIR%\Microsoft.NET\Framework64\v2.0.50727
ASP.NET 4.0 x86 uses %WINDIR%\Microsoft.NET\Framework\v4.0.30319
ASP.NET 4.0 x64 uses %WINDIR%\Microsoft.NET\Framework64\v4.0.30319

To see which version your application is running on print

Response.Write(System.ConfigurationManager.OpenMachineConfiguration().FilePath);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Where Is Machine.Config?

From Dev

API to modify the machine.config file - 'DbProviderFactories' section can only appear once per config file

From Dev

json or mysql for config which is faster?

From Dev

bat file to modify web.config setting

From Dev

Modify PHP config arrays from bash

From Dev

Modify memory of hareware key of HaspFile which is ReadOnly

From Dev

Modify an extension css in about:config of firefox

From Dev

Which file does svn:ignore modify?

From Dev

Modify keyboard config file

From Dev

Modify keyboard config file

From Dev

API to modify the machine.config file - 'DbProviderFactories' section can only appear once per config file

From Dev

Which opengl calls modify the view matrix

From Dev

Which App.config is current?

From Dev

bat file to modify web.config setting

From Dev

Modify PHP config arrays from bash

From Dev

Modify outcome of match regardless of which case evaluated

From Dev

Modify memory of hareware key of HaspFile which is ReadOnly

From Dev

which http module will execute first in asp.net if both web and machine config has same modules registered

From Dev

Trying to open a VM config which has the same UUID as an existing virtual machine

From Dev

Modify an entry of a property which is array in PHP

From Dev

How do I modify config file at runtime

From Dev

Which event to modify GridView data at runtime

From Dev

Modify appSettings in the custom config file which is referenced via 'file' attribute

From Dev

Modify spring cloud config server in the client

From Dev

Modify config files with sed in bash

From Dev

Modify git config file globally

From Dev

modify KMail config file

From Dev

Modify nginx config to reverse proxy websockets properly

From Dev

Modify config file during release

Related Related

  1. 1

    Where Is Machine.Config?

  2. 2

    API to modify the machine.config file - 'DbProviderFactories' section can only appear once per config file

  3. 3

    json or mysql for config which is faster?

  4. 4

    bat file to modify web.config setting

  5. 5

    Modify PHP config arrays from bash

  6. 6

    Modify memory of hareware key of HaspFile which is ReadOnly

  7. 7

    Modify an extension css in about:config of firefox

  8. 8

    Which file does svn:ignore modify?

  9. 9

    Modify keyboard config file

  10. 10

    Modify keyboard config file

  11. 11

    API to modify the machine.config file - 'DbProviderFactories' section can only appear once per config file

  12. 12

    Which opengl calls modify the view matrix

  13. 13

    Which App.config is current?

  14. 14

    bat file to modify web.config setting

  15. 15

    Modify PHP config arrays from bash

  16. 16

    Modify outcome of match regardless of which case evaluated

  17. 17

    Modify memory of hareware key of HaspFile which is ReadOnly

  18. 18

    which http module will execute first in asp.net if both web and machine config has same modules registered

  19. 19

    Trying to open a VM config which has the same UUID as an existing virtual machine

  20. 20

    Modify an entry of a property which is array in PHP

  21. 21

    How do I modify config file at runtime

  22. 22

    Which event to modify GridView data at runtime

  23. 23

    Modify appSettings in the custom config file which is referenced via 'file' attribute

  24. 24

    Modify spring cloud config server in the client

  25. 25

    Modify config files with sed in bash

  26. 26

    Modify git config file globally

  27. 27

    modify KMail config file

  28. 28

    Modify nginx config to reverse proxy websockets properly

  29. 29

    Modify config file during release

HotTag

Archive