Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
310 B

  1. Set Args = wscript.Arguments
  2. If Args.Count() > 0 Then
  3. Drive = Args.item(0)
  4. Else
  5. Drive = ""
  6. End If
  7. Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")
  8. If (obj.Disable(Drive)) = 0 Then
  9. wscript.Echo "Success"
  10. Else
  11. wscript.Echo "Failed"
  12. End If