Reputation: 1256
Seems this namespace is limited to IIS7 and upwards. Are there any managed libraries from Microsoft or elsewhere that enable you to survey the configuration (just looking for read only config) for a given set of IIS installations?
Otherwise one would have to poke through web.configs, the metabase, and try to cobble it all together.
Upvotes: 1
Views: 1053
Reputation: 34563
No, there aren't any managed libraries like this for < IIS7. You can use ADSI to query the metabase, but that's the best I've been able to do.
Upvotes: 1