Application.RevertToParent-Methode1
Stellt den Konfigurationswert oder die Werte einer Anwendung auf den Standardwert zurück.
Syntax
Application.RevertToParent(PropertyName)
Application.RevertToParent(PropertyName);
Parameter
Name | Beschreibung |
---|---|
PropertyName |
Ein optionaler string -Wert, der den Namen der Anwendungseigenschaft enthält, die auf den von der ApplicationElementDefaults-Klasse angegebenen Standard zurückgesetzt werden soll, der als ApplicationDefaults -Eigenschaft der übergeordneten Site-Klasse verfügbar gemacht wird. Die zurückgesetzte Eigenschaft kann geschachtelt werden (z. B. „VirtualDirectoryDefaults.PhysicalPath“). |
Rückgabewert
Diese Methode gibt keinen Wert zurück.
Hinweise
Wenn Sie RevertToParent
ohne Parameter aufrufen, werden alle Einstellungen für die Anwendung, die sich in der Datei ApplicationHost.config befinden, entfernt. Wenn dies nicht das gewünschte Verhalten ist, setzen Sie bestimmte Eigenschaften mithilfe parametrisierter Aufrufe der Methode zurück.
Beispiel
Im folgenden Beispiel wird der Name des Anwendungspools MyApp
der Standardwebsite von „MyAppPool“ auf „DefaultAppPool“ zurückgesetzt.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject( _
"winmgmts:root\WebAdministration")
' Retrieve the MyApp application from the default Web site.
Set oApp = oWebAdmin.Get( _
"Application.SiteName='Default Web Site',Path='/MyApp'")
' Display the site name, path, and application pool.
WScript.Echo "Web site name: " & oApp.SiteName
WScript.Echo "Application path: " & oApp.Path
Wscript.Echo "ApplicationPool: " & oApp.ApplicationPool
' Revert the MyApp application pool to the application pool
' specified by the parent site's ApplicationDefaults property.
oApp.RevertToParent("ApplicationPool")
' Update the contents of the application object variable.
oApp.Refresh_
' Display the change.
Wscript.Echo "ApplicationPool after revert: " & _
oApp.ApplicationPool
' Example output:
' Web site name: Default Web Site
' Application path: /MyApp
' ApplicationPool: MyAppPool
' ApplicationPool after revert: DefaultAppPool
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
Application-Klasse
ApplicationElementDefaults-Klasse
Websiteklasse