vote up 1 vote down star
1

Consider a .NET application that performs lots of configuration changes in IIS such as changing Virtual Directories or enabling compression. With IIS6 everything could be accomplished using the metabase through DirectoryServices.

However in IIS7, the Metabase compatiblity is an optional component, so I'm assuming that alternative ways should be used in order to programmatically perform configuration changes. What's the right way of doing those? Should I directly edit the applicationHost.config file or is there a recommended API?

flag

3 Answers

vote up 2 vote down check

I believe Microsoft.Web.Administration has what you are looking for.

link|flag
vote up 1 vote down

You could use :

link|flag
vote up 0 vote down

Other alternative is WMI or use of C# to send commands via appcmd.exe. See some tips at Add an ISAPI Filter (IIS 7)

link|flag

Your Answer

Get an OpenID
or

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