Here's a script that'll turn it off on multiple XP computers. This script expects an input text file listing the computer names on which System Restore should be turned off. Please be sure to test this with 1-2 computers before letting it loose on your entire network.
_________________________________________________________________________________________________
'get input file anme
Dim sInputFiles
InputFile = InputBox("Enter path and filename to input file" & _ "(list of computer names", "Input file")
'clicked cancel?
If sInputFile = "" Or sInputFile = -1 Then
WScript.Quit
End If
'open input file
Dim oFSO, oTS
Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
On Error Resume Next
Set oTS = oFSO.OpenTextFile(sInputFile)
If Err <> 0 Then
MsgBox "Couldn't open input file."
WScript.Quit
End If
On Error Goto 0
'go through names in file
Dim sComputer, oPing, oStatus
Do Until oTS.AtEndOfStream
'get name
sComputer = oTS.ReadLine
'name provided?
If sComputer <> "" Then
'connect to the WMI provider
On Error Resume Next
Set oWMIService = GetObject("winmgmts:\" & _ sComputer & "ootdefault")
Set oItem = oWMIService.Get("SystemRestore")
errResults = oItem.Disable("")
On Error Goto 0
End If
Loop
'finished - notify
oTS.Close
MsgBox "Script is finished executing."