Skip to content

Latest commit

 

History

History
84 lines (63 loc) · 4.17 KB

configurationsection-getallowlocation-method.md

File metadata and controls

84 lines (63 loc) · 4.17 KB
title description ms.date ms.assetid
ConfigurationSection.GetAllowLocation Method
Retrieves the allowLocation attribute for a configuration section.
10/07/2016
f0488c2d-152c-4b55-a96a-f43b33ee34e1

ConfigurationSection.GetAllowLocation Method

Retrieves the allowLocation attribute for a configuration section.

Syntax

ConfigurationSection.GetAllowLocation AllowLocation  
ConfigurationSection.GetAllowLocation(AllowLocation);  

Parameters

Name Definition
AllowLocation A string variable that receives the allowLocation attribute that the GetAllowLocation method returns. The possible attribute values are "true" or "false". The default is "true". Note: This parameter is a string, not a boolean.

Return Value

This method does not return a value.

Remarks

The allowLocation attribute specifies whether a configuration section can appear inside a pair of location tags.

Because GetAllowLocation is a static method, you should call it by getting a class object, as in the following example.

' Correct syntax:  
Set oAnonAuth = oWebAdmin.Get("AnonymousAuthenticationSection")  
oAnonAuth.GetAllowLocation strAnonAuthAllowLocation  

The following syntax fails because it tries to call GetAllowLocation on a concrete instance of the Site class. The call to the method will cause an "SWbemObjectEx: Not found" error.

  
' Incorrect syntax:  
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")  
oSite.GetSection "AnonymousAuthenticationSection", oAnonAuth  
oAnonAuth.GetAllowLocation strAnonAuthAllowLocation  

Example

The following example displays the allowLocation attribute for the Anonymous authentication configuration section.

' Get the WebAdministration namespace.  
Set oWebAdmin = GetObject( _  
    "winmgmts:root\WebAdministration")  
  
' Get the AnonymousAuthenticationSection.  
Set oAnonAuth = oWebAdmin.Get( _  
    "AnonymousAuthenticationSection")  
  
' Get the allowLocation attribute.  
oAnonAuth.GetAllowLocation strAnonAuthAllowLocation  
  
' Display the allowLocation attribute.  
WScript.Echo _  
    "Anonymous Authentication Allow Location: " & _  
        strAnonAuthAllowLocation  
  

Requirements

Type Description
Client - [!INCLUDEiis70] on [!INCLUDEwinvista]
- [!INCLUDEiis75] on [!INCLUDEwin7]
- [!INCLUDEiis80] on [!INCLUDEwin8]
- [!INCLUDEiis100] on [!INCLUDEwin10]
Server - [!INCLUDEiis70] on [!INCLUDEwinsrv2008]
- [!INCLUDEiis75] on [!INCLUDEwinsrv2008r2]
- [!INCLUDEiis80] on [!INCLUDEwinsrv2012]
- [!INCLUDEiis85] on [!INCLUDEwinsrv2012r2]
- [!INCLUDEiis100] on [!INCLUDEwinsrv2016]
Product - [!INCLUDEiis70], [!INCLUDEiis75], [!INCLUDEiis80], [!INCLUDEiis85], [!INCLUDEiis100]
MOF file WebAdministration.mof

See Also

AnonymousAuthenticationSection Class
ConfigurationSection Class
ConfigurationSection.GetAllowDefinition Method