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.

15 lines
320 B

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