dotnetrocks
dotnetrocks

Reputation: 2727

metabase path in iis

I am working on creating virtual directories for a website through a programmatic way. I couldn't get the concept of metabase- what is metabase path and need of it in IIS. thanks !

Upvotes: 1

Views: 2408

Answers (1)

Mantorok
Mantorok

Reputation: 5266

The MetaBase is IIS. It holds every configurable element of IIS and is stored in XML form, it is in the windows folder (i.e. \windows\system32\inetsrv\MetaBase.xml).

You can amend this file manually or programmatically but special care should be taken when doing so.

More can be found here: http://en.wikipedia.org/wiki/IIS_Metabase.

Upvotes: 1

Related Questions