Méthode 1 Application.RevertToParent
Rétablit la valeur ou les valeurs de configuration d’une application par défaut.
Syntaxe
Application.RevertToParent(PropertyName)
Application.RevertToParent(PropertyName);
Paramètres
Nom | Description |
---|---|
PropertyName |
Valeur facultative string contenant le nom de la propriété d’application à rétablir à la valeur par défaut spécifiée par la classe ApplicationElementDefaults présentée en tant que propriété ApplicationDefaults sur la classe site parente. La propriété à rétablir peut être imbriquée (par exemple, « VirtualDirectoryDefaults.PhysicalPath »). |
Valeur de retour
Cette méthode ne retourne pas de valeur.
Notes
Lorsque vous appelez RevertToParent
sans paramètres, tous les paramètres de l’application qui se trouvent dans le fichier ApplicationHost.config seront supprimés. Si ce n’est pas le comportement souhaité, rétablissez des propriétés spécifiques à l’aide d’appels paramétrables distincts à la méthode.
Exemple
L’exemple suivant rétablit le nom du pool d’applications du site internet par défaut MyApp
de « MyAppPool » à « 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
Spécifications
Type | Description |
---|---|
Client | - IIS 7.0 sur Windows Vista - IIS 7.5 sous Windows 7 - IIS 8.0 sous Windows 8 - IIS 10.0 sous Windows 10 |
Serveur | - IIS 7.0 sur Windows Server 2008 - IIS 7.5 sur Windows Server 2008 R2 - IIS 8.0 sur Windows Server 2012 - IIS 8.5 sur Windows Server 2012 R2 - IIS 10.0 sous Windows Server 2016 |
Produit | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
Fichier MOF | WebAdministration.mof |
Voir aussi
Classe d’application
Classe ApplicationElementDefaults
Classe de site