Método 1 de Application.RevertToParent
Revierte el valor o los valores de configuración de una aplicación al valor predeterminado.
Sintaxis
Application.RevertToParent(PropertyName)
Application.RevertToParent(PropertyName);
Parámetros
Name | Descripción |
---|---|
PropertyName |
Valor opcional string que contiene el nombre de la propiedad de aplicación que se va a revertir al valor predeterminado especificado por la clase ApplicationElementDefaults que se expone como la propiedadApplicationDefaults en la clase principal Site. La propiedad que se va a revertir se puede anidar (por ejemplo, "VirtualDirectoryDefaults.PhysicalPath"). |
Valor devuelto
Este método no devuelve ningún valor.
Comentarios
Cuando se llame a RevertToParent
sin parámetros, se quitarán todas las opciones de configuración de la aplicación que se encuentran en el archivo ApplicationHost.config. Si no es el comportamiento que quiere, revierta las propiedades específicas mediante llamadas con parámetros independientes al método.
Ejemplo
En el ejemplo siguiente se revierte el nombre del grupo de aplicaciones MyApp
del sitio web predeterminado de "MyAppPool" a "DefaultAppPool".
' 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
Requisitos
Tipo | Descripción |
---|---|
Remoto | - IIS 7.0 en Windows Vista - IIS 7.5 en Windows 7 - IIS 8.0 en Windows 8 - IIS 10.0 en Windows 10 |
Server | - IIS 7.0 en Windows Server 2008 - IIS 7.5 en Windows Server 2008 R2 - IIS 8.0 en Windows Server 2012 - IIS 8.5 en Windows Server 2012 R2 - IIS 10.0 en Windows Server 2016 |
Producto | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
Archivo MOF | WebAdministration.mof |
Consulte también
Clase Application
ApplicationElementDefaults Class
Clase de sitio