1

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 !

Christian Hudon
  • 1,881
  • 1
  • 21
  • 42
dotnetrocks
  • 2,589
  • 12
  • 36
  • 55

1 Answers1

1

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.

Mantorok
  • 5,168
  • 2
  • 24
  • 32
  • You also need to allow IIS to take live metabase edits or you will need to restart IIS each time to update the config. – TheAlbear Nov 04 '11 at 11:18