vote up 0 vote down star

In IIS7 for Vista, you can select your machine and it gives you serveral options in which you can use to configure your system. Where is this file stored at? It seems like there's a big master.config file which stores all my settings like the "Connection Strings" which are inherited by the webpages.

Supposedly it's some file named machine.config but nothing I change in the IIS manager for my machine changes there.

flag

14% accept rate

2 Answers

vote up 3 vote down check

If you're talking about machine-wide ASP.NET configuration, look under your .NET framework config directory, e.g. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG - check web.config and machine.config for the settings you've been configuring.

(Note: this is a bit of an educated guess. Don't take it as definitely correct without checking. Unfortunately I can't do so myself at the moment...)

link|flag
Found it, it's under web.config which is confusing from the machine.config – danmine Dec 11 '08 at 7:59
While your here, do you know what the point is of machine.config? I'm guessing it goes Machine.config -> That "Master" Web.config -> Sites – danmine Dec 11 '08 at 8:13
machine.config is used for more than just ASP.NET. See msdn.microsoft.com/en-us/library/… – Jon Skeet Dec 11 '08 at 9:03
vote up 2 vote down

"Connection Strings" do seem to be in the web.config file

There can be multiple web.config files in a single web project (but not in a single directory), but here, you are referring to the configuration system files, including:

  • windows\microsoft.net\framework\v2.0.50727\config\machine.config: Holds the global defaults for the .NET framework settings, including some of the ASP.NET ones
  • root web.config: same location, with the rest of the settings.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.