Source code of Windows XP (NT5)
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.

23 lines
368 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. If Args.Count() > 1 Then
  8. Wait = Args.item(1)
  9. Else
  10. Wait = 0
  11. End If
  12. Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")
  13. If (obj.Enable(Drive, Wait)) = 0 Then
  14. wscript.Echo "Success"
  15. Else
  16. wscript.Echo "Failed"
  17. End If