次の方法で共有


VirtualDirectory.RevertToParent Method2

仮想ディレクトリの構成値または値を既定値に戻します。

構文

VirtualDirectory.RevertToParent(PropertyName)  
VirtualDirectory.RevertToParent(PropertyName);  

Parameters

件名 説明
PropertyName Application クラスの VirtualDirectoryDefaults プロパティとして公開される、VirtualDirectoryElementDefaults クラスで指定されたデフォルトに戻す仮想ディレクトリ プロパティの名前を含むオプションの string 値。

戻り値

このメソッドは値を返しません。

解説

パラメータを指定せずに RevertToParent メソッドを呼び出すと、仮想ディレクトリのすべてのカスタム構成値が削除されます。 これが目的の動作でない場合は、メソッドに対するパラメーター化された呼び出しを使用して、特定のプロパティを元に戻します。

次の例では、MyVDir 仮想ディレクトリの AllowSubDirConfig プロパティを現在の値 false からデフォルト値の 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  
  

要件

説明
クライアント - Windows Vista 上の IIS 7.0
- Windows 7 上の IIS 7.5
- Windows 8 上の IIS 8.0
- Windows 10 上の IIS 10.0
[サーバー] - Windows Server 2008 上の IIS 7.0
- Windows Server 2008 R2 上の IIS 7.5
- Windows Server 2012 上の IIS 8.0
- Windows Server 2012 R2 上の IIS 8.5
- Windows Server 2016 上の IIS 10.0
Product - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0
MOF ファイル WebAdministration.mof

参照

Application クラス
VirtualDirectory クラス
VirtualDirectoryElementDefaults クラス