SystemRestore クラスの Disable メソッド

特定のドライブでの監視を無効にします。

構文

uint32 Disable(
  [in] String Drive
);

パラメーター

ドライブ [入力]

無効にするドライブ。 ドライブ文字列は "C:\" の形式にする必要があります。 このパラメーターがシステム ドライブまたは空の文字列 ("") の場合、ドライブは監視されません。

戻り値

メソッドが成功した場合、戻り値はS_OK。 それ以外の場合、メソッドは WinError.h で定義されている COM エラー コードのいずれかを返します。

'Disable Method of the SystemRestore Class
'Disables monitoring on a particular drive.
Set Args = wscript.Arguments
If Args.Count() > 0 Then
    Drive = Args.item(0)
Else
    Drive = ""
End If

Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")

If (obj.Disable(Drive)) = 0 Then
    wscript.Echo "Success"
Else 
    wscript.Echo "Failed"
End If

要件

要件
サポートされている最小のクライアント
Windows XP [デスクトップ アプリのみ]
サポートされている最小のサーバー
サポートなし
名前空間
Root\Default
MOF
Sr.mof

関連項目

SystemRestore