Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
4k views

IIS: How to get the Metabase path?

i'm trying to get the list of mime types known to an IIS server (which you can see was asked and and answered by me 2 years ago). The copy-pasted answer involves: GetObject("IIS://LocalHost/MimeMap") ...
3
votes
1answer
296 views

How to restore an IIS Metabase backup using C#

I've found the Stack Overflow question describing how to backup the IIS Metabase in C# here, and I have been successful at getting that to work using the code referenced here. However, I am having ...
3
votes
2answers
6k views

How to safetly export all IIS settings from one server to another?

I am trying to build a virtual machine that clones one of the servers used in production instances of our webapp so that we can do deployment testing on it. I have gotten all the necessary files ...
2
votes
1answer
282 views

How to get the numeric ID of an IIS 6 Metabase property in C#?

The code below works OK and can read everything in a remote IIS 6 server's metabase -- except the frikkin' numeric ID of the properties. I can't find them in the PropertyValueCollection object. var ...
2
votes
1answer
843 views

Getting IIS 7 Site properties

I have a C++ application that needs to retrieve an IIS 7 site's properties (such as metabase properties similar to those in IIS6 - Path, AppFriendlyName etc). With IIS 7, my code does this: Get ...
2
votes
2answers
647 views

IIS 6 forces AppRoot/Starting Point to upper case when Virtual Directory is imported from a file

I have searched the web for this and couldn't find anything (well one remotely relevant post), so here I am. We have multiple ASP.NET apps in IIS 6 using Forms Authentication with dedicated path ...
2
votes
3answers
429 views

Is there a .NET Library or API to interact with/Edit the IIS Metabase?

...or am I stuck rolling my own "XML chopping" functions. I'd like to create a small tasktray app so I can quickly re-point a Virual Directory to one of several of folders on my harddisk. Bit of ...
2
votes
1answer
5k views

Get the metabase path for an IIS entry (Installation stopped because the specified path is not a valid web application)

I'm by no means a sysadmin so please correct me if I'm wrong. I want to run aspnet_regiis.exe -s. This requires the metabase path of my website. How do I find this metabase path?
1
vote
1answer
523 views

“Unknown error (0x80005000)” trying to read remote IIS 6 Metabase with DirectoryEntry and Impersonation (C#)

(EDIT) The plot thickens: The same code (with no need for impersonation!) runs successfully from a Windows 7 client, but NOT from a Windows 2008 R2 client! Here's the code in question. (Original ...
1
vote
2answers
373 views

Where is the metabase key for my IIS7 web site?

I'm trying to set up the automated (nightly) installation of my web site setup project. I can specify some install-time values on the command line; in particular, adding a TARGETSITE value defines ...
1
vote
1answer
296 views

Connect to IIS metabase on a remote 2008 server

I have written a bit of code that inspects the iis metabase to see what sites are installed and where their virtual directories are kept. THis code runs fine when run locally on the server. I am ...
1
vote
3answers
7k views

How to find relative path to C:\Inetpub\AdminScripts\ADSUTIL.VBS?

IIS 6 and older ships with a utility script called ADSUTIL.VBS: Adsutil.vbs is an IIS administration utility that uses Microsoft Visual Basic Scripting Edition (VBScript) with Active ...
1
vote
1answer
970 views

Programatically removing etag suffix (change number) from the metabase IIS6

IIS 6.0 generates eTag values in the format of "hash:changenumber". The changenumber goes up every time IIS resets, so your eTag is only valid for the lifetime of your IIS process. Restart, number ...
0
votes
1answer
123 views

The metabase key '/lm/w3svc' could not be found

I have a laptop with Windows XP on it. Trying to deploy an ASP.NET web application on IIS 6 I received the following error: Error 1 Web deployment task failed.(The metabase key '/lm/w3svc' could ...
0
votes
0answers
23 views

web site in metabase but cannot see it in IIS or browse to it

Looking through our IIS6 metabase I see an IIsWebDirectory Entry: <IIsWebDirectory Location ="/LM/W3SVC/1/ROOT/MyApp" AppFriendlyName="MyApp" AppIsolated="2" ...
0
votes
0answers
52 views

How do I add User permissions to MetaBase.xml without losing them when I restart IIS (Internet Information Services)?

I am trying to get a PHP script to edit the C:\WINDOWS\system32\inetsrv\MetaBase.xml file that is used to control the Vhosts for IIS. In order to achieve this, I need to adjust the permissions. ...
0
votes
1answer
89 views

IIS Metabase C++ examples

Could anybody point be in the direction of some examples with creating/editing/removing IIS Web/FTP sites and their respective virtual directories. As MSDN doesn't seem to give many C++ based ...
0
votes
1answer
333 views

IIS Metabase GetObject call returning error 424 object required error

We have an ASP Classic website running on Windows Server 2003 and IIS6 which is throwing intermittent runtime error 424 object required. We've tracked this down to the line which initialises the ...
0
votes
2answers
676 views

IIS metabase path for aspnet_compiler in IIS7

I am trying to use aspnet_compiler via the command line to build and publish a web application that is running on the IIS7 Default Web Site. I am struggling with finding the correct syntax of the -m ...
0
votes
2answers
524 views

IIS 7 Configuration Paths

I am trying to make my c++ ahadmin application compatible to IIS 7. My app needs to read the websites configuration (via metabase properties in IIS 6). I read a lot of articles about the ...
0
votes
1answer
170 views

Reading TCP Port of an IIS 7 website programmatically

I have a C++ application that uses AHADMIN to interface with IIS 7. I know how to get a IAppHostElement object of my website, but no idea how to read properties (found here ...
0
votes
1answer
222 views

How to I obtain an IIS Virtual DIrectory name from an IIS metabase path in c++

I have the following metabase path: /lm/w3svc/1/root/foo which I can see in IIS manager maps to the virtual directory: Default Web Site/foo How can I determine the virtual directory name ...
0
votes
1answer
322 views

IIS 7 identify virtual directory from metabase path

I am trying to profile the number of "Anonymous Requests" for an ASP.NET web application using perfmon. When I select this key, I have to pick a process of the form _LM_W3SVC_#_ROOT. How do I map ...
0
votes
1answer
168 views

What is the new method of querying the metabase in IIS 7?

In IIS 6, I typically used code to query the metabase as in the following: var entry = new DirectoryEntry("IIS://localhost/W3SVC"); foreach (DirectoryEntry site in entry.Children) { // Blah } Now ...
0
votes
1answer
602 views

IIS6 Metabase Compatiblity not installing correctly for Vista IIS7

I've been bashing my head against this one for a few days, and haven't had any luck with it. I'm unable to get my VS2010 ASP.NET project to deploy to IIS. I receive the error "Unable to create the ...
0
votes
3answers
482 views

asp.net iis metabase doesn't return all sites

I use code like the following in ASP.Net to enumerate the websites in IIS: string metabasePath = "IIS://localhost/W3SVC"; DirectoryEntry service = new DirectoryEntry(metabasePath); ...
0
votes
1answer
290 views

IISCnfg /copy - is it possible to omit the IUSR account?

I'm using the IISCnfg script provided to copy the metabase from a master server to other servers (10 in total) when we chang our base configuration. Here's the command I'm using: iiscnfg /copy /ts ...
0
votes
2answers
569 views

How do you backup IIS's metabase in C#?

exact code will be helpful. I assume the DirectoryServices namespace does it but I can't find the method that does it. I need actual C# code. All the samples I found so far are VB or VBScript. The ...