ConfiguredObject.GetSection-Methode
Ruft den Inhalt eines Konfigurationsabschnitts für ein konfiguriertes Objekt ab.
Syntax
ConfiguredObject.GetSection(SectionName, Section);
ConfiguredObject.GetSection SectionName, Section
Parameter
Name | Beschreibung |
---|---|
SectionName |
Eine string Variable, die den Namen des abzurufenden Konfigurationsabschnitts enthält (z. B. "BasicAuthenticationSection"). |
Section |
Eine ConfigurationSection-Variable, in die der Inhalt des Konfigurationsabschnitts platziert wird. |
Rückgabewert
Diese Methode gibt keinen Wert zurück.
Hinweise
Sie können die GetSection
Methode verwenden, um den Inhalt eines gewünschten Konfigurationsabschnitts abzurufen und die konfigurierbaren Eigenschaften festzulegen.
Hinweis
Die GetSection
Methodensignatur enthält einen [IN]
Parameter für den Abschnittsnamen und einen [OUT]
Parameter für das von der Methode zurückgegebene Abschnittsobjekt.
Beispiel
Im folgenden Beispiel wird der Abschnitt „HTTP-Fehler“ für die Standardwebsite abgerufen und sowohl die Array- als auch die Nicht-Array-Eigenschaften angezeigt.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Get the default Web site.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
' Get the HTTP errors section by using the GetSection method.
oSite.GetSection "HttpErrorsSection", oSection
' Display a heading.
WScript.Echo "=============================="
WScript.Echo "Http Errors Section Properties"
WScript.Echo "=============================="
' Display the HttpErrorsSection non-array properties.
For Each vProp In oSection.Properties_
If (vProp.Name <> "HttpErrors") And _
(vProp.Name <> "SectionInformation") Then
WScript.Echo vProp.Name & ": " & vProp.Value
End If
Next
WScript.Echo
' Display the HttpErrorsSection SectionInformation properties.
WScript.Echo "HttpErrorsSection.SectionInformation"
WScript.Echo "------------------------------------"
For Each vProp In oSection.SectionInformation.Properties_
WScript.Echo vProp.Name & ": " & vProp.Value
Next
WScript.Echo
' Display the contents of the HttpErrors array property.
WScript.Echo "HttpErrorsSection.HttpErrors"
WScript.Echo "----------------------------"
For Each oHttpErrorElement In oSection.HttpErrors
For Each vProp In oHttpErrorElement.Properties_
WScript.Echo vProp.Name & ": " & vProp.Value
Next
WScript.Echo
Next
Anforderungen
type | Beschreibung |
---|---|
Client | - IIS 7.0 unter Windows Vista IIS 7.5 unter Windows 7 IIS 8.0 unter Windows 8 IIS 10.0 unter Windows 10 |
Server | IIS 7.0 unter Windows Server 2008 - IIS 7.5 unter Windows Server 2008 R2 IIS 8.0 auf Windows Server 2012. - IIS 8.5 unter Windows Server 2012 R2 IIS 10.0 auf Windows Server 2016. |
Produkt | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
MOF-Datei | WebAdministration.mof |
Weitere Informationen
ConfigurationSection-Klasse
ConfiguredObject-Klasse
HttpErrorElement-Klasse
HttpErrorsSection-Klasse