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

Set Args = wscript.Arguments
If Args.Count() > 0 Then
Drive = Args.item(0)
Else
Drive = ""
End If
If Args.Count() > 1 Then
Wait = Args.item(1)
Else
Wait = 0
End If
Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")
If (obj.Enable(Drive, Wait)) = 0 Then
wscript.Echo "Success"
Else
wscript.Echo "Failed"
End If