Méthode2 VirtualDirectory.RevertToParent
Rétablit la valeur ou les valeurs de configuration d’un répertoire virtuel par défaut.
Syntaxe
VirtualDirectory.RevertToParent(PropertyName)
VirtualDirectory.RevertToParent(PropertyName);
Paramètres
Nom | Description |
---|---|
PropertyName |
Valeur facultative string qui contient le nom d’une propriété de répertoire virtuel pour revenir à la valeur par défaut spécifiée par la classe VirtualDirectoryElementDefaults exposée en tant que VirtualDirectoryDefaults propriété sur la classe Application. |
Valeur de retour
Cette méthode ne retourne pas de valeur.
Notes
Lorsque vous appelez la RevertToParent
méthode sans paramètres, toutes les valeurs de configuration personnalisées pour le répertoire virtuel sont supprimées. Si ce n’est pas le comportement souhaité, rétablissez des propriétés spécifiques à l’aide d’appels paramétrés à la méthode.
Exemple
L’exemple suivant rétablit la propriété AllowSubDirConfig
du répertoire virtuel MyVDir
de sa valeur actuelle false
à sa valeur par défaut true
.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject( _
"winmgmts:root\WebAdministration")
' Assign the virtual directory instances to a variable.
Set oVDirs = oWebAdmin.InstancesOf("VirtualDirectory")
' Retrieve the MyVDir virtual directory.
For Each oVDir In oVDirs
If oVDir.Path = "/MyVDir" Then
' Display the virtual directory path.
WScript.Echo "Virtual Path: " & oVDir.Path
' Display the current value.
WScript.Echo "AllowSubDirConfig before revert: " & _
oVDir.AllowSubDirConfig
' Revert the AllowSubDirConfig property.
oVdir.RevertToParent("AllowSubDirConfig")
' Refresh the oVdir object variable.
oVdir.Refresh_
' Display the changed value.
WScript.Echo "AllowSubDirConfig after revert: " & _
oVDir.AllowSubDirConfig
' Exit the loop.
Exit For
End If
Next
' Output:
' Virtual Path: /MyVDir
' AllowSubDirConfig before revert: False
' AllowSubDirConfig after revert: True
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 VirtualDirectory
Classe VirtualDirectoryElementDefaults