DOC: AdminAcl Property Only Available at Service and Site Levels (267900)



The information in this article applies to:

  • Microsoft Internet Information Server 4.0
  • Microsoft Internet Information Services 5.0

This article was previously published under Q267900

SUMMARY

The AdminACL property is incorrectly documented in Internet Information Server (IIS) SDK documentation as applying to the following IIS Admin objects:
  • IIsFtpService
  • IIsFtpServer
  • IIsWebService
  • IIsWebServer
  • IIsWebVirtualDir
  • IIsWebDirectory
  • IIsWebFile
The AdminACL property is only available on the following IIS Admin objects:
  • IIsFtpService
  • IIsFtpServer
  • IIsWebService
  • IIsWebServer

MORE INFORMATION

On Windows 2000, you can analyze the properties available for a particular IIS Admin object with script like the following:
set schemaobj = GetObject("IIS://Localhost/Schema/IIsWebServer")
OptPropList = schemaobj.OptionalProperties
for each Property in OptPropList
    wscript.echo Property
Next
				
This script will list all of the properties for the IIsWebServer object.

Modification Type:MinorLast Reviewed:7/14/2004
Keywords:kbbug kbdocerr KB267900