Get the metabase path for an IIS entry (Installation stopped because the specified path is not a valid web application) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:25:58Z http://stackoverflow.com/feeds/question/261535 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/261535/get-the-metabase-path-for-an-iis-entry-installation-stopped-because-the-specifie 1 Get the metabase path for an IIS entry (Installation stopped because the specified path is not a valid web application) boris callens 2008-11-04T11:05:31Z 2009-09-10T23:00:03Z <p>I'm by no means a sysadmin so please correct me if I'm wrong.</p> <p>I want to run aspnet_regiis.exe -s. This requires the metabase path of my website.</p> <p>How do I find this metabase path?</p> http://stackoverflow.com/questions/261535/get-the-metabase-path-for-an-iis-entry-installation-stopped-because-the-specifie/286337#286337 2 Answer by Don Worthley for Get the metabase path for an IIS entry (Installation stopped because the specified path is not a valid web application) Don Worthley 2008-11-13T05:38:24Z 2008-11-13T05:38:24Z <p>Just run aspnet_regiis.exe -lk to see a list of the registered applications, their metabase paths and the version of the .NET framework installed for this application.</p> <p>Also, here are a couple of links that you can use to find the metabase path:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ms524682.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms524682.aspx</a></li> <li><a href="http://www.windowsdevcenter.com/pub/a/windows/2005/10/25/hacking-iis6-with-metabase-explorer.html" rel="nofollow">http://www.windowsdevcenter.com/pub/a/windows/2005/10/25/hacking-iis6-with-metabase-explorer.html</a></li> <li><a href="http://www.codersource.net/csharp_iis_metabase.html" rel="nofollow">http://www.codersource.net/csharp_iis_metabase.html</a></li> </ul> <p>HTH,</p> <p>Don</p>